/* CASCADE-LAYER: intentionally-unlayered — page composition. See .planning/phases/01-foundation-activation/01-CONTEXT.md D-01. */
/* stylelint-disable media-feature-name-disallowed-list -- Phase 6: max-width media queries retained; mobile-first conversion deferred (D-08). Strict-value/!important/order cleaned. */

/**
 * FAQ Page Styles
 * 
 * Accordion-style expandable Q&A with smooth animations,
 * proper ARIA labels, and mobile-optimized touch interactions.
 */

/* FAQ Page Layout */
.faq-page {
    min-height: 70vh;
    padding: var(--space-16) 0;
    background: linear-gradient(135deg, var(--neutral-50) 0%, var(--neutral-200) 100%);
}

/* FAQ Hero Section - Enhanced version from inline styles */
.faq-hero-section {
    position: relative;
    padding: var(--space-16) 0 var(--space-12);
    color: var(--text-on-purple);
    background: linear-gradient(135deg, var(--purple-700) 0%, var(--purple-600) 25%, var(--purple-500) 50%, var(--purple-400) 75%, var(--purple-300) 100%);
    text-align: center;
    overflow: hidden;
}

.faq-hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="paw-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M20,10 Q15,5 10,10 Q15,15 20,10 M30,15 Q25,10 20,15 Q25,20 30,15 M10,25 Q5,20 0,25 Q5,30 10,25 M30,30 Q25,25 20,30 Q25,35 30,30" fill="rgba(255,255,255,0.1)" stroke="none"/></pattern></defs><rect width="100" height="100" fill="url(%23paw-pattern)"/></svg>');
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

.faq-hero-section .hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.faq-hero-section .hero-content h1 {
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- type-scale-extension size — no --text-* token is byte-identical; literal preserves zero-diff */
    font-size: 3.5rem;
    font-weight: var(--font-bold);
    background: linear-gradient(45deg, #FFF, #F8F9FA, #E9ECEF);
    animation: text-shimmer 3s ease-in-out infinite;
    margin-bottom: var(--space-6);
    text-shadow: 0 4px 8px rgb(0 0 0 / 30%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.faq-hero-section .hero-description {
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- type-scale-extension size — no --text-* token is byte-identical; literal preserves zero-diff */
    font-size: 1.3rem;
    line-height: 1.6;
    opacity: 0.95;
    margin-bottom: var(--space-8);
    text-shadow: 0 2px 4px rgb(0 0 0 / 20%);
}

/* Hero decoration classes consolidated in utilities.css */

.faq-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-8);
    margin-top: var(--space-8);
}

.faq-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
    min-width: 120px;
    padding: var(--space-4);
    background: rgb(255 255 255 / 15%);
    border: 1px solid rgb(255 255 255 / 20%);
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- off-scale radius — no --radius-* token is byte-identical; literal preserves zero-diff */
    border-radius: 15px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.faq-stat:hover {
    background: rgb(255 255 255 / 25%);
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- bespoke shadow geometry/tint — no --shadow-* token is byte-identical; literal preserves zero-diff */
    box-shadow: 0 8px 25px rgb(0 0 0 / 15%);
    transform: translateY(-5px);
}

.faq-stat .stat-icon {
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- type-scale-extension size — no --text-* token is byte-identical; literal preserves zero-diff */
    font-size: 2rem;
    animation: faq-stat-bounce 2.5s ease-in-out infinite;
}

.faq-stat:nth-child(2) .stat-icon { animation-delay: 0.3s; }
.faq-stat:nth-child(3) .stat-icon { animation-delay: 0.6s; }

.faq-stat .stat-text {
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- type-scale-extension size — no --text-* token is byte-identical; literal preserves zero-diff */
    font-size: 0.9rem;
    font-weight: var(--font-semibold);
    text-align: center;
    letter-spacing: 0.5px;
}

.faq-article {
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    margin-bottom: var(--space-8);
}

/* Note: Header styles moved to unified page-header.css */

/* FAQ Content */
.faq-content {
    padding: var(--space-12) var(--space-8);
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- compound rgba background tint — no palette token is byte-identical; literal preserves zero-diff */
    background-color: rgb(92 31 113 / 33%);
}

/* FAQ Search */
.faq-search {
    margin-bottom: var(--space-12);
    text-align: center;
}

.search-container {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

#faq-search {
    width: 100%;
    padding: var(--space-4) var(--space-6) var(--space-4) var(--space-12);
    font-size: var(--text-base);
    background: white;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-full);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

#faq-search:focus {
    outline: none;
    border-color: var(--primary-color);
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- bespoke focus-ring geometry/tint — no --shadow-* token is byte-identical; literal preserves zero-diff */
    box-shadow: 0 0 0 3px rgb(92 31 113 / 10%);
}

