/*
 * Yubeen Site Assets — FAQ Pilot
 * Version: 0.1.0
 * Date: 2026-08-07
 * Source: Simple Custom CSS and JS entry “Yubeen FAQ Page”
 * Purpose: Stage 3A low-risk migration pilot. Front-end output is intentionally preserved.
 */

/* =========================================================================================================
   YUBEEN FAQ PAGE
   ---------------------------------------------------------------------------------------------------------
   Purpose:
   - FAQ page for Support section.
   - Includes search, category filters, accordion questions, and support action panel.
   - Visual style follows Yubeen Support pages: light background, white cards, red accent, subtle tech lines.
   ---------------------------------------------------------------------------------------------------------
   Elementor:
   - Outer Elementor Container class: yubeen-faq-elementor
   - HTML section class: yubeen-faq-section
   ========================================================================================================= */


/* ---------------------------------------------------------------------------------------------------------
   01. ELEMENTOR WRAPPER RESET
   --------------------------------------------------------------------------------------------------------- */

.yubeen-faq-elementor {
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
}


/* ---------------------------------------------------------------------------------------------------------
   02. SECTION BASE
   --------------------------------------------------------------------------------------------------------- */

.yubeen-faq-section {
    position: relative !important;

    width: 100% !important;
    max-width: none !important;

    margin: 0 !important;
    padding: 40px 0 60px 0 !important;

    overflow: hidden !important;

    background:
        radial-gradient(circle at 10% 18%, rgba(215, 25, 32, 0.070) 0%, transparent 32%),
        radial-gradient(circle at 92% 8%, rgba(215, 25, 32, 0.065) 0%, transparent 28%),
        radial-gradient(circle at 95% 76%, rgba(17, 19, 24, 0.030) 0%, transparent 30%),
        linear-gradient(180deg, #f7f8fa 0%, #ffffff 48%, #f5f6f8 100%) !important;

    box-sizing: border-box !important;
}


/* Subtle technical grid */
.yubeen-faq-section::before {
    content: "" !important;

    position: absolute !important;
    inset: 0 !important;

    background-image:
        linear-gradient(rgba(17, 19, 24, 0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(17, 19, 24, 0.018) 1px, transparent 1px) !important;

    background-size: 82px 82px !important;

    opacity: 0.16 !important;

    pointer-events: none !important;
}


/* Soft red arc atmosphere */
.yubeen-faq-section::after {
    content: "" !important;

    position: absolute !important;
    left: -230px !important;
    bottom: -260px !important;

    width: 680px !important;
    height: 680px !important;

    border-radius: 50% !important;

    border: 1px solid rgba(215, 25, 32, 0.10) !important;

    box-shadow:
        0 0 0 90px rgba(215, 25, 32, 0.020),
        0 0 0 178px rgba(215, 25, 32, 0.014) !important;

    pointer-events: none !important;
}


.yubeen-faq-inner {
    position: relative !important;
    z-index: 2 !important;

    width: min(92vw, 1320px) !important;
    max-width: 1320px !important;

    margin: 0 auto !important;

    display: grid !important;
    grid-template-columns: minmax(660px, 1fr) minmax(360px, 400px) !important;
    grid-template-rows: auto auto !important;

    column-gap: 54px !important;
    row-gap: 34px !important;

    align-items: start !important;

    box-sizing: border-box !important;
}


/* ---------------------------------------------------------------------------------------------------------
   03. HERO
   --------------------------------------------------------------------------------------------------------- */
/* Let the hero, FAQ groups, and empty state participate directly in the parent grid.
   This allows the hero area to occupy the first row,
   while the FAQ list and right help panel start together in the second row. */
.yubeen-faq-main {
    display: contents !important;
}
.yubeen-faq-hero {
    grid-column: 1 / -1 !important;
    grid-row: 1 !important;

    width: min(100%, 860px) !important;

    margin: 0 0 0 0 !important;
}

.yubeen-faq-breadcrumb {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;

    margin: 0 0 36px 0 !important;

    color: rgba(17, 19, 24, 0.56) !important;

    font-size: 12px !important;
    line-height: 1 !important;
    font-weight: 820 !important;

    letter-spacing: 1.7px !important;
    text-transform: uppercase !important;
}

.yubeen-faq-breadcrumb a {
    color: inherit !important;
    text-decoration: none !important;
}

.yubeen-faq-breadcrumb strong {
    color: #d71920 !important;
    font-weight: 860 !important;
}

.yubeen-faq-kicker {
    display: inline-block !important;

    margin: 0 0 22px 0 !important;

    color: #d71920 !important;

    font-size: 13px !important;
    line-height: 1 !important;
    font-weight: 860 !important;

    letter-spacing: 2.2px !important;
    text-transform: uppercase !important;
}

.yubeen-faq-hero h1 {
    max-width: 760px !important;

    margin: 0 0 20px 0 !important;

    color: #080a0f !important;

    font-size: clamp(48px, 4.4vw, 76px) !important;
    line-height: 1.02 !important;
    font-weight: 880 !important;

    letter-spacing: -2.4px !important;
}

.yubeen-faq-hero > p {
    max-width: 640px !important;

    margin: 0 0 28px 0 !important;

    color: rgba(17, 19, 24, 0.62) !important;

    font-size: 18px !important;
    line-height: 1.68 !important;
    font-weight: 520 !important;
}


/* ---------------------------------------------------------------------------------------------------------
   04. SEARCH
   --------------------------------------------------------------------------------------------------------- */

.yubeen-faq-search {
    position: relative !important;

    width: min(100%, 860px) !important;

    min-height: 68px !important;

    display: flex !important;
    align-items: center !important;

    margin: 0 0 24px 0 !important;

    border-radius: 20px !important;

    background: rgba(255, 255, 255, 0.92) !important;

    border: 1px solid rgba(17, 19, 24, 0.08) !important;

    box-shadow:
        0 18px 46px rgba(17, 19, 24, 0.07),
        inset 0 1px 0 rgba(255, 255, 255, 0.88) !important;

    overflow: hidden !important;

    box-sizing: border-box !important;
}

.yubeen-faq-search-icon {
    flex: 0 0 auto !important;

    width: 64px !important;
    height: 68px !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    color: rgba(17, 19, 24, 0.50) !important;
}

.yubeen-faq-search-icon svg {
    width: 25px !important;
    height: 25px !important;

    fill: none !important;
    stroke: currentColor !important;
    stroke-width: 1.8 !important;
    stroke-linecap: round !important;
}

.yubeen-faq-search input {
    flex: 1 1 auto !important;

    height: 68px !important;

    border: 0 !important;
    outline: 0 !important;

    background: transparent !important;

    color: #111318 !important;

    font-size: 17px !important;
    font-weight: 520 !important;

    box-shadow: none !important;
}

.yubeen-faq-search input::placeholder {
    color: rgba(17, 19, 24, 0.42) !important;
}

/* Hide the browser-native clear control for type="search".
   The FAQ already provides one accessible custom clear button. */
.yubeen-faq-search input[type="search"]::-webkit-search-cancel-button,
.yubeen-faq-search input[type="search"]::-webkit-search-decoration,
.yubeen-faq-search input[type="search"]::-webkit-search-results-button,
.yubeen-faq-search input[type="search"]::-webkit-search-results-decoration {
    -webkit-appearance: none !important;
    appearance: none !important;
    display: none !important;
}

.yubeen-faq-search input[type="search"]::-ms-clear,
.yubeen-faq-search input[type="search"]::-ms-reveal {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
}

.yubeen-faq-search-clear {
    flex: 0 0 auto !important;

    width: 52px !important;
    height: 52px !important;

    margin-right: 8px !important;

    border: 0 !important;
    border-radius: 14px !important;

    background: rgba(17, 19, 24, 0.045) !important;

    color: rgba(17, 19, 24, 0.50) !important;

    font-size: 24px !important;
    line-height: 1 !important;

    cursor: pointer !important;

    opacity: 0 !important;
    pointer-events: none !important;

    transition:
        opacity 0.18s ease,
        color 0.18s ease,
        background 0.18s ease !important;
}

.yubeen-faq-search-clear.is-visible {
    opacity: 1 !important;
    pointer-events: auto !important;
}

.yubeen-faq-search-clear:hover {
    color: #d71920 !important;
    background: rgba(215, 25, 32, 0.075) !important;
}


/* ---------------------------------------------------------------------------------------------------------
   05. CATEGORY TABS
   --------------------------------------------------------------------------------------------------------- */

.yubeen-faq-tabs {
    display: flex !important;
    align-items: center !important;
    flex-wrap: wrap !important;

    gap: 14px !important;

    margin: 0 0 28px 0 !important;
}

.yubeen-faq-tabs button {
    min-height: 48px !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    gap: 10px !important;

    padding: 0 24px !important;

    border-radius: 999px !important;

    color: rgba(17, 19, 24, 0.74) !important;

    background: rgba(255, 255, 255, 0.78) !important;

    border: 1px solid rgba(17, 19, 24, 0.10) !important;

    font-size: 14px !important;
    line-height: 1 !important;
    font-weight: 760 !important;

    cursor: pointer !important;

    transition:
        color 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease !important;
}

.yubeen-faq-tabs button svg {
    width: 19px !important;
    height: 19px !important;

    fill: none !important;
    stroke: currentColor !important;
    stroke-width: 1.8 !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;
}

.yubeen-faq-tabs button:hover {
    transform: translateY(-2px) !important;

    color: #d71920 !important;

    border-color: rgba(215, 25, 32, 0.20) !important;
}

.yubeen-faq-tabs button.is-active {
    color: #ffffff !important;

    background: linear-gradient(135deg, #ff2b32 0%, #d71920 100%) !important;

    border-color: rgba(255, 43, 50, 0.70) !important;

    box-shadow: 0 16px 34px rgba(215, 25, 32, 0.30) !important;
}


/* ---------------------------------------------------------------------------------------------------------
   06. FAQ GROUPS
   --------------------------------------------------------------------------------------------------------- */

.yubeen-faq-groups {
    grid-column: 1 !important;
    grid-row: 2 !important;

    min-width: 0 !important;

    display: flex !important;
    flex-direction: column !important;

    gap: 16px !important;
}

.yubeen-faq-group {
    position: relative !important;

    padding: 18px !important;

    border-radius: 20px !important;

    background: rgba(255, 255, 255, 0.88) !important;

    border: 1px solid rgba(17, 19, 24, 0.08) !important;

    box-shadow:
        0 16px 44px rgba(17, 19, 24, 0.055),
        inset 0 1px 0 rgba(255, 255, 255, 0.88) !important;

    box-sizing: border-box !important;
}

.yubeen-faq-group.is-hidden {
    display: none !important;
}

.yubeen-faq-group-head {
    display: flex !important;
    align-items: center !important;

    gap: 18px !important;

    margin: 0 0 14px 0 !important;
}

.yubeen-faq-group-head > span {
    width: 44px !important;
    height: 44px !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    border-radius: 13px !important;

    color: #d71920 !important;

    background: rgba(215, 25, 32, 0.075) !important;

    font-size: 22px !important;
    line-height: 1 !important;
    font-weight: 880 !important;
}

.yubeen-faq-group-head h2 {
    flex: 1 1 auto !important;

    margin: 0 !important;

    color: #111318 !important;

    font-size: 24px !important;
    line-height: 1.22 !important;
    font-weight: 860 !important;

    letter-spacing: -0.4px !important;
}

.yubeen-faq-group-toggle {
    width: 34px !important;
    height: 34px !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    border-radius: 50% !important;

    color: rgba(17, 19, 24, 0.50) !important;

    background: rgba(17, 19, 24, 0.035) !important;

    border: 1px solid rgba(17, 19, 24, 0.08) !important;

    font-size: 19px !important;
    line-height: 1 !important;
    font-weight: 600 !important;

    cursor: pointer !important;
}

/* ---------------------------------------------------------------------------------------------------------
   FAQ GROUP COLLAPSE STATE
   ---------------------------------------------------------------------------------------------------------
   Purpose:
   - Controls the collapsed state of an entire FAQ category group.
   - The category-level button uses .yubeen-faq-group-toggle.
   - This is separate from individual FAQ item toggles.
   --------------------------------------------------------------------------------------------------------- */

/* When a whole FAQ group is collapsed, hide its question list. */
.yubeen-faq-group.is-collapsed .yubeen-faq-list {
    display: none !important;
}

/* Remove the extra space below the group heading when the list is hidden. */
.yubeen-faq-group.is-collapsed .yubeen-faq-group-head {
    margin-bottom: 0 !important;
}

/* Keep collapsed group cards visually balanced. */
.yubeen-faq-group.is-collapsed {
    padding-bottom: 18px !important;
}

/* Make the group-level toggle feel clickable and consistent with the FAQ item toggles. */
.yubeen-faq-group-toggle:hover {
    color: #d71920 !important;
    background: rgba(215, 25, 32, 0.075) !important;
    border-color: rgba(215, 25, 32, 0.18) !important;
}

/* Accessibility focus state for the group-level toggle button. */
.yubeen-faq-group-toggle:focus-visible {
    outline: 3px solid rgba(215, 25, 32, 0.32) !important;
    outline-offset: 4px !important;
}
/* ---------------------------------------------------------------------------------------------------------
   07. FAQ ITEMS
   --------------------------------------------------------------------------------------------------------- */

.yubeen-faq-list {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
}

.yubeen-faq-item {
    position: relative !important;

    border-radius: 15px !important;

    background: rgba(255, 255, 255, 0.68) !important;

    border: 1px solid rgba(17, 19, 24, 0.065) !important;

    overflow: hidden !important;

    transition:
        border-color 0.22s ease,
        background 0.22s ease,
        box-shadow 0.22s ease !important;
}

.yubeen-faq-item.is-hidden {
    display: none !important;
}

.yubeen-faq-item.is-open {
    border-color: rgba(215, 25, 32, 0.24) !important;

    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 248, 248, 0.82) 100%) !important;

    box-shadow:
        0 14px 34px rgba(215, 25, 32, 0.06),
        inset 3px 0 0 #ff2b32 !important;
}

.yubeen-faq-question {
    width: 100% !important;

    min-height: 58px !important;

    display: grid !important;
    grid-template-columns: 42px minmax(0, 1fr) 32px !important;

    align-items: center !important;

    gap: 18px !important;

    padding: 10px 18px !important;

    border: 0 !important;

    background: transparent !important;

    text-align: left !important;

    cursor: pointer !important;
}

.yubeen-faq-question > span {
    width: 32px !important;
    height: 32px !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    border-radius: 50% !important;

    color: #d71920 !important;

    background: rgba(215, 25, 32, 0.070) !important;

    font-size: 13px !important;
    line-height: 1 !important;
    font-weight: 880 !important;
}

.yubeen-faq-question strong {
    color: #111318 !important;

    font-size: 15.5px !important;
    line-height: 1.36 !important;
    font-weight: 820 !important;
}

.yubeen-faq-question i {
    width: 28px !important;
    height: 28px !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    border-radius: 50% !important;

    color: rgba(17, 19, 24, 0.58) !important;

    background: rgba(17, 19, 24, 0.035) !important;

    font-size: 18px !important;
    line-height: 1 !important;
    font-style: normal !important;
    font-weight: 640 !important;
}

.yubeen-faq-answer {
    padding: 0 22px 20px 78px !important;

    color: rgba(17, 19, 24, 0.66) !important;

    font-size: 14px !important;
    line-height: 1.62 !important;
    font-weight: 520 !important;
}

.yubeen-faq-answer p {
    max-width: 720px !important;

    margin: 0 0 16px 0 !important;
}

.yubeen-faq-answer a {
    display: inline-flex !important;
    align-items: center !important;

    gap: 10px !important;

    min-height: 38px !important;

    padding: 0 16px !important;

    border-radius: 12px !important;

    color: #d71920 !important;
    text-decoration: none !important;

    background: rgba(255, 255, 255, 0.76) !important;

    border: 1px solid rgba(215, 25, 32, 0.18) !important;

    font-size: 13.5px !important;
    line-height: 1 !important;
    font-weight: 800 !important;

    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease !important;
}

.yubeen-faq-answer a:hover {
    transform: translateY(-2px) !important;

    border-color: rgba(215, 25, 32, 0.36) !important;
    background: rgba(255, 246, 246, 0.95) !important;
}

.yubeen-faq-answer a span {
    transition: transform 0.2s ease !important;
}

.yubeen-faq-answer a:hover span {
    transform: translateX(4px) !important;
}


/* ---------------------------------------------------------------------------------------------------------
   08. EMPTY STATE
   --------------------------------------------------------------------------------------------------------- */

.yubeen-faq-empty {
    grid-column: 1 !important;
	
    margin-top: 18px !important;

    padding: 26px !important;

    border-radius: 20px !important;

    background: rgba(255, 255, 255, 0.86) !important;

    border: 1px solid rgba(215, 25, 32, 0.15) !important;

    color: rgba(17, 19, 24, 0.68) !important;
}

.yubeen-faq-empty strong {
    display: block !important;

    margin-bottom: 8px !important;

    color: #111318 !important;

    font-size: 18px !important;
    font-weight: 860 !important;
}

.yubeen-faq-empty span {
    display: block !important;

    margin-bottom: 16px !important;
}

.yubeen-faq-empty a {
    color: #d71920 !important;
    text-decoration: none !important;

    font-weight: 820 !important;
}


/* ---------------------------------------------------------------------------------------------------------
   09. RIGHT HELP PANEL
   --------------------------------------------------------------------------------------------------------- */

/* Right support panel
   Purpose:
   - Starts together with the FAQ list, not with the page title.
   - Stays visible while users browse the FAQ list.
*/
.yubeen-faq-side {
    grid-column: 2 !important;
    grid-row: 2 !important;

    position: sticky !important;

    top: 112px !important;

    align-self: start !important;

    margin-top: 18px !important;
}


.yubeen-faq-help-card {
    position: relative !important;

    padding: 30px !important;

    border-radius: 26px !important;

    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.82) 100%) !important;

    border: 1px solid rgba(17, 19, 24, 0.08) !important;

    box-shadow:
        0 28px 74px rgba(17, 19, 24, 0.09),
        inset 0 1px 0 rgba(255, 255, 255, 0.90) !important;

    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;

    box-sizing: border-box !important;
}

