@charset "utf-8";

/* Fonts for legacy .mag-scope editorial articles:
   - Cormorant Garamond italic 600: drop-caps
   - Montserrat italic 400 + 600: <em> text inside .mag-text-block
   Regular Montserrat weights are already loaded by the <link> in magazine_article.aspx. */
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@1,600&family=Montserrat:ital,wght@1,400;1,600&display=swap");

/* =============================================
   KNKY Magazine V2 — Elle-Style Editorial
   =============================================
   Fonts: Playfair Display (headings), Montserrat (UI), Georgia (body)
   Brand: Black (#0a0a0a), Pink (#EB3185), Gold (#C9A84C)
   ============================================= */


/* =============================================
   HOMEPAGE — Card Grid
   ============================================= */

.mag-home-v2 {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.mag-home-v2-header {
    text-align: center;
    padding: 60px 20px 40px;
}

.mag-home-v2-header h1 {
    font-family: 'Playfair Display', 'holidayfreeregular', Georgia, serif;
    font-size: 3.5em;
    color: #fff;
    margin: 0 0 10px 0;
    font-weight: 700;
    font-style: italic;
}

.mag-home-v2-header p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85em;
    color: rgba(255,255,255,0.45);
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* --- Card Grid --- */
.mag-grid-v2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding-bottom: 80px;
}

/* --- Individual Card --- */
.mag-card-v2 {
    display: block;
    text-decoration: none;
    color: inherit;
    background: #111;
    border-radius: 6px;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.mag-card-v2:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}

.mag-card-v2-img {
    position: relative;
    width: 100%;
    padding-top: 66.67%; /* 3:2 aspect ratio */
    overflow: hidden;
}

.mag-card-v2-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.mag-card-v2:hover .mag-card-v2-img img {
    transform: scale(1.04);
}

.mag-card-v2-body {
    padding: 22px 24px 28px;
}

.mag-card-v2-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6875em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: #EB3185;
    margin-bottom: 8px;
}

.mag-card-v2-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.4em;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px 0;
    line-height: 1.25;
}

.mag-card-v2-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8125em;
    color: rgba(255,255,255,0.5);
    font-weight: 300;
    line-height: 1.6;
    margin: 0 0 12px 0;
}

.mag-card-v2-date {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6875em;
    color: rgba(255,255,255,0.3);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* =============================================
   ARTICLE PAGE — Elle-Style Editorial
   ============================================= */

.mag-article-v2 {
    width: 100%;
    background: #0a0a0a;
}

/* --- Hero: 85vh full-bleed --- */
.mag-hero-v2 {
    position: relative;
    width: 100%;
    height: 85vh;
    min-height: 500px;
    overflow: hidden;
}

.mag-hero-v2-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

/* Hero video — same sizing as hero image */
video.mag-hero-v2-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

.mag-hero-v2-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 2;
    background: linear-gradient(
        to top,
        rgba(10,10,10,1) 0%,
        rgba(10,10,10,0.85) 25%,
        rgba(10,10,10,0.4) 55%,
        rgba(10,10,10,0) 100%
    );
    padding: 140px 40px 60px;
}

.mag-hero-v2-content {
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
}

.mag-hero-v2-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #EB3185;
    margin-bottom: 20px;
}

.mag-hero-v2-title {
    font-family: 'Playfair Display', 'holidayfreeregular', Georgia, serif;
    font-size: 4.2em;
    color: #fff;
    line-height: 1.08;
    margin: 0 0 20px 0;
    font-weight: 700;
}

.mag-hero-v2-subtitle {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.15em;
    color: rgba(255,255,255,0.65);
    font-weight: 400;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 20px;
}

.mag-hero-v2-date {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7em;
    color: rgba(255,255,255,0.35);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-weight: 400;
}


/* --- Gold divider line (Elle-style) --- */
.mag-divider-v2 {
    width: 60px;
    height: 1px;
    background: #C9A84C;
    margin: 0 auto;
    opacity: 0.6;
}


/* --- Article Body: Editorial Typography --- */
.mag-body-v2 {
    max-width: 700px;
    margin: 0 auto;
    padding: 50px 20px 80px;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 18px;
    line-height: 1.9;
    color: rgba(255,255,255,0.78);
}

