        /* --------------------------------------------------------------------------
           00. SYSTEM CORE RESET & BRAND METRICS
           -------------------------------------------------------------------------- */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            outline: none;
            -webkit-font-smoothing: antialiased;
        }

        :root {
            --navy: #000080;
            --stone: #D3DAD9;
            --white: #EEEEEE;
            --violet: #7A1CAC;
            --font-main: "Mulish", sans-serif;
            --ease-lux: cubic-bezier(0.25, 1, 0.5, 1);
            --transition-slow: all 0.8s var(--ease-lux);
            --transition-fast: all 0.4s var(--ease-lux);
        }

        html, body {
            font-family: var(--font-main);
            background-color: var(--white);
            color: var(--navy);
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        /* Luxury Editorial Typography Rules */
        .txt-display-thin {
            font-weight: 200;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            line-height: 1.15;
            font-size: clamp(2.2rem, 5vw, 5.2rem);
        }

        .txt-editorial-title {
            font-weight: 300;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            line-height: 1.2;
            font-size: clamp(1.6rem, 3vw, 3rem);
        }

        .txt-body-magazine {
            font-weight: 300;
            font-size: clamp(1rem, 1.1vw, 1.25rem);
            line-height: 1.8;
            letter-spacing: 0.02em;
            opacity: 0.85;
        }

        .section-num-giant {
            font-size: clamp(6rem, 15vw, 14rem);
            font-weight: 900;
            color: var(--violet);
            opacity: 0.08;
            line-height: 0.8;
            pointer-events: none;
            user-select: none;
        }

        .section-space {
            padding: 160px 10%;
        }

        @media (max-width: 768px) {
            .section-space { padding: 90px 5%; }
        }

        .max-bounds {
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
        }

        /* Screen Routing Architecture States */
        .magazine-panel-view {
            display: none;
            width: 100%;
        }
        .magazine-panel-view.active-panel {
            display: block;
        }

        /* --------------------------------------------------------------------------
           01. FLOATING JOURNAL HEADER SYSTEM
           -------------------------------------------------------------------------- */
        .journal-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 90px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 5%;
            z-index: 1000;
            transition: var(--transition-fast);
            background-color: transparent;
        }

        .journal-header.scrolled {
            background-color: rgba(238, 238, 238, 0.85);
            backdrop-filter: blur(15px);
            border-bottom: 1px solid rgba(0, 0, 128, 0.06);
            height: 80px;
        }

.header-logo {
    display: flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    flex-shrink: 0;
}

.header-logo img {
    display: block;
    height: 242px; /* adjust as needed */
    width: auto;
    transition: var(--transition-fast);
}

.header-logo:hover img {
    transform: scale(1.03);
}
        .header-center-links {
            display: flex;
            gap: 35px;
            list-style: none;
        }

        @media (max-width: 1024px) {
            .header-center-links { display: none; }
        }

        .header-center-links a {
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--navy);
            text-decoration: none;
            cursor: pointer;
            position: relative;
            padding-bottom: 4px;
        }

        .header-center-links a::after {
            content: '';
            position: absolute;
            bottom: 0; left: 0; width: 0; height: 1px;
            background-color: var(--navy);
            transition: var(--transition-fast);
        }

        .header-center-links a:hover::after {
            width: 100%;
        }

.circle-menu-trigger {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--navy);
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    transition: var(--transition-fast);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.circle-menu-trigger span {
    display: block;
    width: 18px;
    height: 1.5px;
    background-color: var(--white);
    transition: var(--transition-fast);
}

.circle-menu-trigger:hover {
    box-shadow: 0 0 20px var(--violet);
    transform: scale(1.04);
}