.yubeen-faq-help-head {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 82px !important;

    align-items: center !important;

    gap: 20px !important;

    margin-bottom: 26px !important;
}

.yubeen-faq-help-head h2 {
    margin: 0 0 10px 0 !important;

    color: #111318 !important;

    font-size: 28px !important;
    line-height: 1.15 !important;
    font-weight: 880 !important;

    letter-spacing: -0.8px !important;
}

.yubeen-faq-help-head p {
    margin: 0 !important;

    color: rgba(17, 19, 24, 0.60) !important;

    font-size: 14.5px !important;
    line-height: 1.58 !important;
    font-weight: 520 !important;
}

.yubeen-faq-help-head > span {
    width: 72px !important;
    height: 72px !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    border-radius: 50% !important;

    color: #d71920 !important;

    background: rgba(215, 25, 32, 0.075) !important;

    border: 1px solid rgba(215, 25, 32, 0.12) !important;

    box-shadow: 0 0 0 18px rgba(215, 25, 32, 0.030) !important;
}

.yubeen-faq-help-head svg,
.yubeen-faq-action-card svg,
.yubeen-faq-popular svg {
    fill: none !important;
    stroke: currentColor !important;
    stroke-width: 1.75 !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;
}

.yubeen-faq-help-head svg {
    width: 34px !important;
    height: 34px !important;
}