/* Drop-cap on the first paragraph */
.mag-body-v2 > p:first-child::first-letter {
    font-family: 'Playfair Display', Georgia, serif;
    float: left;
    font-size: 4.5em;
    line-height: 0.8;
    padding-right: 12px;
    padding-top: 6px;
    color: #EB3185;
    font-weight: 700;
}

.mag-body-v2 p {
    margin: 0 0 1.5em 0;
}

.mag-body-v2 h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2em;
    font-weight: 700;
    color: #fff;
    margin: 3em 0 0.7em 0;
    line-height: 1.2;
}

.mag-body-v2 h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5em;
    font-weight: 700;
    color: #fff;
    margin: 2.5em 0 0.5em 0;
    line-height: 1.3;
}

.mag-body-v2 h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85em;
    font-weight: 700;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 2.5em 0 0.8em 0;
}

/* Full-bleed images — break out of the 700px text column */
.mag-body-v2 img {
    display: block;
    max-width: 100vw;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    height: auto;
    margin-top: 3em;
    margin-bottom: 3em;
    object-fit: cover;
}

/* Full-bleed videos — same breakout as images */
.mag-body-v2 video {
    display: block;
    max-width: 100vw;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    height: auto;
    margin-top: 3em;
    margin-bottom: 3em;
    object-fit: cover;
    background: #000;
}

/* Pull quotes — Elle-style large italic with pink accent */
.mag-body-v2 blockquote {
    border: none;
    border-top: 1px solid rgba(235,49,133,0.3);
    border-bottom: 1px solid rgba(235,49,133,0.3);
    margin: 3em 0;
    padding: 30px 0;
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-size: 1.4em;
    line-height: 1.5;
    color: #EB3185;
    text-align: center;
}

.mag-body-v2 blockquote p {
    margin: 0;
    color: inherit;
}

.mag-body-v2 a {
    color: #EB3185;
    text-decoration: none;
    border-bottom: 1px solid rgba(235,49,133,0.3);
    transition: border-color 0.2s ease;
}

.mag-body-v2 a:hover {
    border-bottom-color: #EB3185;
    color: #fff;
}

.mag-body-v2 ul,
.mag-body-v2 ol {
    padding-left: 1.5em;
    margin-bottom: 1.5em;
}

.mag-body-v2 li {
    margin-bottom: 0.6em;
}

.mag-body-v2 strong {
    color: #fff;
    font-weight: 700;
}

.mag-body-v2 em {
    font-style: italic;
}

/* Horizontal rule in article body */
.mag-body-v2 hr {
    border: none;
    height: 1px;
    background: rgba(255,255,255,0.1);
    margin: 3em 0;
}


/* --- Back to Magazine link --- */
.mag-back-v2 {
    text-align: center;
    padding: 0 20px 80px;
}

.mag-back-v2 a {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 0;
    transition: all 0.3s ease;
}

.mag-back-v2 a:hover {
    background: rgba(235,49,133,0.08);
    border-color: rgba(235,49,133,0.4);
    color: #EB3185;
}


/* =============================================
   RESPONSIVE — Homepage
   ============================================= */

