
.fasrc-public-home {
    min-height: calc(100vh - 180px);
}

.fasrc-survey-section {
    padding-bottom: 30px;
    scroll-margin-top: 110px;
}

.fasrc-section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin: 0 0 24px;
    padding: 0 6px;
    direction: rtl;
}

.fasrc-section-heading h2 {
    margin: 4px 0 0;
    color: var(--fasrc-navy);
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 800;
}

.fasrc-section-kicker {
    color: var(--fasrc-green);
    font-size: 13px;
    font-weight: 800;
}

.fasrc-survey-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 20px;
    direction: rtl;
}

.fasrc-survey-card {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 16px;
    padding: 24px;
    border: 1px solid var(--fasrc-border);
    border-radius: var(--fasrc-radius);
    background: #fff;
    box-shadow: 0 8px 28px rgba(18, 59, 99, .08);
    transition: transform .2s ease, box-shadow .2s ease;
}

.fasrc-survey-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--fasrc-shadow);
}

.fasrc-survey-icon {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 15px;
    color: #fff;
    background: linear-gradient(135deg, var(--fasrc-green), var(--fasrc-navy));
    font-size: 24px;
    font-weight: 800;
}

.fasrc-survey-card h3 {
    margin: 0 0 8px;
    color: var(--fasrc-navy);
    font-size: 19px;
    font-weight: 800;
    line-height: 1.6;
}

.fasrc-survey-card p {
    margin: 0;
    color: var(--fasrc-muted);
    line-height: 1.8;
}

.fasrc-survey-link {
    grid-column: 1 / -1;
    display: inline-flex;
    justify-content: center;
    padding: 11px 18px;
    border-radius: 11px;
    color: #fff;
    background: var(--fasrc-green);
    text-decoration: none;
    font-weight: 800;
}

.fasrc-survey-link:hover {
    color: #fff;
    background: var(--fasrc-green-dark);
}

.fasrc-empty-state {
    padding: 54px 24px;
    text-align: center;
    border: 1px dashed #bdcbd6;
    border-radius: var(--fasrc-radius);
    background: #fff;
}

.fasrc-empty-icon {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    margin: 0 auto 16px;
    border-radius: 50%;
    color: #fff;
    background: var(--fasrc-navy);
    font-size: 26px;
    font-weight: 800;
}

.fasrc-empty-state h3 {
    color: var(--fasrc-navy);
    font-weight: 800;
}

.fasrc-support-box {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    margin-top: 24px;
    padding: 18px 22px;
    border-right: 4px solid var(--fasrc-gold);
    border-radius: 12px;
    background: #fff;
    color: var(--fasrc-muted);
    direction: rtl;
}

.fasrc-support-box strong {
    color: var(--fasrc-navy);
}

#surveylist-language-changer .form-select,
#surveylist-language-changer select {
    min-width: 220px;
}

@media (max-width: 767px) {
    .fasrc-section-heading {
        align-items: stretch;
        flex-direction: column;
    }
    #surveylist-language-changer .form-select,
    #surveylist-language-changer select {
        width: 100%;
        min-width: 0;
    }
}