/* Action cards */
.yubeen-faq-action-list {
    display: flex !important;
    flex-direction: column !important;

    gap: 14px !important;

    margin-bottom: 26px !important;
}

.yubeen-faq-action-card {
    position: relative !important;

    display: grid !important;
    grid-template-columns: 76px minmax(0, 1fr) !important;

    gap: 18px !important;

    padding: 20px !important;

    border-radius: 19px !important;

    background: rgba(255, 255, 255, 0.76) !important;

    border: 1px solid rgba(17, 19, 24, 0.075) !important;

    color: inherit !important;
    text-decoration: none !important;

    overflow: hidden !important;

    transition:
        transform 0.22s ease,
        border-color 0.22s ease,
        box-shadow 0.22s ease,
        background 0.22s ease !important;
}

.yubeen-faq-action-card:hover {
    transform: translateY(-3px) !important;

    background: rgba(255, 255, 255, 0.92) !important;

    border-color: rgba(215, 25, 32, 0.20) !important;

    box-shadow: 0 16px 38px rgba(17, 19, 24, 0.06) !important;
}

.yubeen-faq-action-card > span {
    width: 64px !important;
    height: 64px !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    border-radius: 18px !important;

    color: #d71920 !important;

    background: rgba(215, 25, 32, 0.080) !important;
}