.search-icon {
    position: absolute;
    top: 50%;
    left: 1rem;
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- type-scale-extension size — no --text-* token is byte-identical; literal preserves zero-diff */
    font-size: 1.2rem;
    color: var(--text-secondary);
    transform: translateY(-50%);
    pointer-events: none;
}

/* FAQ Accordion */
.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    margin-bottom: var(--space-4);
    overflow: hidden;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.faq-item.active {
    border-color: var(--primary-color);
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- bespoke shadow geometry/tint — no --shadow-* token is byte-identical; literal preserves zero-diff */
    box-shadow: 0 5px 25px rgb(92 31 113 / 15%);
}

/* FAQ Questions (Buttons) */
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    min-height: 60px;
    padding: var(--space-6) var(--space-8);
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- type-scale-extension size — no --text-* token is byte-identical; literal preserves zero-diff */
    font-size: 1.1rem;
    font-weight: var(--font-semibold);
    color: var(--primary-color);
    background: transparent;
    border: none;
    transition: var(--transition-base);
    text-align: left;
    cursor: pointer;
}

.faq-question:hover {
    color: var(--primary-color);
    background: rgb(92 31 113 / 5%); /* token-exempt: compound rgba background tint — no token covers this alpha variant */
}

/* CONS-05: divergent 2px focus outline removed so the canonical base.css :focus-visible
   ring (3px solid var(--purple-500)) wins. The focus background is kept (it parallels
   :hover and is not a focus ring). */
.faq-question:focus {
    background: rgb(92 31 113 / 5%);
}

.faq-question[aria-expanded="true"] {
    color: var(--text-on-purple);
    background: var(--primary-color);
}

.faq-question[aria-expanded="true"]:hover {
    background: var(--secondary-color);
}

.question-text {
    flex: 1;
    padding-right: var(--space-4);
}

/* FAQ Icons */
.faq-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    transition: var(--transition-base);
}

.faq-icon svg {
    width: 100%;
    height: 100%;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
}

/* FAQ Answers */
.faq-answer {
    max-height: 0;
    background: var(--neutral-50);
    transition: max-height 0.4s ease-out, padding 0.3s ease;
    overflow: hidden;
}

.faq-answer.expanded {
    max-height: 1000px;
    transition: max-height 0.6s ease-in, padding 0.3s ease;
}

.answer-content {
    padding: 0 var(--space-8) var(--space-8);
    color: var(--text-primary, #2D2926);
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease 0.1s, transform 0.3s ease 0.1s;
    margin-top: var(--space-4);
}

.faq-answer.expanded .answer-content {
    opacity: 1;
    transform: translateY(0);
}

/* Answer with Image Layout */
.answer-with-image {
    display: grid;
    grid-template-columns: 120px 1fr;
    align-items: flex-start;
    gap: var(--space-6);
}

.answer-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.answer-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
}

