        /* --------------------------------------------------------------------------
           00. SYSTEM CORE & RESET
           -------------------------------------------------------------------------- */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            outline: none;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        :root {
            --bg-light: #F6F0F0;
            --bg-dark: #0D4715;
            --text-primary: #0D4715;
            --text-light: #FFFFFF;
            --font-editorial: "Instrument Sans", sans-serif;
            --ease-elegant: cubic-bezier(0.16, 1, 0.3, 1);
            --transition-smooth: all 0.5s var(--ease-elegant);
        }

        html, body {
            font-family: var(--font-editorial);
            background-color: var(--bg-light);
            color: var(--text-primary);
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        /* Editorial Typography Standards */
        .heading-massive {
            font-family: var(--font-editorial);
            font-size: clamp(2.5rem, 6.5vw, 6rem);
            font-weight: 600;
            line-height: 0.95;
            text-transform: uppercase;
            letter-spacing: -0.04em;
        }

        .heading-editorial {
            font-family: var(--font-editorial);
            font-size: clamp(2rem, 4vw, 3.8rem);
            font-weight: 600;
            line-height: 1.05;
            text-transform: uppercase;
            letter-spacing: -0.02em;
        }

        .paragraph-magazine {
            font-family: var(--font-editorial);
            font-weight: 400;
            font-size: clamp(1.1rem, 1.3vw, 1.4rem);
            line-height: 1.75;
            letter-spacing: 0.01em;
            opacity: 0.9;
        }

        .paragraph-thin {
            font-family: var(--font-editorial);
            font-weight: 300;
            font-size: clamp(1rem, 1.1vw, 1.2rem);
            line-height: 1.85;
            letter-spacing: 0.02em;
            opacity: 0.75;
        }

        .section-padding {
            padding: 160px 8%;
        }

        @media (max-width: 768px) {
            .section-padding { padding: 90px 4%; }
        }

        .container-limit {
            max-width: 1440px;
            margin: 0 auto;
            width: 100%;
        }

        /* Screen States Architecture */
        .journal-view {
            display: none;
            width: 100%;
        }
        .journal-view.active-view {
            display: block;
        }

        /* --------------------------------------------------------------------------
           01. FLOATING NAVIGATION BAR & DRAWER SYSTEM
           -------------------------------------------------------------------------- */
        .editorial-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 80px;
            background-color: var(--bg-light);
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 5%;
            z-index: 1000;
            border-bottom: 1px solid rgba(13, 71, 21, 0.1);
        }

.header-logo {
    display: flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
}