.yubeen-faq-action-card > span svg {
    width: 31px !important;
    height: 31px !important;
}

.yubeen-faq-action-card strong {
    display: block !important;

    margin: 0 0 8px 0 !important;

    color: #111318 !important;

    font-size: 17px !important;
    line-height: 1.24 !important;
    font-weight: 860 !important;
}

.yubeen-faq-action-card em {
    display: block !important;

    margin-bottom: 12px !important;

    color: rgba(17, 19, 24, 0.58) !important;

    font-size: 13.5px !important;
    line-height: 1.44 !important;
    font-style: normal !important;
    font-weight: 520 !important;
}

.yubeen-faq-action-card b {
    color: #d71920 !important;

    font-size: 13.5px !important;
    line-height: 1 !important;
    font-weight: 820 !important;

    transition: transform 0.2s ease !important;
}

.yubeen-faq-action-card:hover b {
    display: inline-block !important;
    transform: translateX(4px) !important;
}


/* Popular links */
.yubeen-faq-popular {
    padding: 22px !important;

    border-radius: 20px !important;

    background:
        linear-gradient(180deg, rgba(247, 248, 250, 0.88) 0%, rgba(255, 255, 255, 0.70) 100%) !important;

    border: 1px solid rgba(17, 19, 24, 0.065) !important;
}

