/* ===== SHARED HEADER STYLES ===== */
/* Include this file on all pages for consistent navigation */

/* ===== TYPOGRAPHY SCALE (LOCKED) ===== */
/* Use ONLY these 5 sizes across all pages */
:root {
    --text-display: clamp(3.5rem, 10vw, 6rem);   /* Hero titles only */
    --text-h1: clamp(2.25rem, 5vw, 3rem);        /* Section titles */
    --text-h2: clamp(1.75rem, 4vw, 2.25rem);     /* Subsections, card titles */
    --text-body: clamp(1rem, 1.5vw, 1.125rem);   /* Main content */
    --text-sm: 0.875rem;                          /* Buttons, labels, captions */
}

.site-header {
    background: #0A0A0A;
    border-bottom: 1px solid #2A2A2A;
    padding: 1rem 2rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.header-logo { height: 24px; width: auto; }

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link {
    font-size: 0.6875rem;
    font-weight: 500;
    color: #F5F2EB;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.5rem 0.75rem;
    opacity: 0.85;
    transition: all 0.3s ease;
}

.nav-link:hover, .nav-link.active { color: #00F5A0; opacity: 1; }

.nav-divider { width: 1px; height: 16px; background: #2A2A2A; margin: 0 0.5rem; }

/* Dropdown */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

/* Add invisible bridge between link and dropdown to prevent gap issues */
.nav-dropdown::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 1.25rem;
    background: transparent;
    display: none;
    z-index: 1000;
}

.nav-dropdown:hover::before {
    display: block;
}

.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 1.25rem);
    left: 50%;
    transform: translateX(-50%);
    background: rgba(22, 22, 22, 0.98);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(42, 42, 42, 0.6);
    border-radius: 6px;
    min-width: 160px;
    padding: 0.75rem 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
}

.nav-dropdown-link {
    display: block;
    font-size: 0.6875rem;
    font-weight: 500;
    color: #F5F2EB;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.65rem 1rem;
    opacity: 0.85;
    transition: all 0.2s ease;
}

.nav-dropdown-link:hover {
    color: #00F5A0;
    opacity: 1;
    background: rgba(0, 245, 160, 0.08);
}

/* Small arrow indicator on Books link */
.nav-dropdown > .nav-link::after {
    content: '▾';
    font-size: 0.6rem;
    margin-left: 0.25rem;
    opacity: 0.6;
}

.header-button {
    font-size: 0.6875rem;
    font-weight: 600;
    color: #F5F2EB;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.4rem 0.75rem;
    border: 1px solid #2A2A2A;
    transition: all 0.3s ease;
}

.header-button:hover { border-color: #00F5A0; color: #00F5A0; }

.header-cta {
    font-size: 0.75rem;
    font-weight: 600;
    color: #00F5A0;
    text-decoration: none;
}

/* Hamburger Menu Button */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}
.hamburger__line {
    width: 100%;
    height: 2px;
    background: #F5F2EB;
    transition: all 0.3s ease;
}
.hamburger.active .hamburger__line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active .hamburger__line:nth-child(2) {
    opacity: 0;
}
.hamburger.active .hamburger__line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0A0A0A;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}
.mobile-menu__inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 2rem 4rem;
    height: 100%;
    overflow-y: auto;
}
.mobile-menu__section {
    margin-bottom: 2rem;
    width: 100%;
}
.mobile-menu__label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #9A9A9A;
    margin-bottom: 0.5rem;
    display: block;
}
.mobile-menu__link {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: #F5F2EB;
    text-decoration: none;
    padding: 0.6rem 0;
    display: block;
    transition: color 0.2s ease;
    border-bottom: 1px solid #2A2A2A;
}
.mobile-menu__link:last-child {
    border-bottom: none;
}
.mobile-menu__link:hover,
.mobile-menu__link:active {
    color: #00F5A0;
}
.mobile-menu__link--accent {
    color: #00F5A0;
}
.mobile-menu__link--email {
    font-size: 0.9rem;
    color: #00F5A0;
    border-bottom: none;
    padding-top: 1rem;
}

/* ==========================================================================
   MOBILE STYLES - Complete Rewrite for Consistency
   ========================================================================== */