.header-logo img {
    height: 250px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

.header-logo:hover img {
    transform: scale(1.05);
}
        .hamburger-menu-btn {
            background: none;
            border: none;
            font-family: var(--font-editorial);
            font-size: 0.95rem;
            font-weight: 600;
            text-transform: uppercase;
            color: var(--text-primary);
            cursor: pointer;
            letter-spacing: 0.1em;
            display: flex;
            align-items: center;
            gap: 12px;
            transition: var(--transition-smooth);
        }

        .hamburger-icon-lines {
            display: flex;
            flex-direction: column;
            gap: 5px;
        }

        .hamburger-icon-lines span {
            display: block;
            width: 22px;
            height: 2px;
            background-color: var(--text-primary);
            transition: var(--transition-smooth);
        }

        /* Sliding Drawer Overlay */
        .drawer-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(0, 0, 0, 0.4);
            backdrop-filter: blur(8px);
            z-index: 1500;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition-smooth);
        }
        .drawer-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .navigation-drawer {
            position: fixed;
            top: 0;
            right: -100%;
            width: 100%;
            max-width: 540px;
            height: 100vh;
            background-color: var(--bg-dark);
            z-index: 2000;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 80px 12%;
            transition: right 0.65s cubic-bezier(0.16, 1, 0.3, 1);
            box-shadow: -15px 0 45px rgba(0,0,0,0.25);
        }
        .navigation-drawer.active {
            right: 0;
        }

        .drawer-close-btn {
            position: absolute;
            top: 25px;
            right: 5%;
            background: none;
            border: none;
            color: var(--text-light);
            font-family: var(--font-editorial);
            font-size: 0.9rem;
            text-transform: uppercase;
            cursor: pointer;
            letter-spacing: 0.1em;
        }

        .drawer-nav-links {
            display: flex;
            flex-direction: column;
            gap: 40px;
            list-style: none;
        }

        .drawer-nav-links a {
            font-size: clamp(2rem, 5vw, 3.2rem);
            font-weight: 600;
            text-transform: uppercase;
            color: var(--text-light);
            text-decoration: none;
            position: relative;
            display: inline-block;
            cursor: pointer;
            width: fit-content;
        }

        /* Grow left-to-right underline animation */
        .drawer-nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--text-light);
            transition: width 0.4s var(--ease-elegant);
        }

        .drawer-nav-links a:hover::after {
            width: 100%;
        }

        /* --------------------------------------------------------------------------
           02. SECTION 01: HERO VIDEO MANIFESTO
           -------------------------------------------------------------------------- */
        .hero-manifesto {
            height: 100vh;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 80px 5%;
        }

        .hero-video-backing {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        /* High-fidelity gameplay simulation background placeholder loop */
        .hero-video-backing iframe,
        .hero-video-backing video,
        .hero-video-backing img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transform: scale(1.05);
        }

        .hero-manifesto::before {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.75) 100%);
            z-index: 2;
        }

        .hero-manifesto-content {
            position: relative;
            z-index: 3;
            width: 100%;
        }

        .hero-horizontal-rule {
            width: 100%;
            height: 1px;
            background-color: var(--text-light);
            margin-bottom: 30px;
            opacity: 1;
            transform-origin: left;
            animation: borderDraw 1.5s var(--ease-elegant) forwards;
        }

        @keyframes borderDraw {
            from { transform: scaleX(0); }
            to { transform: scaleX(1); }
        }

        .hero-editorial-grid {
            display: grid;
            grid-template-columns: 1.8fr 1fr;
            gap: 60px;
            align-items: flex-end;
        }

        @media (max-width: 991px) {
            .hero-editorial-grid { grid-template-columns: 1fr; gap: 30px; }
        }

        .scroll-line-indicator {
            width: 1px;
            height: 80px;
            background-color: var(--text-light);
            justify-self: flex-end;
            margin-bottom: 10px;
            position: relative;
            overflow: hidden;
        }

        .scroll-line-indicator::after {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background-color: var(--bg-dark);
            animation: lineDrop 2s infinite var(--ease-elegant);
        }

        @keyframes lineDrop {
            0% { transform: translateY(-100%); }
            50%, 100% { transform: translateY(100%); }
        }

        /* --------------------------------------------------------------------------
           03. SECTION 02: FEATURED GAME NARRATIVE
           -------------------------------------------------------------------------- */
        .featured-narrative {
            background-color: var(--bg-light);
            color: var(--text-primary);
        }

        .split-narrative-layout {
            display: grid;
            grid-template-columns: 1fr 1.1fr;
            gap: 80px;
            margin-top: 60px;
            align-items: stretch;
        }

        .narrative-left-image {
            width: 100%;
            min-height: 600px;
            overflow: hidden;
            position: relative;
        }

        .narrative-left-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: grayscale(0.15) contrast(1.02);
            transition: var(--transition-smooth);
        }

        .narrative-left-image:hover img {
            transform: scale(1.03);
            filter: grayscale(0);
        }

        .narrative-right-editorial {
            display: flex;
            flex-direction: column;
            justify-content: center;
            background-color: var(--bg-light);
            padding: 20px 0;
        }

        @media (max-width: 991px) {
            .split-narrative-layout { grid-template-columns: 1fr; gap: 40px; }
            .narrative-left-image { min-height: 400px; }
        }

        /* --------------------------------------------------------------------------
           04. SECTION 03: CULTURE ARCHIVES
           -------------------------------------------------------------------------- */
        .culture-archives {
            background-color: var(--bg-dark);
            color: var(--text-light);
        }

        .archives-cards-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-top: 70px;
        }

        .archive-wire-card {
            border: 1px solid rgba(255, 255, 255, 0.3);
            background: transparent;
            padding: 60px 40px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            min-height: 420px;
            transition: var(--transition-smooth);
        }

        .archive-wire-card:hover {
            border-color: var(--text-light);
            box-shadow: 0 0 30px rgba(255, 255, 255, 0.08);
            transform: translateY(-4px);
        }

        .archive-card-number {
            font-size: 0.9rem;
            letter-spacing: 0.1em;
            opacity: 0.5;
            font-weight: 600;
        }

        @media (max-width: 991px) {
            .archives-cards-container { grid-template-columns: 1fr; gap: 30px; }
            .archive-wire-card { min-height: 320px; }
        }

        /* --------------------------------------------------------------------------
           05. SECTION 04: INSIGHT INDEX
           -------------------------------------------------------------------------- */
        .insight-index {
            background-color: var(--bg-light);
            color: var(--text-primary);
        }

        .index-table-system {
            margin-top: 60px;
            display: flex;
            flex-direction: column;
        }

        .index-line-separator {
            width: 100%;
            height: 1px;
            background-color: var(--text-primary);
            opacity: 0.8;
        }

        .index-data-row {
            display: grid;
            grid-template-columns: 1fr 2fr;
            padding: 50px 0;
            gap: 40px;
            align-items: flex-start;
            transition: var(--transition-smooth);
        }

        .index-data-row:hover {
            padding-left: 15px;
            background-color: rgba(13, 71, 21, 0.02);
        }

        @media (max-width: 768px) {
            .index-data-row { grid-template-columns: 1fr; gap: 15px; padding: 35px 0; }
        }

        /* --------------------------------------------------------------------------
           06. SECTION 05: VISUAL SHOWCASE
           -------------------------------------------------------------------------- */
        .visual-showcase {
            background-color: var(--bg-dark);
            color: var(--text-light);
        }

        .showcase-trio-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 45px;
            margin-top: 70px;
        }

        .showcase-square-card {
            position: relative;
            aspect-ratio: 1 / 1;
            overflow: hidden;
            background-color: rgba(255,255,255,0.03);
        }

        .showcase-square-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s var(--ease-elegant);
        }

        .showcase-card-overlay {
            position: absolute;
            bottom: 0; left: 0; width: 100%;
            padding: 40px 30px;
            background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 100%);
            opacity: 0;
            transform: translateY(15px);
            transition: var(--transition-smooth);
        }

        .showcase-square-card:hover img {
            transform: scale(1.06);
        }

        .showcase-square-card:hover .showcase-card-overlay {
            opacity: 1;
            transform: translateY(0);
        }

        @media (max-width: 991px) {
            .showcase-trio-grid { grid-template-columns: 1fr; gap: 30px; }
        }

        /* --------------------------------------------------------------------------
           07. SECTION 06: COMMUNITY ACCESS
           -------------------------------------------------------------------------- */
        .community-access {
            display: grid;
            grid-template-columns: 1fr 1fr;
            width: 100%;
            min-height: 90vh;
        }

        .access-left-panel {
            background-color: var(--bg-light);
            color: var(--text-primary);
            padding: 120px 12%;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .access-right-panel-image {
            background: url('https://images.unsplash.com/photo-1542751371-adc38448a05e?auto=format&fit=crop&q=80&w=1200') center/cover no-repeat;
            width: 100%;
            height: 100%;
            background-attachment: scroll;
        }

        .journal-editorial-form {
            margin-top: 50px;
            display: flex;
            flex-direction: column;
            gap: 35px;
        }

        .editorial-input-wrapper {
            position: relative;
        }

        .editorial-input {
            width: 100%;
            background: transparent;
            border: none;
            border-bottom: 1px solid var(--text-primary);
            padding: 16px 0;
            font-family: var(--font-editorial);
            font-size: 1.1rem;
            color: var(--text-primary);
            transition: var(--transition-smooth);
        }

        .editorial-input::placeholder {
            color: rgba(13, 71, 21, 0.4);
        }

        .form-cta-row {
            display: flex;
            gap: 20px;
            margin-top: 15px;
            flex-wrap: wrap;
        }

        .btn-journal-action {
            background-color: var(--text-primary);
            color: var(--bg-light);
            border: 1px solid var(--text-primary);
            padding: 18px 40px;
            font-family: var(--font-editorial);
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 0.08em;
            cursor: pointer;
            transition: var(--transition-smooth);
        }

        .btn-journal-action.action-outline {
            background-color: transparent;
            color: var(--text-primary);
        }

        .btn-journal-action:hover {
            opacity: 0.85;
            transform: translateY(-2px);
        }

        /* Verification Diagnostics Mechanics */
        .form-diagnostic-log {
            margin-top: 25px;
            font-weight: 600;
            font-size: 0.95rem;
            display: none;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
        .form-diagnostic-log.success { color: #1e4620; display: block; }
        .form-diagnostic-log.error { color: #8c1d1d; display: block; }
        
        .diagnostic-loading-pulse {
            display: inline-block;
            width: 18px;
            height: 18px;
            border: 2px solid rgba(13, 71, 21, 0.2);
            border-radius: 50%;
            border-top-color: var(--text-primary);
            animation: rotationalSpin 0.7s linear infinite;
            vertical-align: middle;
            margin-right: 12px;
            display: none;
        }
        @keyframes rotationalSpin { to { transform: rotate(360deg); } }

        @media (max-width: 991px) {
            .community-access { grid-template-columns: 1fr; }
            .access-right-panel-image { height: 400px; }
            .access-left-panel { padding: 80px 6%; }
        }

        /* --------------------------------------------------------------------------
           08. SECTION 07: SOCIAL HUB
           -------------------------------------------------------------------------- */
        .social-hub {
            background-color: var(--bg-dark);
            color: var(--text-light);
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 90px 8%;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        .social-logo-placeholder {
            font-size: 1.8rem;
            font-weight: 700;
            letter-spacing: 0.05em;
        }

        .social-anchors-set {
            display: flex;
            gap: 45px;
        }

        .social-anchors-set a {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.95rem;
            letter-spacing: 0.08em;
            display: inline-block;
            transition: transform 0.4s var(--ease-elegant), opacity 0.3s;
        }

        .social-anchors-set a:hover {
            transform: translateY(-8px);
            opacity: 0.8;
        }

        @media (max-width: 768px) {
            .social-hub { flex-direction: column; gap: 40px; text-align: center; }
            .social-anchors-set { gap: 25px; }
        }

        /* --------------------------------------------------------------------------
           09. SECTION 08: FEATURED ARTICLES WALL (MASONRY ARCHITECTURE)
           -------------------------------------------------------------------------- */
        .articles-wall {
            background-color: var(--bg-light);
            color: var(--text-primary);
        }

        .magazine-masonry-grid {
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            gap: 50px;
            margin-top: 60px;
        }

        .masonry-article-card {
            display: flex;
            flex-direction: column;
            gap: 22px;
        }

        .masonry-image-frame {
            width: 100%;
            overflow: hidden;
            background-color: rgba(13,71,21,0.05);
        }

        .masonry-image-frame img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: grayscale(0.2);
            transition: var(--transition-smooth);
        }

        .masonry-article-card:hover .masonry-image-frame img {
            filter: grayscale(0);
            transform: scale(1.02);
        }

        /* Asymmetric Layout Definitions */
        .span-7 { grid-column: span 7; }
        .span-5 { grid-column: span 5; }
        .span-4 { grid-column: span 4; }
        .span-8 { grid-column: span 8; }
        
        .h-large { height: 520px; }
        .h-medium { height: 390px; }

        .read-more-link {
            font-weight: 700;
            text-transform: uppercase;
            font-size: 0.85rem;
            letter-spacing: 0.05em;
            color: var(--text-primary);
            text-decoration: none;
            width: fit-content;
            border-bottom: 1px solid var(--text-primary);
            padding-bottom: 2px;
            margin-top: auto;
            transition: var(--transition-smooth);
        }

        .read-more-link:hover {
            opacity: 0.6;
        }

        @media (max-width: 991px) {
            .magazine-masonry-grid > div { grid-column: span 12 !important; }
            .masonry-image-frame { height: 360px !important; }
        }

        /* --------------------------------------------------------------------------
           10. SECTION 09: GAME TIMELINE ESSAY
           -------------------------------------------------------------------------- */
        .timeline-essay {
            background-color: var(--bg-dark);
            color: var(--text-light);
        }

        .timeline-spine-container {
            position: relative;
            margin-top: 80px;
            padding-left: 60px;
        }

        .timeline-static-backbone {
            position: absolute;
            left: 20px;
            top: 0;
            bottom: 0;
            width: 1px;
            background-color: rgba(255, 255, 255, 0.15);
        }

        .timeline-growth-highway {
            position: absolute;
            left: 20px;
            top: 0;
            width: 1px;
            height: 0%; /* Driven dynamically by active window scrolling matrix */
            background-color: var(--text-light);
            transition: height 0.1s linear;
        }

        .timeline-milestone-node {
            position: relative;
            margin-bottom: 90px;
        }

        .timeline-milestone-node::before {
            content: '';
            position: absolute;
            left: -46px;
            top: 8px;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: var(--text-light);
            border: 3px solid var(--bg-dark);
            z-index: 5;
        }

        .era-chronology-stamp {
            font-weight: 600;
            color: rgba(255,255,255,0.5);
            font-size: 0.9rem;
            letter-spacing: 0.05em;
            margin-bottom: 10px;
            display: block;
        }

        /* --------------------------------------------------------------------------
           11. SUB-PAGE TEMPLATES (ABOUT, BLOG, CONTACT, LEGAL MATRIX)
           -------------------------------------------------------------------------- */
        .secondary-view-header {
            padding: 200px 8% 80px 8%;
            background-color: var(--bg-dark);
            color: var(--text-light);
            border-bottom: 1px solid rgba(255,255,255,0.06);
        }

        /* Two-Column Document System for Legal and Logistics Profile Architecture */
        .document-structural-matrix {
            display: grid;
            grid-template-columns: 0.6fr 1.4fr;
            gap: 80px;
            margin-top: 60px;
        }

        .document-sidebar-nav {
            position: sticky;
            top: 140px;
            height: fit-content;
        }

        .document-sidebar-nav ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .document-sidebar-nav a {
            color: rgba(13, 71, 21, 0.45);
            text-decoration: none;
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.85rem;
            letter-spacing: 0.05em;
            transition: var(--transition-smooth);
        }

        .document-sidebar-nav a:hover {
            color: var(--text-primary);
        }

        .document-content-block {
            margin-bottom: 80px;
        }

        .document-content-block h3 {
            margin-bottom: 25px;
        }

        @media (max-width: 991px) {
            .document-structural-matrix { grid-template-columns: 1fr; gap: 40px; }
            .document-sidebar-nav { position: relative; top: 0; }
        }

        /* --------------------------------------------------------------------------
           12. PREMIUM UNIVERSAL FOOTER
           -------------------------------------------------------------------------- */
        .universal-footer {
            background-color: var(--text-light);
            color: var(--text-primary);
            padding: 120px 8% 45px 8%;
            border-top: 1px solid rgba(13, 71, 21, 0.08);
        }

        .footer-navigation-centered {
            display: flex;
            justify-content: center;
            gap: 60px;
            margin-bottom: 70px;
            list-style: none;
            flex-wrap: wrap;
        }

        .footer-navigation-centered a {
            font-weight: 600;
            text-transform: uppercase;
            font-size: 1rem;
            color: var(--text-primary);
            text-decoration: none;
            cursor: pointer;
            letter-spacing: 0.05em;
            transition: var(--transition-smooth);
        }

        .footer-navigation-centered a:hover {
            opacity: 0.5;
        }

        .footer-thin-divider {
            width: 100%;
            height: 1px;
            background-color: rgba(13, 71, 21, 0.12);
            margin-bottom: 40px;
        }

        .footer-copyright-matrix {
            display: flex;
            justify-content: space-between;
            font-size: 0.85rem;
            opacity: 0.75;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .footer-copyright-matrix a {
            color: var(--text-primary);
            text-decoration: none;
            margin-left: 30px;
            cursor: pointer;
        }

        .footer-copyright-matrix a:hover {
            text-decoration: underline;
        }

        @media (max-width: 768px) {
            .footer-copyright-matrix { flex-direction: column; gap: 20px; text-align: center; align-items: center; }
            .footer-navigation-centered { gap: 30px; }
        }
        .hero-video-backing {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-video-backing video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-hero{
    position:relative;
    height:90vh;
    overflow:hidden;
}

.about-hero img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.about-hero-overlay{
    position:absolute;
    inset:0;
    display:flex;
    align-items:center;
    background:linear-gradient(
        rgba(0,0,0,.45),
        rgba(0,0,0,.65)
    );
}

.access-right-panel-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}


.footer-newsletter{
    max-width:600px;
    margin:0 auto 60px;
    text-align:center;
}

.footer-newsletter h3{
    font-size:2rem;
    margin-bottom:12px;
}

.footer-newsletter p{
    opacity:.7;
    margin-bottom:25px;
}

.footer-newsletter input{
    width:100%;
    padding:16px 20px;
    border:1px solid rgba(255,255,255,.2);
    background:transparent;
    color:inherit;
    font-size:1rem;
    margin-bottom:18px;
}

.footer-newsletter-actions{
    display:flex;
    justify-content:center;
    gap:12px;
    flex-wrap:wrap;
}

.footer-newsletter-actions button{
    padding:14px 28px;
    border:none;
    cursor:pointer;
    text-transform:uppercase;
    letter-spacing:.08em;
}

.outline-btn{
    background:transparent;
    border:1px solid currentColor !important;
}

#footerNewsletterStatus{
    margin-top:18px;
    min-height:24px;
    font-size:.95rem;
    opacity:.8;
}