.yubeen-faq-popular h3 {
    margin: 0 0 14px 0 !important;

    color: #111318 !important;

    font-size: 16px !important;
    line-height: 1 !important;
    font-weight: 860 !important;
}

.yubeen-faq-popular a {
    display: grid !important;
    grid-template-columns: 48px minmax(0, 1fr) 20px !important;

    align-items: center !important;

    gap: 14px !important;

    padding: 14px 0 !important;

    color: inherit !important;
    text-decoration: none !important;

    border-bottom: 1px solid rgba(17, 19, 24, 0.075) !important;
}

.yubeen-faq-popular a:last-child {
    border-bottom: 0 !important;
}

.yubeen-faq-popular a > span {
    width: 42px !important;
    height: 42px !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    border-radius: 13px !important;

    color: #d71920 !important;

    background: rgba(215, 25, 32, 0.065) !important;
}

.yubeen-faq-popular a svg {
    width: 22px !important;
    height: 22px !important;
}

.yubeen-faq-popular strong {
    display: block !important;

    margin: 0 0 5px 0 !important;

    color: #111318 !important;

    font-size: 14px !important;
    line-height: 1.2 !important;
    font-weight: 820 !important;
}

.yubeen-faq-popular em {
    display: block !important;

    color: rgba(17, 19, 24, 0.54) !important;

    font-size: 12.5px !important;
    line-height: 1.35 !important;
    font-style: normal !important;
    font-weight: 520 !important;
}