@media only screen and (max-width: 768px) {
    .mag-home-v2-header {
        padding: 40px 20px 30px;
    }

    .mag-home-v2-header h1 {
        font-size: 2.5em;
    }

    .mag-grid-v2 {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .mag-card-v2-title {
        font-size: 1.2em;
    }
}


/* =============================================
   RESPONSIVE — Article Page
   ============================================= */

@media only screen and (max-width: 768px) {
    .mag-hero-v2 {
        height: 65vh;
        min-height: 380px;
    }

    .mag-hero-v2-overlay {
        padding: 80px 20px 40px;
    }

    .mag-hero-v2-title {
        font-size: 2.6em;
    }

    .mag-hero-v2-subtitle {
        font-size: 1em;
    }

    .mag-body-v2 {
        padding: 40px 20px 60px;
        font-size: 17px;
    }

    .mag-body-v2 > p:first-child::first-letter {
        font-size: 3.5em;
        padding-right: 8px;
    }

    .mag-body-v2 blockquote {
        font-size: 1.2em;
        padding: 24px 0;
    }

    .mag-body-v2 h2 {
        font-size: 1.6em;
    }

    .mag-body-v2 img,
    .mag-body-v2 video {
        margin-top: 2em;
        margin-bottom: 2em;
    }
}

@media only screen and (max-width: 480px) {
    .mag-hero-v2 {
        height: 55vh;
        min-height: 320px;
    }

    .mag-hero-v2-title {
        font-size: 2em;
    }

    .mag-hero-v2-label {
        font-size: 0.6em;
        letter-spacing: 3px;
    }

    .mag-body-v2 {
        font-size: 16px;
        line-height: 1.8;
    }

    .mag-body-v2 > p:first-child::first-letter {
        font-size: 3em;
    }

    .mag-body-v2 img,
    .mag-body-v2 video {
        margin-top: 1.5em;
        margin-bottom: 1.5em;
    }

    .mag-card-v2-body {
        padding: 16px 18px 22px;
    }
}


/* =============================================
   ARTICLE BODY — LEGACY .mag-scope SCOPED STYLES
   =============================================
   Applies ONLY when an article body ships <div class="mag-scope">
   (legacy editorial articles imported from prior CMS — Shia,
   Valentines, etc.). Articles without .mag-scope are unaffected
   and continue to render with the V2 .mag-body-v2 rules above.
   ============================================= */

.mag-scope {
    background: #000;
    color: #fff;
    font-size: 16px;
}

.mag-scope * {
    box-sizing: border-box;
}

.mag-scope .content {
    max-width: 1080px;
    margin: 0 auto;
    padding: 20px 0 60px 0;
}

.mag-scope .mag-article {
    max-width: 1080px;
    margin: 0 auto;
}

.mag-scope .mag-hero {
    position: relative;
    width: 100%;
    min-height: 70vh;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.mag-scope .mag-hero .hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.mag-scope .mag-hero-overlay {
    position: relative;
    z-index: 2;
    padding: 56px 44px;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.92), rgba(0,0,0,0));
}

.mag-scope .hero-label {
    font-family: "Montserrat", sans-serif;
    font-size: 0.72em;
    letter-spacing: 4px;
    text-transform: uppercase;
    opacity: 0.65;
    margin-bottom: 10px;
}

.mag-scope .hero-title {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 3.6em;
    line-height: 1.08em;
    margin: 0 0 10px 0;
}

.mag-scope .hero-subtitle {
    font-family: "Montserrat", sans-serif;
    font-size: 0.9em;
    opacity: 0.75;
    font-weight: 300;
}

.mag-scope .mag-section-image {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 44px;
}

.mag-scope .mag-section-image .article-img {
    width: 100%;
    max-height: 520px;
    object-fit: cover;
    display: block;
}

.mag-scope .mag-section-duo {
    display: flex;
    gap: 4px;
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 44px;
}