@media (max-width: 768px) {

    /* ==========================================================================
       1. GLOBAL RESETS & OVERFLOW PROTECTION
       ========================================================================== */

    html, body {
        overflow-x: hidden !important;
        max-width: 100vw !important;
    }

    img:not(.header-logo):not(.footer-logo),
    video, iframe {
        max-width: 100% !important;
        height: auto !important;
    }

    /* ==========================================================================
       2. HEADER & NAVIGATION
       ========================================================================== */

    .nav-menu { display: none !important; }
    .header-cta { display: none !important; }

    .hamburger {
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
        width: 24px !important;
        height: 18px !important;
    }

    .mobile-menu { display: block; }

    .site-header {
        padding: 0.75rem 1rem !important;
    }

    .header-logo {
        height: 20px !important;
        width: auto !important;
    }

    /* ==========================================================================
       3. BASE TYPOGRAPHY & SPACING
       ========================================================================== */

    /* All text left-aligned */
    h1, h2, h3, h4, h5, h6,
    p, li, span, a {
        text-align: left !important;
    }

    /* Comfortable line heights */
    p {
        line-height: 1.65 !important;
    }

    /* Section padding */
    section, .section {
        padding: 2rem 1.25rem !important;
    }

    .section-container {
        padding: 0 !important;
    }

    /* ==========================================================================
       4. SECTION HEADERS
       ========================================================================== */

    .section-header {
        text-align: left !important;
        margin-bottom: 1.5rem !important;
    }

    .section-badge,
    .section-badge--gold,
    .section-badge--green,
    .section-badge--red {
        display: inline-block !important;
        margin-bottom: 0.75rem !important;
    }

    .section-title {
        text-align: left !important;
        margin-bottom: 0.5rem !important;
    }

    .section-subtitle {
        text-align: left !important;
    }

    /* ==========================================================================
       5. CARD SYSTEM - Unified Approach
       ========================================================================== */

    /*
       Card Pattern A: Simple stacked cards
       - Full width, proper padding, stacked vertically
    */

    .product-cards,
    .tier-cards,
    .industry-cards,
    .consequence-cards,
    .deeper-cards,
    .problem-cards,
    .problem-grid,
    .emergence-grid,
    .knowledge-grid,
    .glossary-grid,
    .codex-types-grid,
    .distinction-grid,
    .architecture-grid,
    .voices-grid,
    .properties-grid,
    .capacities-grid,
    .qualities-grid,
    .tools-grid,
    .platforms-grid,
    .process-grid,
    .principles-grid,
    .comparison-grid,
    .physics-grid,
    .spiral-grid,
    .matrix-grid,
    .acts-detailed-grid,
    .stats-grid,
    .deliverables-grid,
    .difference-grid,
    .quick-ref-grid,
    .intervention-grid,
    .agentic-grid,
    .proof-grid,
    .stack-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 1rem !important;
        width: 100% !important;
    }

    /* ==========================================================================
       6. PRODUCT CARDS
       ========================================================================== */

    .product-card-new {
        display: block !important;
        width: 100% !important;
        padding: 1.25rem !important;
        text-align: left !important;
    }

    .product-number {
        display: inline-block !important;
        font-size: 0.875rem !important;
        font-weight: 600 !important;
        opacity: 0.5 !important;
        margin-right: 0.5rem !important;
    }

    .product-card-content {
        display: block !important;
        width: 100% !important;
    }

    .product-name {
        display: inline !important;
    }

    .product-tagline {
        display: block !important;
        margin: 0.5rem 0 0.75rem 0 !important;
        opacity: 0.8 !important;
    }

    .product-desc {
        display: block !important;
        margin-bottom: 1.25rem !important;
        line-height: 1.65 !important;
    }

    .product-buttons {
        display: flex !important;
        flex-direction: row !important;
        gap: 0.75rem !important;
    }

    .product-btn {
        flex: 1 !important;
        text-align: center !important;
        padding: 0.75rem 1rem !important;
    }

    /* ==========================================================================
       7. TIER CARDS
       ========================================================================== */

    .tier-card {
        width: 100% !important;
        text-align: left !important;
    }

    .tier-header {
        text-align: left !important;
        padding: 1.25rem !important;
    }

    .tier-label {
        display: block !important;
        margin-bottom: 0.5rem !important;
    }

    .tier-name {
        text-align: left !important;
    }

    .tier-tagline {
        text-align: left !important;
    }

    .tier-body {
        text-align: left !important;
        padding: 1.25rem !important;
    }

    .tier-features {
        padding-left: 0 !important;
        list-style-position: inside !important;
    }

    .tier-features li {
        text-align: left !important;
        margin-bottom: 0.5rem !important;
    }

    .tier-footer {
        text-align: left !important;
        padding: 1.25rem !important;
    }

    .tier-cta {
        display: inline-block !important;
    }

    /* ==========================================================================
       8. INDUSTRY CARDS
       ========================================================================== */

    .industry-card {
        width: 100% !important;
        padding: 1.25rem !important;
        text-align: left !important;
    }

    .industry-label {
        display: block !important;
        margin-bottom: 0.5rem !important;
    }

    .industry-card h3 {
        margin-bottom: 0.75rem !important;
    }

    .industry-problem {
        margin-bottom: 1rem !important;
        line-height: 1.65 !important;
    }

    .industry-cta {
        display: inline-block !important;
    }

    /* ==========================================================================
       9. ICON + CONTENT CARDS (Problem, Deeper, Stack, etc.)
       ========================================================================== */

    .problem-card,
    .deeper-card,
    .stack-card,
    .emergence-card,
    .agentic-card,
    .spiral-card,
    .physics-card {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        padding: 1.25rem !important;
        text-align: left !important;
    }

    /* Icons - standalone at top */
    .problem-icon,
    .deeper-icon,
    .stack-card-icon,
    .emergence-card-number,
    .agentic-card-icon,
    .spiral-card-icon,
    .physics-card-label {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 1.25rem !important;
        width: 2.5rem !important;
        height: 2.5rem !important;
        flex-shrink: 0 !important;
        margin: 0 0 1rem 0 !important;
        background: rgba(255, 255, 255, 0.05) !important;
        border-radius: 50% !important;
    }

    /* Content - flows naturally below icon */
    .problem-card h3,
    .deeper-card h3,
    .stack-card-title,
    .emergence-card-title,
    .agentic-card-title,
    .spiral-card-title,
    .physics-card-title {
        display: block !important;
        margin-bottom: 0.75rem !important;
        font-weight: 600 !important;
    }

    .problem-card p,
    .deeper-card p,
    .stack-card-provides,
    .stack-card-players,
    .stack-card-gap,
    .emergence-card-desc,
    .agentic-card-desc,
    .spiral-card-desc,
    .physics-card-desc {
        display: block !important;
        margin: 0 !important;
        line-height: 1.65 !important;
    }

    /* ==========================================================================
       10. DISTINCTION CARDS
       ========================================================================== */

    .distinction-bridge {
        padding: 2rem 1.25rem !important;
    }

    .distinction-bridge__header {
        text-align: left !important;
        margin-bottom: 1.5rem !important;
    }

    .distinction-bridge__title {
        text-align: left !important;
    }

    .distinction-bridge__inner {
        display: flex !important;
        flex-direction: column !important;
        gap: 1rem !important;
    }

    .distinction-card {
        display: block !important;
        width: 100% !important;
        padding: 1.25rem !important;
        text-align: left !important;
    }

    .distinction-card__icon {
        display: block !important;
        font-size: 1.5rem !important;
        margin-bottom: 1rem !important;
    }

    .distinction-card__tags {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 0.5rem !important;
        margin-bottom: 1rem !important;
    }

    .distinction-tag {
        display: inline-block !important;
    }

    .distinction-card__headline {
        margin-bottom: 0.75rem !important;
    }

    .distinction-card__body {
        margin-bottom: 1rem !important;
        line-height: 1.65 !important;
    }

    .distinction-card__footer {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 0.5rem !important;
        padding-top: 1rem !important;
        border-top: 1px solid rgba(255,255,255,0.1) !important;
    }

    /* ==========================================================================
       11. TERRAFORMS BANNER & FLOW
       ========================================================================== */

    .terraforms-banner {
        display: block !important;
        width: 100% !important;
        padding: 1.5rem 1.25rem !important;
        text-align: left !important;
    }

    .terraforms-badge-row {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 0.5rem !important;
        margin-bottom: 1rem !important;
    }

    .tf-badge {
        display: inline-block !important;
    }

    .terraforms-headline {
        text-align: left !important;
        margin-bottom: 1.5rem !important;
    }

    /* Terraforms Flow - Full width horizontal cards */
    .tf-flow {
        display: flex !important;
        flex-direction: column !important;
        gap: 0.75rem !important;
        width: 100% !important;
        margin: 1.5rem 0 !important;
    }

    .tf-flow__step {
        display: grid !important;
        grid-template-columns: 3.5rem 1fr !important;
        gap: 1rem !important;
        align-items: center !important;
        width: 100% !important;
        padding: 1.25rem 1.5rem !important;
        background: rgba(212, 175, 55, 0.08) !important;
        border: 1px solid rgba(212, 175, 55, 0.25) !important;
        border-radius: 8px !important;
    }

    .tf-flow__step:last-of-type {
        border-bottom: 1px solid rgba(212, 175, 55, 0.25) !important;
    }

    .tf-flow__icon {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 2.75rem !important;
        height: 2.75rem !important;
        font-size: 1.25rem !important;
        background: rgba(212, 175, 55, 0.2) !important;
        border-radius: 50% !important;
        margin: 0 !important;
    }

    .tf-flow__label {
        display: block !important;
        font-weight: 600 !important;
        font-size: 1.05rem !important;
        margin-bottom: 0.35rem !important;
    }

    .tf-flow__sub {
        display: block !important;
        font-size: 0.9rem !important;
        opacity: 0.75 !important;
        margin: 0 !important;
        line-height: 1.5 !important;
    }

    .tf-flow__arrow {
        display: none !important;
    }

    /* Terraforms Story */
    .terraforms-story-box {
        width: 100% !important;
        padding: 1.25rem !important;
        margin: 1.5rem 0 !important;
        background: rgba(255, 255, 255, 0.03) !important;
        border-radius: 6px !important;
        text-align: left !important;
    }

    .terraforms-story {
        text-align: left !important;
        line-height: 1.7 !important;
        margin: 0 !important;
        max-width: none !important;
    }

    .terraforms-story p {
        margin: 0 !important;
    }

    .terraforms-bottom {
        margin-top: 1.5rem !important;
        text-align: left !important;
    }

    /* ==========================================================================
       12. HERO SECTIONS
       ========================================================================== */

    .deepself-hero,
    .deepself-hero__inner {
        text-align: left !important;
        width: 100% !important;
    }

    .deepself-hero__hook,
    .deepself-hero__title,
    .deepself-hero__text {
        text-align: left !important;
    }

    .deepself-hero__banner {
        display: flex !important;
        flex-direction: column !important;
    }

    .deepself-hero__card {
        width: 100% !important;
        margin-top: 1.5rem !important;
        text-align: left !important;
    }

    .hero-card__tags {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 0.5rem !important;
        margin-bottom: 1rem !important;
    }

    .hero-card__sigil {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 0.25rem !important;
    }

    .hero-card__output {
        text-align: left !important;
    }

    /* ==========================================================================
       13. LANGUAGE BANNER
       ========================================================================== */

    .language-banner,
    .language-banner__inner,
    .language-banner__hero {
        text-align: left !important;
        width: 100% !important;
    }

    .language-banner__badge {
        display: inline-block !important;
        margin-bottom: 0.75rem !important;
    }

    .language-banner__headline,
    .language-banner__subline {
        text-align: left !important;
    }

    .language-callout,
    .language-callout__text {
        text-align: left !important;
    }

    .language-cards {
        display: flex !important;
        flex-direction: column !important;
        gap: 1rem !important;
    }

    .language-card {
        width: 100% !important;
        padding: 1.25rem !important;
        text-align: left !important;
    }

    .language-statement {
        text-align: left !important;
    }

    /* ==========================================================================
       14. FINAL CTA
       ========================================================================== */

    .final-cta {
        text-align: left !important;
        padding: 2rem 1.25rem !important;
    }

    .final-cta h2 {
        text-align: left !important;
        margin-bottom: 0.75rem !important;
    }

    .final-cta p {
        text-align: left !important;
        margin-bottom: 1rem !important;
    }

    .cta-urgency {
        margin-bottom: 0.5rem !important;
    }

    .cta-note {
        margin-top: 1rem !important;
        opacity: 0.7 !important;
        font-size: 0.875rem !important;
    }

    .btn-dark,
    .btn-terraforms {
        display: block !important;
        width: 100% !important;
        text-align: center !important;
        padding: 1rem !important;
        margin: 1rem 0 !important;
    }

    .brand-tagline {
        text-align: left !important;
        padding: 1rem 1.25rem !important;
    }

    /* ==========================================================================
       15. SIMPLE CONTENT CARDS
       ========================================================================== */

    .consequence-card,
    .knowledge-card,
    .glossary-card,
    .codex-type-card,
    .arch-card,
    .voice-card,
    .property-card,
    .capacity-card,
    .quality-card,
    .tool-card,
    .platform-card,
    .process-card,
    .deliverable-card,
    .difference-card,
    .quick-ref-card,
    .intervention-card,
    .proof-card,
    .lore-card,
    .act-card,
    .definition-card {
        display: block !important;
        width: 100% !important;
        padding: 1.25rem !important;
        text-align: left !important;
    }

    /* Card titles */
    .consequence-card h3,
    .knowledge-card-title,
    .glossary-term,
    .arch-card h3,
    .voice-card h3,
    .property-card h3,
    .capacity-card h3,
    .quality-card h3,
    .tool-card h3,
    .platform-card h3,
    .process-card h3,
    .difference-title,
    .definition-card__term {
        margin-bottom: 0.5rem !important;
    }

    /* Card descriptions */
    .consequence-card p,
    .knowledge-card-desc,
    .glossary-definition,
    .definition-card__text {
        line-height: 1.65 !important;
        margin: 0 !important;
    }

    /* ==========================================================================
       16. LISTS
       ========================================================================== */

    .transform-list,
    .comparison-list,
    .metaphor-list,
    .research-list,
    .phase-list,
    .sic-list,
    .transmission-list,
    .codex-features {
        text-align: left !important;
        padding-left: 1.25rem !important;
    }

    .transform-list li,
    .comparison-list li,
    .metaphor-list li,
    .research-list li {
        text-align: left !important;
        margin-bottom: 0.5rem !important;
    }

    /* ==========================================================================
       17. DOSSIER PAGES
       ========================================================================== */

    .dossier-content,
    .dossier-text,
    .gold-headline {
        text-align: left !important;
    }

    .section-content {
        text-align: left !important;
        width: 100% !important;
    }

    .section-label {
        display: inline-block !important;
        margin-bottom: 0.75rem !important;
    }

    /* ==========================================================================
       18. FOOTER
       ========================================================================== */

    .footer,
    footer {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        text-align: left !important;
        padding: 2rem 1.25rem !important;
    }

    .footer > *,
    footer > * {
        margin-left: 0 !important;
        padding-left: 0 !important;
        text-align: left !important;
    }

    .footer-logo {
        height: 24px !important;
        width: auto !important;
        margin-bottom: 1rem !important;
        margin-left: -4px !important;
    }

    .footer-tagline,
    .footer-text,
    .footer-brand {
        margin-bottom: 0.75rem !important;
    }

    .footer-copyright {
        margin: 0 !important;
    }

    .footer-content {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0.75rem !important;
        width: 100% !important;
    }

    .footer-sig {
        text-align: left !important;
        padding: 1.25rem !important;
    }

    /* ==========================================================================
       19. BUTTONS & CTAS
       ========================================================================== */

    .hero-cta-group,
    .cta-group,
    .button-group {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 0.75rem !important;
    }

    .section-cta-row {
        text-align: left !important;
    }

    /* ==========================================================================
       20. QUOTES & TESTIMONIALS
       ========================================================================== */

    .quote,
    .testimonial,
    .blockquote,
    .terraforms-quote {
        text-align: left !important;
        padding: 1.25rem !important;
    }

    /* ==========================================================================
       21. PROTOCOL/CODEX PAGES
       ========================================================================== */

    .prompt-section,
    .prompt-title,
    .prompt-content {
        text-align: left !important;
    }

    .summary-title,
    .access-title,
    .sim-title,
    .sim-content {
        text-align: left !important;
    }

    .character-structure-title,
    .character-example-title,
    .character-rules-title,
    .character-rules-subtitle {
        text-align: left !important;
    }

    /* ==========================================================================
       22. TERRAFORMS FEATURES
       ========================================================================== */

    .terraforms-features {
        display: flex !important;
        flex-direction: column !important;
        gap: 0.75rem !important;
    }

    .terraforms-feature {
        display: grid !important;
        grid-template-columns: 2rem 1fr !important;
        gap: 0.75rem !important;
        align-items: center !important;
        text-align: left !important;
        width: 100% !important;
        padding: 1rem 1.25rem !important;
    }

    .terraforms-feature-icon {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .terraforms-feature-stat {
        display: block !important;
        font-weight: 600 !important;
    }

    .terraforms-feature-label {
        display: block !important;
        font-size: 0.75rem !important;
        opacity: 0.7 !important;
    }

    /* ==========================================================================
       23. WELLNESS/INSURANCE SPECIFIC
       ========================================================================== */

    .problem-card-tag {
        display: inline-block !important;
        margin-bottom: 0.75rem !important;
    }

    .problem-card-title {
        margin-bottom: 0.5rem !important;
    }

    .problem-card-desc {
        line-height: 1.65 !important;
    }

    .knowledge-card-question {
        margin-bottom: 0.5rem !important;
        opacity: 0.8 !important;
    }

    /* ==========================================================================
       24. TABLES
       ========================================================================== */

    table {
        display: block !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        width: 100% !important;
    }

}