/* Hide on desktop */
@media (min-width: 1025px) {
    .circle-menu-trigger {
        display: none;
    }
}

        /* Full Screen Overlay Directory Drawer */
        .drawer-overlay-shield {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100vh;
            background: rgba(0, 0, 80, 0.4);
            backdrop-filter: blur(10px);
            z-index: 1500;
            opacity: 0; visibility: hidden;
            transition: var(--transition-fast);
        }
        .drawer-overlay-shield.active { opacity: 1; visibility: visible; }

        .editorial-drawer-container {
            position: fixed;
            top: 0; right: -100%; width: 100%; max-width: 460px; height: 100vh;
            background-color: var(--white);
            z-index: 2000;
            padding: 100px 10% 60px 10%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            transition: right 0.7s cubic-bezier(0.3, 1, 0.2, 1);
            border-left: 1px solid rgba(0,0,0,0.05);
        }
        .editorial-drawer-container.active { right: 0; }

        .drawer-termination-btn {
            position: absolute;
            top: 30px; right: 5%;
            background: none; border: none;
            font-family: var(--font-main);
            color: var(--navy);
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            cursor: pointer;
            letter-spacing: 0.1em;
        }

        .drawer-directory-tree {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 30px;
            margin-top: 40px;
        }

        .drawer-directory-tree a {
            font-size: 2.2rem;
            font-weight: 200;
            text-transform: uppercase;
            color: var(--navy);
            text-decoration: none;
            cursor: pointer;
            transition: var(--transition-fast);
            display: inline-block;
        }

        .drawer-directory-tree a:hover {
            color: var(--violet);
            padding-left: 10px;
        }

        /* --------------------------------------------------------------------------
           02. SECTION 02: FULLSCREEN CINEMATIC OPENING
           -------------------------------------------------------------------------- */
        .fullscreen-cinematic-opening {
            height: 100vh;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            padding: 120px 5% 40px 5%;
        }

        .cinematic-media-backing {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            z-index: 1;
            overflow: hidden;
        }

        .cinematic-media-backing img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        @keyframes slowAtmosphericZoom {
            0% { transform: scale(1.02); }
            100% { transform: scale(1.12); }
        }

        .fullscreen-cinematic-opening::before {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: linear-gradient(to bottom, rgba(238,238,238,0.3) 0%, rgba(238,238,238,0.75) 100%);
            z-index: 2;
        }

        .cinematic-center-statement {
            position: relative;
            z-index: 3;
            margin: auto 0;
            max-width: 900px;
        }

        .cinematic-bottom-wrapper {
            position: relative;
            z-index: 3;
            width: 100%;
        }

        .cinematic-accent-bar {
            width: 100%;
            height: 1px;
            background-color: rgba(0, 0, 120, 0.15);
            margin-bottom: 20px;
        }

        /* --------------------------------------------------------------------------
           03. SECTION 03: THE CURRENT ISSUE
           -------------------------------------------------------------------------- */
        .current-issue-section {
            background-color: var(--white);
            position: relative;
        }

        .current-issue-grid {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 5;
        }

        .current-portrait-frame {
            position: relative;
            width: 100%;
            height: 640px;
            overflow: hidden;
            /* Intentional slight overflow style simulated via margins */
            margin-bottom: -220px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.06);
            z-index: 10;
        }

        .current-portrait-frame img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition-slow);
        }

        .current-portrait-frame:hover img {
            transform: scale(1.04);
        }

        @media (max-width: 991px) {
            .current-issue-grid { grid-template-columns: 1fr; gap: 40px; }
            .current-portrait-frame { margin-bottom: 0; height: 450px; }
        }

        /* --------------------------------------------------------------------------
           04. SECTION 04: DISCOVERY STRIPS
           -------------------------------------------------------------------------- */
        .discovery-strips-section {
            background-color: var(--stone);
            padding-top: 260px; /* Accommodates preceding section overflow */
            padding-bottom: 160px;
        }

        @media (max-width: 991px) {
            .discovery-strips-section { padding-top: 100px; }
        }

        .strip-row-item {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            margin-bottom: 120px;
        }

        .strip-row-item:last-child { margin-bottom: 0; }

        .strip-image-box {
            width: 100%;
            height: 480px;
            overflow: hidden;
        }

        .strip-image-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition-slow);
        }

        .strip-row-item:hover .strip-image-box img {
            transform: translateY(-8px);
        }

        @media (max-width: 768px) {
            .strip-row-item { grid-template-columns: 1fr !important; gap: 30px; margin-bottom: 70px; }
            .strip-image-box { height: 320px; }
            .strip-row-item:nth-child(even) .strip-image-box { order: 2; }
        }

        /* --------------------------------------------------------------------------
           05. SECTION 05: CURATED FRAGMENTS
           -------------------------------------------------------------------------- */
        .curated-fragments-section {
            background-color: var(--navy);
            color: var(--white);
        }

        .asymmetric-collage-assembly {
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            gap: 40px;
            margin-top: 60px;
        }

        .fragment-card {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .fragment-media-box {
            width: 100%;
            overflow: hidden;
        }

        .fragment-media-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition-slow);
        }

        .fragment-card:hover .fragment-media-box img {
            transform: scale(1.05);
        }

        .sz-large { grid-column: span 7; .fragment-media-box { height: 500px; } }
        .sz-small { grid-column: span 5; margin-top: 80px; .fragment-media-box { height: 360px; } }
        .sz-wide { grid-column: span 12; .fragment-media-box { height: 440px; } }

        @media (max-width: 768px) {
            .asymmetric-collage-assembly > div { grid-column: span 12 !important; margin-top: 0 !important; }
            .fragment-media-box { height: 300px !important; }
        }

        /* --------------------------------------------------------------------------
           06. SECTION 06: MOVING QUOTES (CROSSFADE SLIDER SYSTEM)
           -------------------------------------------------------------------------- */
        .moving-quotes-section {
            background-color: var(--white);
            height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
        }

        .quote-carousel-shell {
            max-width: 850px;
            padding: 0 40px;
            position: relative;
            height: 120px;
            width: 100%;
        }

        .quote-slide-unit {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
            transform: translateY(10px);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .quote-slide-unit.active-quote {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        /* --------------------------------------------------------------------------
           07. SECTION 07: ARCHIVE WALL (MASONRY GRID ENGINE)
           -------------------------------------------------------------------------- */
        .archive-wall-section {
            background-color: var(--stone);
        }

        .editorial-masonry-canvas {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 35px;
            margin-top: 60px;
        }

        .masonry-item-wrapper {
            background-color: rgba(238, 238, 238, 0.4);
            padding: 20px;
            display: flex;
            flex-direction: column;
            gap: 15px;
            height: fit-content;
            transition: var(--transition-fast);
        }

        .masonry-item-wrapper:hover {
            background-color: rgba(238, 238, 238, 0.9);
            transform: translateY(-5px);
        }

        .masonry-graphic-frame {
            width: 100%;
            overflow: hidden;
        }

        .masonry-graphic-frame img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Simulating structural varying layout definitions */
        .h-tall { .masonry-graphic-frame { height: 420px; } }
        .h-short { .masonry-graphic-frame { height: 260px; } }
        .h-medium { .masonry-graphic-frame { height: 340px; } }

        @media (max-width: 1024px) {
            .editorial-masonry-canvas { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 640px) {
            .editorial-masonry-canvas { grid-template-columns: 1fr; }
        }

        /* --------------------------------------------------------------------------
           08. SECTION 08: EDITOR'S LETTER
           -------------------------------------------------------------------------- */
        .editors-letter-section {
            background-color: var(--navy);
            color: var(--white);
            text-align: center;
        }

        .letter-column-narrow {
            max-width: 720px;
            margin: 0 auto;
            position: relative;
        }

        .oversized-quote-glyph {
            font-size: 8rem;
            line-height: 0.1;
            font-family: serif;
            color: var(--violet);
            display: block;
            margin-bottom: 30px;
        }

        /* --------------------------------------------------------------------------
           09. SECTION 09: FLOATING GALLERY (SUSPENDED SYSTEM)
           -------------------------------------------------------------------------- */
        .floating-gallery-section {
            background-color: var(--white);
            overflow: hidden;
            position: relative;
            min-height: 750px;
        }

        .suspended-element-container {
            position: relative;
            width: 100%;
            height: 600px;
            margin-top: 60px;
        }

        .suspended-asset {
            position: absolute;
            overflow: hidden;
            box-shadow: 0 30px 60px rgba(0,0,0,0.08);
            transition: transform 0.2s linear; /* Smooth responsive track */
        }

        .suspended-asset img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .pos-alpha { width: 280px; height: 380px; top: 20px; left: 5%; }
        .pos-beta { width: 340px; height: 460px; top: -60px; left: 40%; }
        .pos-gamma { width: 260px; height: 320px; top: 180px; right: 5%; }

        @media (max-width: 991px) {
            .suspended-element-container { height: auto; display: flex; flex-direction: column; gap: 40px; }
            .suspended-asset { position: relative; top: 0 !important; left: 0 !important; right: 0 !important; width: 100%; height: 350px; }
        }

        /* --------------------------------------------------------------------------
           10. SECTION 10: FEATURED COLLECTION
           -------------------------------------------------------------------------- */
        .featured-collection-section {
            background-color: var(--stone);
        }

        .collection-overlap-matrix {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 60px;
            margin-top: 60px;
            align-items: flex-start;
        }

        .stacked-cards-deck {
            position: relative;
            padding-bottom: 120px;
        }

        .overlapping-deck-card {
            background-color: var(--white);
            padding: 30px;
            box-shadow: 0 15px 45px rgba(0,0,0,0.05);
            margin-bottom: -80px;
            position: relative;
            transition: var(--transition-fast);
        }

        .overlapping-deck-card:nth-child(1) { z-index: 3; transform: rotate(-1deg); }
        .overlapping-deck-card:nth-child(2) { z-index: 4; transform: translateX(20px) rotate(1deg); }
        .overlapping-deck-card:nth-child(3) { z-index: 5; transform: translateY(40px) translateX(-10px); }

        .overlapping-deck-card:hover {
            z-index: 10 !important;
            transform: scale(1.02) translateY(-10px) !important;
        }

        .deck-card-image {
            width: 100%;
            height: 300px;
            object-fit: cover;
            margin-bottom: 20px;
        }

        @media (max-width: 991px) {
            .collection-overlap-matrix { grid-template-columns: 1fr; }
            .stacked-cards-deck { padding-bottom: 0; }
            .overlapping-deck-card { margin-bottom: 30px; transform: none !important; }
        }

        /* --------------------------------------------------------------------------
           11. SECTION 11: JOURNAL SUBSCRIPTION
           -------------------------------------------------------------------------- */
        .journal-subscription-section {
            background-color: var(--navy);
            color: var(--white);
        }

        .subscription-column-center {
            max-width: 650px;
            margin: 60px auto 0 auto;
        }

        .minimal-journal-form {
            display: flex;
            flex-direction: column;
            gap: 35px;
            margin-top: 40px;
        }

        .input-editorial-field {
            width: 100%;
            background: transparent;
            border: none;
            border-bottom: 1px solid rgba(238, 238, 238, 0.3);
            padding: 15px 0;
            font-family: var(--font-main);
            color: var(--white);
            font-size: 1.1rem;
            font-weight: 300;
            transition: var(--transition-fast);
        }

        .input-editorial-field:focus {
            border-color: var(--white);
        }

        .btn-editorial-submit {
            background-color: var(--violet);
            color: var(--white);
            border: none;
            padding: 20px 45px;
            font-family: var(--font-main);
            font-weight: 700;
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 0.1em;
            cursor: pointer;
            align-self: flex-start;
            transition: var(--transition-fast);
        }

        .btn-editorial-submit:hover {
            opacity: 0.9;
            transform: translateY(-2px);
        }

        .subscription-feedback-message {
            margin-top: 25px;
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 0.05em;
            color: var(--stone);
            display: none;
        }

        /* --------------------------------------------------------------------------
           12. SECTION 12: ENDING CINEMATIC
           -------------------------------------------------------------------------- */
        .ending-cinematic-hero {
            height: 100vh;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        .ending-cinematic-hero::before {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0, 0, 80, 0.45);
            z-index: 2;
        }

        /* --------------------------------------------------------------------------
           13. SUB-PAGE LAYOUT TEMPLATES (COLLECTIONS, STORIES, EDITIONS, ARCHIVE)
           -------------------------------------------------------------------------- */
        .subpage-hero-masthead {
            padding: 220px 10% 80px 10%;
            background-color: var(--navy);
            color: var(--white);
            border-bottom: 1px solid rgba(238,238,238,0.08);
        }

        .alternating-catalog-row {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 80px;
            align-items: center;
            margin-bottom: 140px;
        }

        .alternating-catalog-row:nth-child(even) {
            grid-template-columns: 0.9fr 1.1fr;
            div:first-child { order: 2; }
        }

        @media (max-width: 991px) {
            .alternating-catalog-row { grid-template-columns: 1fr !important; gap: 40px; margin-bottom: 80px; }
            .alternating-catalog-row div { order: 0 !important; }
        }

        /* Cover Grid Presentation for Editions Profile */
        .editions-magazine-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 50px;
            margin-top: 60px;
        }

        .edition-cover-wrapper {
            background-color: var(--white);
            padding: 25px;
            box-shadow: 0 20px 45px rgba(0,0,0,0.04);
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .cover-image-container {
            width: 100%;
            height: 480px;
            overflow: hidden;
            background-color: var(--stone);
        }

        .cover-image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition-slow);
        }

        .edition-cover-wrapper:hover .cover-image-container img {
            transform: scale(1.03);
        }

        @media (max-width: 991px) {
            .editions-magazine-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 640px) {
            .editions-magazine-grid { grid-template-columns: 1fr; }
            .cover-image-container { height: 380px; }
        }

        /* Timeline Interface for Archive Panel Module */
        .timeline-exploration-matrix {
            display: flex;
            flex-direction: column;
            margin-top: 60px;
        }

        .timeline-year-block {
            display: grid;
            grid-template-columns: 200px 1fr;
            padding: 60px 0;
            border-bottom: 1px solid rgba(0,0,128,0.15);
        }

        @media (max-width: 768px) {
            .timeline-year-block { grid-template-columns: 1fr; gap: 20px; padding: 40px 0; }
        }

        /* Dual Column Structural Matrix for Legal Verification Documents */
        .legal-document-layout {
            display: grid;
            grid-template-columns: 300px 1fr;
            gap: 80px;
            margin-top: 60px;
        }

        .legal-sidebar-menu ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 20px;
            position: sticky;
            top: 140px;
        }

        .legal-sidebar-menu a {
            color: rgba(0,0,80,0.45);
            text-decoration: none;
            font-weight: 700;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .legal-main-content h3 {
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .legal-content-paragraph-block {
            margin-bottom: 60px;
        }

        @media (max-width: 991px) {
            .legal-document-layout { grid-template-columns: 1fr; gap: 40px; }
            .legal-sidebar-menu ul { position: relative; top: 0; }
        }

        /* --------------------------------------------------------------------------
           14. LUXURY UNIVERSAL FOOTER PLATFORM
           -------------------------------------------------------------------------- */
        .universal-magazine-footer {
            background-color: var(--white);
            color: var(--navy);
            padding: 120px 5% 50px 5%;
            border-top: 1px solid rgba(0, 0, 80, 0.08);
            text-align: center;
        }

        .footer-navigation-row {
            display: flex;
            justify-content: center;
            gap: 50px;
            margin: 50px 0;
            list-style: none;
            flex-wrap: wrap;
        }

        .footer-navigation-row a {
            font-weight: 700;
            text-transform: uppercase;
            font-size: 0.85rem;
            color: var(--navy);
            text-decoration: none;
            letter-spacing: 0.08em;
            cursor: pointer;
        }

        .footer-social-tray {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-bottom: 50px;
        }

        .footer-social-tray a {
            color: var(--navy);
            text-decoration: none;
            font-size: 0.9rem;
            text-transform: uppercase;
            font-weight: 600;
            letter-spacing: 0.05em;
        }

        .footer-copyright-baseline {
            font-size: 0.8rem;
            opacity: 0.6;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
            border-top: 1px solid rgba(0,0,128,0.06);
            padding-top: 30px;
        }

        .footer-copyright-baseline a {
            color: var(--navy);
            text-decoration: none;
            margin-left: 25px;
            cursor: pointer;
        }

        @media (max-width: 768px) {
            .footer-copyright-baseline { flex-direction: column; gap: 20px; }
            .footer-navigation-row { gap: 25px; }
        }

        .subscription-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:50px;
    margin-top:40px;
}

.subscription-card{
    background: rgb(236, 146, 146);
    padding:40px;
    border:1px solid rgba(0,0,0,0.08);
}

.registry-label{
    display:block;
    margin-bottom:12px;
    font-size:.75rem;
    font-weight:700;
    letter-spacing:.12em;
    color:var(--violet);
}

.subscription-card h3{
    margin-bottom:25px;
    font-size:1.5rem;
    font-weight:400;
}

.unsubscribe-btn{
    background:#111;
    color:#fff;
}

.subscription-feedback-message{
    display:none;
    margin-top:20px;
    font-size:.85rem;
    letter-spacing:.05em;
}

.subscription-feedback-message.active{
    display:block;
}

@media (max-width:900px){

    .subscription-grid{
        grid-template-columns:1fr;
    }

}