.yubeen-faq-popular b {
    color: rgba(17, 19, 24, 0.42) !important;

    font-size: 24px !important;
    font-weight: 400 !important;

    transition: transform 0.2s ease, color 0.2s ease !important;
}

.yubeen-faq-popular a:hover b {
    color: #d71920 !important;
    transform: translateX(4px) !important;
}


/* ---------------------------------------------------------------------------------------------------------
   10. ACCESSIBILITY
   --------------------------------------------------------------------------------------------------------- */

.yubeen-faq-tabs button:focus-visible,
.yubeen-faq-search input:focus-visible,
.yubeen-faq-question:focus-visible,
.yubeen-faq-action-card:focus-visible,
.yubeen-faq-popular a:focus-visible {
    outline: 3px solid rgba(215, 25, 32, 0.32) !important;
    outline-offset: 4px !important;
}


/* ---------------------------------------------------------------------------------------------------------
   11. RESPONSIVE
   --------------------------------------------------------------------------------------------------------- */

@media (max-width: 1200px) {
    .yubeen-faq-inner {
        grid-template-columns: 1fr !important;
        grid-template-rows: auto !important;

        row-gap: 44px !important;
        column-gap: 0 !important;
    }

    .yubeen-faq-main {
        display: block !important;
    }

    .yubeen-faq-hero {
        width: 100% !important;
        margin: 0 0 28px 0 !important;
    }

    .yubeen-faq-groups {
        grid-column: auto !important;
        grid-row: auto !important;
    }

    .yubeen-faq-empty {
        grid-column: auto !important;
    }

    .yubeen-faq-side {
        grid-column: auto !important;
        grid-row: auto !important;

        position: relative !important;
        top: auto !important;
        margin-top: 0 !important;
    }

    .yubeen-faq-help-card {
        max-width: 760px !important;
    }
}