.answer-text {
    line-height: 1.6;
    color: var(--text-primary, #2D2926);
}

.answer-text p {
    margin-bottom: var(--space-4);
    color: var(--text-primary, #2D2926);
}

.answer-text p:last-child {
    margin-bottom: 0;
}

/* Contact Details in Answers */
.contact-details {
    padding: var(--space-4);
    background: rgb(92 31 113 / 5%); /* page-specific purple wash — `background` is not strict-value-audited */
    border-radius: var(--border-radius-md);
    margin-top: var(--space-4);
}

.contact-details p {
    margin-bottom: var(--space-2);
}

.contact-details a {
    font-weight: var(--font-semibold);
    color: var(--primary-color);
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

/* Special Answer Components */
.new-products-badge {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--error), var(--error));
    border-radius: var(--radius-circle);
    box-shadow: var(--shadow-md);
    transform: rotate(-15deg);
}

.badge-text {
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- type-scale-extension size — no --text-* token is byte-identical; literal preserves zero-diff */
    font-size: 1.2rem;
    font-weight: var(--font-bold);
    color: var(--text-on-purple);
    letter-spacing: 1px;
}

/* Credit Card Logos */
.credit-cards {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.card-logos {
    display: flex;
    flex-direction: column;
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- off-grid spacing — no --space-* token is byte-identical; literal preserves zero-diff */
    gap: 0.3rem;
}

.card-logo {
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- off-grid spacing — no --space-* token is byte-identical; literal preserves zero-diff */
    padding: 0.3rem 0.6rem;
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- type-scale-extension size — no --text-* token is byte-identical; literal preserves zero-diff */
    font-size: 0.8rem;
    font-weight: var(--font-bold);
    color: var(--text-on-purple);
    border-radius: var(--radius-xs);
    text-align: center;
}

.card-logo.visa {
    background: #1a1f71; /* token-exempt: Visa brand color — no palette token exists */
}

.card-logo.mastercard {
    background: #eb001b; /* token-exempt: Mastercard red — no palette token exists */
}

.card-logo.amex {
    background: #006fcf; /* token-exempt: American Express blue — no palette token exists */
}

/* Discount List */
.discount-list {
    list-style: none;
    padding: 0;
    margin: var(--space-4) 0;
}

.discount-list li {
    position: relative;
    padding: var(--space-2) 0;
    padding-left: var(--space-6);
    border-bottom: 1px solid rgb(92 31 113 / 10%); /* page-specific purple wash — `border` shorthand is not strict-value-audited */
}

.discount-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    font-weight: var(--font-bold);
    color: var(--success-color);
}

.discount-list li:last-child {
    border-bottom: none;
}

/* Sponsored Clubs */
.sponsored-clubs {
    padding: var(--space-6);
    background: white;
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius-md);
    margin-top: var(--space-8);
}

.sponsored-clubs h4 {
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- type-scale-extension size — no --text-* token is byte-identical; literal preserves zero-diff */
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: var(--space-4);
    text-align: center;
}

.club-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-4);
}

.club-item {
    display: flex;
    align-items: center;
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- off-grid spacing — no --space-* token is byte-identical; literal preserves zero-diff */
    gap: 0.8rem;
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- off-grid spacing — no --space-* token is byte-identical; literal preserves zero-diff */
    padding: 0.8rem;
    background: rgb(92 31 113 / 5%); /* page-specific purple wash — `background` is not strict-value-audited */
    border-radius: var(--border-radius-md);
    transition: var(--transition-base);
}

.club-item:hover {
    background: rgb(92 31 113 / 10%); /* page-specific purple wash — `background` is not strict-value-audited */
    transform: translateY(-2px);
}

.club-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: var(--radius-circle);
    flex-shrink: 0;
}

.club-icon {
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- type-scale-extension size — no --text-* token is byte-identical; literal preserves zero-diff */
    font-size: 1.2rem;
    color: var(--text-on-purple);
}

.club-name {
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- type-scale-extension size — no --text-* token is byte-identical; literal preserves zero-diff */
    font-size: 0.9rem;
    font-weight: var(--font-semibold);
    color: var(--text-secondary);
}

