.yc-faq-page {
    background: #f8f9fa;
    color: #161616;
}

.yc-faq-shell {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.yc-faq-banner {
    width: 100%;
    background: #f5f5f5;
    overflow: hidden;
    position: relative;
}

.yc-faq-banner-media {
    width: 100%;
    height: 520px;
    background: #e9eef5;
    position: relative;
    overflow: hidden;
}

.yc-faq-banner-media.is-empty {
    background: linear-gradient(135deg, #edf3fb 0%, #dce7f7 100%);
}

.yc-faq-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.yc-faq-search-section {
    padding: 38px 0 10px;
}

.yc-faq-search-card {
    padding: 0;
}

.yc-faq-search-en {
    text-align: center;
    font-size: 16px;
    color: #6b8fb5;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
    margin: 0;
}

.yc-faq-search-title {
    text-align: center;
    font-size: 36px;
    line-height: 1.2;
    font-weight: 700;
    color: #1a1a1a;
    margin: 15px 0 0;
}

.yc-faq-search-desc {
    max-width: 860px;
    margin: 14px auto 0;
    color: #686868;
    font-size: 15px;
    line-height: 26px;
    text-align: center;
}

.yc-faq-search-desc p {
    margin: 0;
}

.yc-faq-search-bar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 156px;
    gap: 14px;
    max-width: 760px;
    margin: 26px auto 0;
    align-items: center;
}

.yc-faq-search-label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.yc-faq-search-input {
    width: 100%;
    height: 56px;
    border: 1px solid #d9e4f2;
    background: #f8fbff;
    padding: 0 18px;
    font-size: 15px;
    color: #161616;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.yc-faq-search-input:focus {
    border-color: #3b7aec;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(59, 122, 236, 0.12);
}

.yc-faq-search-button {
    height: 56px;
    border: 0;
    background: #003371;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.yc-faq-search-button:hover {
    background: #0f4b97;
    transform: translateY(-1px);
}

.yc-faq-result {
    margin-top: 16px;
    color: #6b7280;
    font-size: 14px;
    line-height: 22px;
    text-align: center;
}

.yc-faq-section {
    width: 100%;
    padding: 22px 0 72px;
    background-color: #f8f9fa;
}

.yc-faq-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.yc-faq-card.is-hidden {
    display: none;
}

.yc-faq-card {
    position: relative;
    display: flex;
    align-items: flex-start;
    width: 100%;
    min-height: 180px;
    padding: 24px 36px 24px 28px;
    box-sizing: border-box;
    background: url('/static/common/image/qa_card_bg.png') no-repeat center / cover;
    border: 1px solid transparent;
    text-decoration: none !important;
    color: inherit;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.yc-faq-card:visited,
.yc-faq-card:focus,
.yc-faq-card:active {
    text-decoration: none !important;
}

.yc-faq-card:hover {
    background: url('/static/common/image/qa_card_bg_hover.png') no-repeat center / cover;
    border-color: #3b7aec;
    box-shadow: 0 4px 14px rgba(59, 122, 236, 0.18);
}

.yc-faq-card:hover .yc-qa-item-bg {
    background-color: rgba(59, 122, 236, 0.5);
}

.yc-faq-card:hover .yc-qa-qtitle {
    color: #3b7aec;
}

.yc-faq-card .yc-qa-item-bg {
    position: absolute;
    top: 17px;
    left: 18px;
    width: 28px;
    height: 28px;
    background-color: rgba(59, 122, 236, 0.1);
    border-radius: 50%;
}

.yc-faq-card .yc-qa-icon {
    position: relative;
    z-index: 1;
    flex: 0 0 auto;
    display: block;
    width: 42px;
    height: 42px;
    background: url('/static/common/image/qa_icon.png') no-repeat center / cover;
}

.yc-faq-card .yc-qa-content {
    flex: 1;
    margin-left: 17px;
    padding-top: 5px;
    min-width: 0;
    display: block;
}

.yc-faq-card .yc-qa-qtitle {
    color: #161616;
    font-size: 18px;
    font-weight: 600;
    line-height: 27px;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.yc-faq-card .yc-qa-desc {
    display: -webkit-box;
    margin-top: 2px;
    color: #686868;
    font-size: 14px;
    line-height: 24px;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.yc-faq-card .yc-qa-link {
    display: block;
    color: #003371;
    font-size: 16px;
    font-weight: 500;
    line-height: 16px;
    margin-top: 16px;
    transition: color 0.2s ease;
}

.yc-faq-card:hover .yc-qa-link {
    color: #1f5dbb;
}

.yc-faq-empty {
    margin-top: 18px;
    padding: 48px 28px;
    background: #ffffff;
    border: 1px dashed #d3dbe7;
    text-align: center;
}

.yc-faq-empty-title {
    color: #161616;
    font-size: 22px;
    font-weight: 700;
}

.yc-faq-empty-desc {
    margin-top: 10px;
    color: #6b7280;
    font-size: 15px;
    line-height: 26px;
}

.yc-cta-section {
    width: 100%;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 44px 0;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.yc-cta-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.yc-cta-text { flex: 1; min-width: 0; }

.yc-cta-subtitle {
    font-size: 13px;
    font-weight: 500;
    color: #ffffff;
    line-height: 18px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.yc-cta-title {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    line-height: 32px;
    margin: 0 0 6px;
}

.yc-cta-desc {
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    line-height: 20px;
    opacity: 0.92;
}

.yc-cta-button {
    display: inline-block;
    flex-shrink: 0;
    padding: 12px 38px;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    background: #DDA054;
    text-decoration: none !important;
    transition: all 0.3s ease;
    cursor: pointer;
}

.yc-cta-button:hover {
    background: #c8924a;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(221, 160, 84, 0.35);
}

@media (max-width: 1199px) {
    .yc-faq-banner-media {
        height: 480px;
    }

    .yc-faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .yc-faq-banner-media {
        height: 380px;
    }

    .yc-faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .yc-faq-shell {
        padding: 0 16px;
    }

    .yc-faq-banner-media {
        height: 220px;
    }

    .yc-faq-search-section {
        padding: 24px 0 8px;
    }

    .yc-faq-search-en {
        font-size: 14px;
        line-height: 20px;
    }

    .yc-faq-search-title {
        font-size: 27px;
        line-height: 34px;
        margin-top: 8px;
    }

    .yc-faq-search-desc {
        font-size: 14px;
        line-height: 24px;
        margin-top: 10px;
    }

    .yc-faq-search-bar {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 18px;
    }

    .yc-faq-search-input,
    .yc-faq-search-button {
        height: 48px;
        font-size: 14px;
    }

    .yc-faq-section {
        padding: 20px 0 52px;
    }

    .yc-faq-card {
        min-height: 160px;
        padding: 20px 18px 20px 16px;
    }

    .yc-faq-card .yc-qa-item-bg {
        top: 13px;
        left: 12px;
    }

    .yc-faq-card .yc-qa-icon {
        width: 38px;
        height: 38px;
    }

    .yc-faq-card .yc-qa-content {
        margin-left: 14px;
        padding-top: 2px;
    }

    .yc-faq-card .yc-qa-qtitle {
        font-size: 16px;
        line-height: 24px;
    }

    .yc-faq-card .yc-qa-desc {
        font-size: 13px;
        line-height: 22px;
    }

    .yc-faq-card .yc-qa-link {
        margin-top: 12px;
        font-size: 14px;
        line-height: 14px;
    }

    .yc-faq-empty {
        padding: 30px 16px;
    }

    .yc-faq-empty-title {
        font-size: 18px;
    }

    .yc-faq-empty-desc {
        font-size: 14px;
        line-height: 24px;
    }

    .yc-cta-container {
        padding: 0 16px;
    }

    .yc-cta-section {
        padding: 30px 0;
        margin-top: 40px;
    }

    .yc-cta-container {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
    }

    .yc-cta-text {
        flex: 1;
        min-width: 0;
    }

    .yc-cta-title {
        font-size: 16px;
        line-height: 1.3;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .yc-cta-subtitle {
        font-size: 9px;
        margin-bottom: 4px;
        line-height: 1.2;
        letter-spacing: 0.6px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .yc-cta-desc {
        font-size: 11px;
        line-height: 1.4;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .yc-cta-button {
        flex: 0 0 auto;
        min-width: 104px;
        padding: 9px 20px;
        font-size: 13px;
        border-radius: 999px;
        white-space: nowrap;
        align-self: center;
    }

    .yc-cta-title {
        font-size: 15px;
    }

    .yc-cta-subtitle {
        font-size: 8px;
    }

    .yc-cta-desc {
        font-size: 10px;
    }

    .yc-cta-button {
        min-width: 96px;
        padding: 8px 18px;
        font-size: 12px;
        border-radius: 999px;
    }
}