@media (max-width: 767px) {
    .yubeen-faq-section {
        padding: 68px 0 78px 0 !important;
    }

    .yubeen-faq-inner {
        width: min(88vw, 560px) !important;
    }

    .yubeen-faq-breadcrumb {
        margin-bottom: 26px !important;
        flex-wrap: wrap !important;
    }

    .yubeen-faq-hero h1 {
        font-size: 42px !important;
        line-height: 1.08 !important;
        letter-spacing: -1.3px !important;
    }

    .yubeen-faq-hero > p {
        font-size: 15.5px !important;
        line-height: 1.62 !important;
    }

    .yubeen-faq-search {
        min-height: 58px !important;
        border-radius: 16px !important;
    }

    .yubeen-faq-search-icon {
        width: 52px !important;
        height: 58px !important;
    }

    .yubeen-faq-search input {
        height: 58px !important;
        font-size: 15px !important;
    }

    .yubeen-faq-tabs {
        gap: 10px !important;
    }

    .yubeen-faq-tabs button {
        min-height: 42px !important;
        padding: 0 16px !important;
        font-size: 13px !important;
    }

    .yubeen-faq-group {
        padding: 14px !important;
    }

    .yubeen-faq-group-head {
        gap: 12px !important;
    }

    .yubeen-faq-group-head h2 {
        font-size: 20px !important;
    }

    .yubeen-faq-question {
        grid-template-columns: 34px minmax(0, 1fr) 26px !important;
        gap: 12px !important;
        padding: 10px 12px !important;
    }

    .yubeen-faq-question > span {
        width: 28px !important;
        height: 28px !important;
    }

    .yubeen-faq-question strong {
        font-size: 14px !important;
    }

    .yubeen-faq-answer {
        padding: 0 14px 18px 58px !important;
        font-size: 13.5px !important;
    }

    .yubeen-faq-help-card {
        padding: 22px !important;
    }

    .yubeen-faq-help-head {
        grid-template-columns: 1fr !important;
    }

    .yubeen-faq-help-head > span {
        display: none !important;
    }

    .yubeen-faq-action-card {
        grid-template-columns: 58px minmax(0, 1fr) !important;
        padding: 16px !important;
    }

    .yubeen-faq-action-card > span {
        width: 52px !important;
        height: 52px !important;
    }

    .yubeen-faq-action-card > span svg {
        width: 26px !important;
        height: 26px !important;
    }
}