.sgp-sf {
    max-width: 960px;
    margin: 0 auto;
    padding: 24px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.06);
    color: #0f172a;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.sgp-sf__header {
    margin-bottom: 16px;
}

.sgp-sf__title {
    margin: 0 0 4px 0;
    font-size: 24px;
    line-height: 1.3;
    font-weight: 700;
    color: #0f172a;
}

.sgp-sf__intro {
    margin: 0;
    color: #475569;
    font-size: 15px;
}

.sgp-sf__subtitle {
    margin: 8px 0 6px;
    color: #1e293b;
}

.sgp-sf__examples {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
    margin: 6px 0;
}

.sgp-sf__examples-title {
    font-weight: 600;
    color: #1e293b;
    line-height: 1;
}

.sgp-sf__chip {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid #cbd5e1;
    background: #fff;
    color: #0f172a;
    font-size: 13px;
    line-height: 1;
    cursor: pointer;
    font-family: inherit;
}

.sgp-sf__chip:hover {
    border-color: #2563eb;
}

.sgp-sf__chip:focus-visible {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

.sgp-sf__benefit {
    margin: 4px 0 0;
    color: #475569;
    font-size: 15px;
}

.sgp-sf__form {
    margin: 16px 0 20px;
}

.sgp-sf__label--sr {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.sgp-sf__form-row {
    display: flex;
    align-items: stretch;
    gap: 12px;
}

.sgp-sf__input {
    flex: 1;
    padding: 0 12px;
    height: 44px;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    font-size: 15px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
@media (max-width: 780px){
  .sgp-sf__input{
    min-height:50px !important;
    height:50px !important;
  }
}
.sgp-sf__input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

.sgp-sf-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 0 16px;
    height: 44px;
    border-radius: 10px;
    border: 1px solid transparent;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.2;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
}

.sgp-sf__detail {
    margin: 12px 0 20px;
}

.sgp-sf__results-title {
    margin: 8px 0 12px;
    font-size: 18px;
    color: #0f172a;
}

.sgp-sf__cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.sgp-sf-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 14px;
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.06);
}

.sgp-sf-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 6px;
}

.sgp-sf-card__title {
    margin: 0;
    font-size: 16px;
    color: #0f172a;
}

.sgp-sf-card__subtitle {
    margin: 2px 0 0;
    font-size: 15px;
    color: #1e293b;
}

.sgp-sf-card__badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 20px;
    background: #eff6ff;
    color: #1d4ed8;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid #bfdbfe;
    white-space: nowrap;
}

.sgp-sf-card__excerpt {
    margin: 0 0 10px;
    color: #475569;
    line-height: 1.5;
}

.sgp-sf-card__content {
    color: #0f172a;
    line-height: 1.6;
}

.sgp-sf-card__footer {
    margin: 8px 0 0;
}

.sgp-sf-card__footer .sgp-sf-btn {
    width: auto;
}

.sgp-sf__empty-card {
    padding: 14px;
}

.sgp-sf__hint {
    margin: 4px 0 0;
    color: #6b7280;
    font-size: 13px;
}

@media (max-width: 768px) {
    .sgp-sf {
        padding: 16px;
    }

    .sgp-sf__form-row {
        flex-direction: column;
        align-items: stretch;
    }

    .sgp-sf-btn {
        width: 100%;
    }
}

@media (min-width: 900px) {
    .sgp-sf__cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.sgp-sf a:focus-visible,
.sgp-sf button:focus-visible,
.sgp-sf input:focus-visible {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

.sgp-sf__loader {
    padding: 24px;
    text-align: center;
}

.sgp-sf__results[aria-busy="true"] {
    min-height: 80px;
}
/* 1 */
.sgp-sf__examples{
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
  }
  
  /* 2 */
  .sgp-sf__examples-title{
    margin: 0;
    line-height: 1;
  }