/* Hours Table */
.hours-table {
    background: rgb(255 255 255);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    margin-bottom: var(--space-4);
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: var(--space-4) var(--space-6);
    border-bottom: 1px solid var(--border-color);
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-row:nth-child(even) {
    background: rgb(92 31 113 / 2%); /* token-exempt: compound rgba background tint — no token covers this alpha variant */
}

.day {
    font-weight: var(--font-semibold);
    color: var(--text-secondary, #5A5550);
}

.time {
    font-weight: var(--font-semibold);
    color: var(--purple-700);
}

.hours-note {
    margin: 0;
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- type-scale-extension size — no --text-* token is byte-identical; literal preserves zero-diff */
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-align: center;
}

/* Location Info */
.location-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-8);
}

.address-section,
.transport-section,
.parking-section {
    padding: var(--space-6);
    background: white;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
}

.address-section h4,
.transport-section h4,
.parking-section h4 {
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- type-scale-extension size — no --text-* token is byte-identical; literal preserves zero-diff */
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: var(--space-4);
}

/* FAQ Contact Section */
.faq-contact {
    margin-top: var(--space-16);
    text-align: center;
}

.contact-card {
    padding: var(--space-12) var(--space-8);
    color: var(--text-on-purple);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.contact-card h3 {
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- type-scale-extension size — no --text-* token is byte-identical; literal preserves zero-diff */
    font-size: 2rem;
    margin-bottom: var(--space-4);
}

.contact-card p {
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- type-scale-extension size — no --text-* token is byte-identical; literal preserves zero-diff */
    font-size: 1.1rem;
    margin-bottom: var(--space-8);
    opacity: 0.9;
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-4);
}

.contact-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-2);
    min-width: 160px;
    padding: var(--space-4) var(--space-8);
    font-weight: var(--font-semibold);
    border-radius: var(--border-radius-full);
    transition: var(--transition-base);
    text-decoration: none;
}

.contact-btn.phone {
    color: var(--text-on-purple);
    background: var(--success-text);
}

.contact-btn.email {
    color: var(--text-on-purple);
    background: var(--info-text);
}

.contact-btn.form {
    color: var(--primary-color);
    background: white;
}

.contact-btn:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.contact-btn.phone:hover {
    background: var(--success-text);
}

.contact-btn.email:hover {
    background: var(--info-text);
}

.contact-btn.form:hover {
    background: var(--neutral-50);
}

/* Search Functionality */
.faq-item.hidden {
    display: none;
}

.faq-item.highlighted .question-text {
    background: var(--amber-100);
}

.no-results {
    text-align: center;
    padding: var(--space-12) var(--space-8);
    color: var(--text-secondary);
}

.no-results h3 {
    color: var(--primary-color);
    margin-bottom: var(--space-4);
}

/* Responsive Design */
@media (width <= 768px) {
    .faq-page {
        padding: var(--space-8) 0;
    }

    .faq-content {
        padding: var(--space-8) var(--space-6);
    }

    .faq-question {
        /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- off-grid spacing — no --space-* token is byte-identical; literal preserves zero-diff */
        padding: 1.2rem 1.5rem;
        font-size: var(--text-base);
    }

    .answer-content {
        padding: 0 var(--space-6) var(--space-6);
    }

    .answer-with-image {
        grid-template-columns: 1fr;
        gap: var(--space-4);
        text-align: center;
    }

    .answer-image {
        justify-self: center;
    }

    .club-grid {
        grid-template-columns: 1fr;
    }

    .contact-actions {
        flex-direction: column;
        align-items: center;
    }

    .contact-btn {
        width: 100%;
        max-width: 280px;
    }

    .location-info {
        grid-template-columns: 1fr;
    }

    .sponsored-clubs {
        padding: var(--space-4);
    }
}