.mag-scope .mag-section-duo .duo-img-left {
    width: 60%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.mag-scope .mag-section-duo .duo-img-right {
    width: 40%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.mag-scope .mag-text-block {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 44px;
    text-align: left;
    font-family: "Montserrat", sans-serif !important;
    font-size: 1.18em !important;
    line-height: 1.3 !important;
    font-weight: 400 !important;
    letter-spacing: 0.004em;
    opacity: 0.92;
}

.mag-scope .mag-text-block p,
.mag-scope .mag-text-block em,
.mag-scope .mag-text-block span {
    font-family: "Montserrat", sans-serif !important;
    font-weight: 400 !important;
}

.mag-scope .mag-text-block .para {
    margin: 0 0 1.6rem 0;
    line-height: 1.3 !important;
    font-family: "Montserrat", sans-serif !important;
}

.mag-scope .mag-text-block .para-bold {
    margin: 0 0 1.6rem 0;
    font-weight: 500 !important;
    opacity: 0.98;
    line-height: 1.3 !important;
    font-family: "Montserrat", sans-serif !important;
}

.mag-scope .mag-text-block .para-last {
    margin: 0;
    line-height: 1.3 !important;
    font-family: "Montserrat", sans-serif !important;
}

.mag-scope .mag-text-block .question {
    margin: 0 0 0.4rem 0;
    line-height: 1.3 !important;
    font-family: "Montserrat", sans-serif !important;
    font-weight: 600 !important;
    color: #eb2985;
    font-size: 0.85em;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mag-scope .mag-text-block .answer {
    margin: 0 0 2.4rem 0;
    line-height: 1.3 !important;
    font-family: "Montserrat", sans-serif !important;
    font-weight: 400 !important;
}

.mag-scope .mag-text-block .answer:last-child {
    margin: 0;
}

.mag-scope .drop-cap {
    overflow: visible;
    padding-top: 10px;
}

.mag-scope .drop-cap::first-letter {
    font-family: "Cormorant Garamond", Georgia, serif !important;
    font-size: 5em;
    font-style: italic;
    font-weight: 600;
    color: #eb2985;
    line-height: 0.8;
    float: left;
    padding: 0 10px 0 0;
    margin-top: -6px;
}

.mag-scope .pink-line {
    max-width: 1080px;
    margin: 28px auto;
    padding: 0 44px;
}

.mag-scope .pink-line-inner {
    height: 1px;
    background: linear-gradient(90deg, #eb2985, rgba(235,41,133,0.08));
    width: 86px;
}

.mag-scope .section-start {
    padding-top: 24px;
}

.mag-scope .img-spacer {
    padding-top: 22px;
}

.mag-scope .signoff {
    max-width: 1080px;
    margin: 0 auto;
    padding: 28px 44px 0 44px;
    text-align: center;
}

.mag-scope .signoff-label {
    font-family: "Montserrat", sans-serif !important;
    font-size: 0.65em;
    letter-spacing: 4px;
    text-transform: uppercase;
    opacity: 0.4;
    margin-bottom: 10px;
}

.mag-scope .signoff-mark {
    color: #eb2985;
    font-size: 1.5em;
    opacity: 0.5;
}

.mag-scope .mag-back {
    padding: 48px 44px 0 44px;
    text-align: center;
    font-family: "Montserrat", sans-serif;
}

.mag-scope .mag-back .back-link {
    color: #eb2985;
    text-decoration: none;
    font-size: 0.9em;
    letter-spacing: 1px;
}

.mag-scope .mag-back .back-link:hover {
    color: #fff;
}


/* =============================================
   .mag-body-v2 OVERRIDE — when wrapping a .mag-scope article
   =============================================
   The V2 article page wraps body HTML in .mag-body-v2 which forces
   a 700px column and 100vw images. Legacy .mag-scope articles bring
   their own width + image rules; we neutralize the V2 constraints
   only when .mag-scope is present (via :has). Articles without
   .mag-scope keep the V2 behavior unchanged.
   ============================================= */

.mag-body-v2:has(.mag-scope) {
    max-width: none;
    padding: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    color: inherit;
}

.mag-body-v2:has(.mag-scope) > p:first-child::first-letter {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    color: inherit;
    font-weight: inherit;
    float: none;
    padding: 0;
    margin: 0;
}

.mag-body-v2:has(.mag-scope) img,
.mag-body-v2:has(.mag-scope) video {
    width: auto;
    max-width: 100%;
    margin-left: 0;
    margin-top: 0;
    margin-bottom: 0;
}

/* Legacy .mag-scope articles ship their own hero, divider, and back button.
   Hide the V2 page chrome to avoid duplicate heroes, divider, and back button. */
.mag-article-v2:has(.mag-scope) .mag-hero-v2,
.mag-article-v2:has(.mag-scope) .mag-divider-v2,
.mag-article-v2:has(.mag-scope) .mag-back-v2 {
    display: none;
}


/* =============================================
   RESPONSIVE — .mag-scope (legacy article body)
   ============================================= */

@media only screen and (max-width: 768px) {
    .mag-scope .mag-hero { min-height: 50vh; }
    .mag-scope .mag-hero-overlay { padding: 34px 20px; }
    .mag-scope .hero-title { font-size: 2.4em; }
    .mag-scope .mag-text-block { padding: 0 20px; font-size: 1.05em !important; }
    .mag-scope .pink-line { padding: 0 20px; margin: 22px auto; }
    .mag-scope .mag-section-image .article-img { max-height: 360px; }
    .mag-scope .mag-section-duo .duo-img-left { height: 280px; }
    .mag-scope .mag-section-duo .duo-img-right { height: 280px; }
    .mag-scope .mag-section-image { padding: 0 20px; }
    .mag-scope .signoff { padding: 22px 20px 0 20px; }
    .mag-scope .mag-back { padding: 40px 20px 0 20px; }
}