@media (width <= 480px) {
    .faq-question {
        min-height: 50px;
        padding: var(--space-4);
        /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- type-scale-extension size — no --text-* token is byte-identical; literal preserves zero-diff */
        font-size: 0.95rem;
    }

    .answer-content {
        padding: 0 var(--space-4) var(--space-4);
    }

    .contact-card {
        padding: var(--space-8) var(--space-4);
    }

    .contact-card h3 {
        font-size: var(--text-2xl);
    }

    .search-container {
        margin: 0 var(--space-4);
    }

    #faq-search {
        /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- type-scale-extension size — no --text-* token is byte-identical; literal preserves zero-diff */
        font-size: 0.9rem;
    }
}

/* Animation for FAQ items on page load */

/* Animation moved to utilities.css for consistency */

/* Enhanced animations from inline styles */

/* Animation moved to utilities.css - use faq-float */

/* Animation moved to utilities.css - use faq-title-glow */

/* Animation moved to utilities.css - use faq-stat-bounce */

/* Animation moved to utilities.css - use search-rainbow */

/* Animation moved to utilities.css - use faq-item-shimmer */

/* Animation moved to utilities.css - use contact-card-rainbow */

/* Animation moved to utilities.css - use badge-pulse */

/* stylelint-disable-next-line no-duplicate-selectors -- intentional same-selector cascade split: the page-load entrance animation is authored separately from the base .faq-item chrome (line ~171); merging would reorder the cascade */
.faq-item {
    animation: fade-in-up 0.6s ease-out;
    animation-fill-mode: both;
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }
.faq-item:nth-child(5) { animation-delay: 0.5s; }
.faq-item:nth-child(6) { animation-delay: 0.6s; }
.faq-item:nth-child(7) { animation-delay: 0.7s; }

/* High contrast mode support */
/* stylelint-disable-next-line media-feature-name-value-no-unknown -- `high` is a valid prefers-contrast value (MDN); this stylelint build's dictionary lags the spec */
@media (prefers-contrast: high) {
    .faq-item {
        border: 2px solid var(--text-primary);
    }
    
    .faq-question {
        color: var(--text-primary);
        background: white;
    }
    
    .faq-question[aria-expanded="true"] {
        color: var(--text-on-purple);
        background: var(--text-primary);
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .faq-answer {
        transition: none;
    }
    
    .answer-content {
        transition: none;
    }
    
    .faq-item {
        animation: none;
    }
    
    .faq-icon {
        transition: none;
    }
    
    .contact-btn:hover {
        transform: none;
    }
}

/* Print styles */
@media print {
    .faq-search,
    .faq-contact {
        display: none;
    }
    
    /* Print guard survivors (D-07): these four !important force the JS accordion
       fully open for printing. They must override the higher-specificity
       `.faq-answer.expanded` (0,2,0) and `.faq-answer.expanded .answer-content`
       (0,2,1) open-state rules regardless of which items the reader left collapsed;
       source order alone cannot beat that higher specificity, so !important is
       load-bearing here. Print state is not in the visual baseline — kept literal,
       not removed. */
    .faq-answer {
        /* stylelint-disable-next-line declaration-no-important -- print guard: force accordion open over .faq-answer.expanded (0,2,0) */
        max-height: none !important;
        /* stylelint-disable-next-line declaration-no-important -- print guard: force accordion open over .faq-answer.expanded (0,2,0) */
        overflow: visible !important;
    }

    .answer-content {
        /* stylelint-disable-next-line declaration-no-important -- print guard: reveal answer over .faq-answer.expanded .answer-content (0,2,1) */
        opacity: 1 !important;
        /* stylelint-disable-next-line declaration-no-important -- print guard: reveal answer over .faq-answer.expanded .answer-content (0,2,1) */
        transform: none !important;
    }
    
    .faq-question::after {
        content: "";
    }
    
    .faq-icon {
        display: none;
    }
}