/* ==================================================
   Netlics Home Page
   ================================================== */

.home-page {
    min-height: 70vh;
}

/* Announcement bar */

.announcement-bar {
    background:
        linear-gradient(
            90deg,
            rgba(216, 174, 104, 0.13),
            rgba(216, 174, 104, 0.025)
        ),
        #171719;
    border-bottom: 1px solid rgba(216, 174, 104, 0.1);
}

.announcement-inner {
    min-height: 42px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.announcement-inner p,
.announcement-inner a {
    margin: 0;
    color: #d9d7d2;
    font-size: 0.84rem;
}

.announcement-inner a {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 7px;
}

.announcement-inner a:hover {
    color: var(--color-accent);
}

.announcement-inner a span:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.announcement-label {
    color: var(--color-accent);
    font-size: 0.71rem;
    font-weight: 900;
    letter-spacing: 0.13em;
}

.announcement-icon {
    width: 8px;
    height: 8px;
    flex: 0 0 auto;
    border-radius: var(--radius-pill);
    background: var(--color-accent);
    box-shadow: 0 0 0 5px rgba(216, 174, 104, 0.1);
}

/* Editorial masthead */

.home-masthead {
    position: relative;
    overflow: hidden;
    padding: 72px 0 34px;
    background:
        linear-gradient(180deg, rgba(210, 166, 82, 0.025), transparent 72%),
        #0b0b0d;
}

.home-masthead::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(118deg, transparent 0 62%, rgba(210, 166, 82, 0.035) 62.2% 62.45%, transparent 62.7%),
        linear-gradient(122deg, transparent 0 76%, rgba(242, 238, 230, 0.018) 76.15% 76.38%, transparent 76.6%);
}

.home-masthead-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.72fr);
    align-items: stretch;
    gap: 70px;
}

.home-masthead-eyebrow {
    margin: 0 0 12px;
    color: var(--color-accent);
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.17em;
}

.home-masthead h1 {
    max-width: 760px;
    margin: 0;
    color: var(--color-text);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3rem, 6vw, 5.8rem);
    font-weight: 500;
    line-height: 0.98;
    letter-spacing: -0.045em;
}

.home-masthead-panel {
    min-height: 250px;
    position: relative;
    isolation: isolate;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 40px 42px;
    background:
        linear-gradient(115deg, rgba(210, 166, 82, 0.055), transparent 36%),
        linear-gradient(145deg, #171419 0%, #111115 54%, #0b0b0d 100%);
    border-left: 1px solid rgba(210, 166, 82, 0.2);
}

.home-masthead-panel::before {
    content: "";
    position: absolute;
    inset: -18% -8%;
    z-index: -1;
    pointer-events: none;
    background:
        linear-gradient(119deg, transparent 0 42%, rgba(210, 166, 82, 0.1) 42.25% 42.55%, rgba(210, 166, 82, 0.02) 42.8% 46%, transparent 46.35%),
        linear-gradient(123deg, transparent 0 67%, rgba(242, 238, 230, 0.035) 67.2% 67.42%, transparent 67.65%);
    transform: translateX(4%);
}

.home-masthead-panel::after {
    content: "";
    position: absolute;
    right: -12%;
    bottom: -48%;
    width: 70%;
    height: 120%;
    z-index: -2;
    pointer-events: none;
    background: radial-gradient(ellipse at center, rgba(210, 166, 82, 0.12), transparent 67%);
    filter: blur(22px);
}

.home-masthead-description {
    max-width: 520px;
    margin: 0;
    color: rgba(242, 238, 230, 0.72);
    font-size: 1rem;
    line-height: 1.8;
}

/* Featured grid */

.featured-section {
    padding: 28px 0 30px;
}

.featured-section-heading {
    margin-bottom: 22px;
}

.featured-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.85fr) minmax(280px, 0.9fr);
    grid-template-rows: repeat(2, minmax(190px, 1fr));
    gap: 18px;
    min-height: 610px;
}

.featured-grid > .content-card:first-child {
    grid-row: 1 / 3;
}

.featured-grid--count-1 {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(520px, 70vh);
}

.featured-grid--count-1 > .content-card:first-child {
    grid-row: auto;
}

.featured-grid--count-2 {
    grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.8fr);
    grid-template-rows: minmax(470px, 1fr);
    min-height: 520px;
}

.featured-grid--count-2 > .content-card:first-child {
    grid-row: auto;
}

/* Catalogue sections */

.home-content-sections {
    padding: 8px 0 76px;
}

.content-section {
    padding: 54px 0 10px;
}

.content-section:nth-child(even) {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.012), rgba(255, 255, 255, 0));
}

/* Most viewed */

.most-viewed-section {
    padding-top: 66px;
}

/* Latest updates */

.latest-updates-section {
    padding-top: 66px;
}

.latest-updates-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

/* Community CTA */

.community-cta-section {
    padding: 18px 0 88px;
}

.community-cta-card {
    min-height: 360px;
    position: relative;
    isolation: isolate;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.7fr);
    align-items: center;
    gap: clamp(44px, 6vw, 84px);
    padding: 56px;
    background:
        linear-gradient(135deg, #0b0b0d 0%, #151217 56%, #0b0b0d 100%);
    border: 1px solid rgba(216, 174, 104, 0.2);
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-panel);
}

.community-cta-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        linear-gradient(118deg, transparent 0 34%, rgba(216, 174, 104, 0.04) 34.2% 34.5%, transparent 34.75%),
        linear-gradient(121deg, transparent 0 72%, rgba(242, 238, 230, 0.018) 72.2% 72.42%, transparent 72.7%);
}

.community-cta-card::after {
    content: "";
    position: absolute;
    right: -8%;
    bottom: -55%;
    width: 52%;
    height: 150%;
    z-index: -2;
    pointer-events: none;
    background: radial-gradient(ellipse at center, rgba(216, 174, 104, 0.12), transparent 68%);
    filter: blur(24px);
}

.community-cta-content,
.community-cta-art {
    position: relative;
    z-index: 1;
}

.community-cta-content {
    max-width: 710px;
}

.community-cta-eyebrow {
    margin: 0 0 13px;
    color: var(--color-accent);
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.16em;
}

.community-cta-content h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.2rem, 4.5vw, 4rem);
    font-weight: 500;
    line-height: 1.04;
    letter-spacing: -0.035em;
}

.community-cta-content > p:not(.community-cta-eyebrow) {
    max-width: 690px;
    margin: 20px 0 0;
    color: var(--color-muted);
    line-height: 1.75;
}

.community-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.community-cta-art {
    min-height: 250px;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(210, 166, 82, 0.06), transparent 34%),
        linear-gradient(160deg, rgba(242, 238, 230, 0.02), transparent 46%),
        linear-gradient(145deg, #171419, #0c0c0f 72%);
}

.community-cta-art::before {
    content: "";
    position: absolute;
    inset: -24% -18%;
    background:
        linear-gradient(119deg, transparent 0 39%, rgba(210, 166, 82, 0.16) 39.2% 39.45%, rgba(210, 166, 82, 0.025) 39.7% 45%, transparent 45.4%),
        linear-gradient(123deg, transparent 0 62%, rgba(242, 238, 230, 0.045) 62.2% 62.42%, transparent 62.7%);
    transform: translateX(8%);
}

.community-cta-art::after {
    content: "";
    position: absolute;
    right: 10%;
    bottom: 13%;
    width: 44%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(210, 166, 82, 0.58), transparent);
    box-shadow: 0 -42px 0 rgba(210, 166, 82, 0.08);
}

/* Responsive */

@media (max-width: 1000px) {
    .home-masthead-inner {
        gap: 40px;
    }

    .featured-grid {
        grid-template-columns: minmax(0, 1.45fr) minmax(250px, 0.85fr);
        min-height: 560px;
    }

    .community-cta-card {
        grid-template-columns: minmax(0, 1fr) minmax(220px, 0.55fr);
        gap: 34px;
    }
}

@media (max-width: 780px) {
    .home-masthead {
        padding-top: 54px;
    }

    .home-masthead-inner {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 28px;
    }

    .home-masthead-panel {
        min-height: 180px;
        align-items: center;
        padding: 32px 34px;
        border-top: 1px solid rgba(210, 166, 82, 0.16);
        border-left: 0;
    }

    .home-masthead-description {
        max-width: 650px;
    }

    .featured-grid,
    .featured-grid--count-2 {
        grid-template-columns: 1fr;
        grid-template-rows: minmax(440px, 1fr) repeat(2, minmax(240px, 0.55fr));
        min-height: auto;
    }

    .featured-grid > .content-card:first-child,
    .featured-grid--count-2 > .content-card:first-child {
        grid-row: auto;
    }

    .featured-grid--count-1 {
        grid-template-rows: minmax(440px, 65vh);
    }

    .latest-updates-grid {
        grid-template-columns: 1fr;
    }

    .community-cta-card {
        min-height: 0;
        grid-template-columns: 1fr;
        padding: 44px 34px;
    }

    .community-cta-art {
        min-height: 150px;
    }
}

@media (max-width: 560px) {
    .announcement-inner {
        min-height: 48px;
    }

    .announcement-label,
    .announcement-inner a span[aria-hidden="true"] {
        display: none;
    }

    .home-masthead {
        padding: 46px 0 22px;
    }

    .home-masthead h1 {
        font-size: 3.25rem;
    }

    .featured-section {
        padding-top: 22px;
    }

    .featured-grid,
    .featured-grid--count-2 {
        grid-template-rows: minmax(390px, 1fr) repeat(2, minmax(220px, 0.55fr));
        gap: 14px;
    }

    .content-section {
        padding-top: 44px;
    }

    .community-cta-section {
        padding-bottom: 64px;
    }

    .community-cta-card {
        padding: 36px 22px;
    }

    .community-cta-art {
        display: none;
    }

    .community-cta-actions {
        flex-direction: column;
    }

    .community-cta-actions .netlics-button {
        width: 100%;
    }
}


/* ==================================================
   Phase 5: Jinricp-inspired mobile content density
   ================================================== */

@media (max-width: 560px) {
    .home-page .announcement-inner {
        justify-content: center;
        text-align: center;
    }

    .home-page .announcement-inner a {
        max-width: 100%;
        justify-content: center;
    }

    .home-masthead {
        padding: 30px 0 18px;
    }

    .home-masthead-inner {
        gap: 18px;
        text-align: center;
    }

    .home-masthead-eyebrow {
        margin-bottom: 8px;
        font-size: 0.68rem;
    }

    .home-masthead h1 {
        max-width: 390px;
        margin-inline: auto;
        font-size: clamp(2.25rem, 12vw, 3rem);
        line-height: 0.98;
    }

    .home-masthead-panel {
        min-height: 132px;
        padding: 25px 22px;
        text-align: center;
    }

    .home-masthead-description {
        max-width: 360px;
        margin-inline: auto;
        font-size: 0.86rem;
        line-height: 1.65;
    }

    .featured-section {
        padding: 20px 0 8px;
    }

    .featured-section-heading {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        margin-bottom: 16px;
        text-align: center;
    }

    .featured-section-heading .section-title-row {
        justify-content: center;
    }

    .featured-section-heading .section-subtitle {
        margin-left: 0;
    }

    .featured-grid,
    .featured-grid--count-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: auto;
        gap: 10px;
        min-height: 0;
    }

    .featured-grid > .content-card:first-child,
    .featured-grid--count-2 > .content-card:first-child {
        width: 100%;
        max-width: 430px;
        min-height: 360px;
        grid-column: 1 / -1;
        grid-row: auto;
        margin-inline: auto;
    }

    .featured-grid--count-1 {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .featured-grid--count-1 > .content-card:first-child {
        min-height: 360px;
    }

    .featured-grid > .content-card:not(:first-child) {
        min-height: 218px;
    }

    .featured-grid .content-card--featured .card-body {
        padding: 23px 20px;
        text-align: center;
    }

    .featured-grid .content-card--featured .card-category {
        margin-inline: auto;
    }

    .featured-grid .content-card--featured .card-title {
        max-width: 350px;
        margin-inline: auto;
        font-size: 1.72rem;
    }

    .featured-grid .content-card--featured .card-meta,
    .featured-grid .content-card--featured .card-editorial-meta {
        justify-content: center;
    }

    .featured-grid .content-card--overlay .card-body {
        padding: 13px;
    }

    .featured-grid .content-card--overlay .card-title {
        font-size: 0.82rem;
        line-height: 1.32;
    }

    .featured-grid .content-card--overlay .card-category {
        margin-bottom: 5px;
        font-size: 0.63rem;
    }

    .featured-grid .content-card--overlay .card-meta {
        margin-top: 7px;
        font-size: 0.63rem;
    }

    .home-content-sections {
        padding-bottom: 56px;
    }

    .content-section {
        padding-top: 34px;
    }

    .home-page .section-heading {
        align-items: flex-start;
        gap: 10px;
        margin-bottom: 14px;
    }

    .home-page .section-title-row {
        gap: 8px;
    }

    .home-page .section-title-row h2 {
        font-size: 1rem;
    }

    .home-page .section-accent {
        width: 3px;
        height: 20px;
    }

    .home-page .section-subtitle {
        margin: 3px 0 0 11px;
        font-size: 0.72rem;
    }

    .home-page .section-more-link {
        flex: 0 0 auto;
        padding-top: 3px;
        font-size: 0.72rem;
    }

    .home-page .section-tabs {
        flex-wrap: nowrap;
        gap: 7px;
        overflow-x: auto;
        margin: 0 -16px 15px;
        padding: 0 16px 5px;
        scroll-snap-type: x proximity;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .home-page .section-tabs::-webkit-scrollbar {
        display: none;
    }

    .home-page .section-tab {
        min-height: 31px;
        flex: 0 0 auto;
        padding-inline: 11px;
        font-size: 0.7rem;
        scroll-snap-align: start;
    }

    .home-page .content-grid.netlics-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .home-page .content-grid .content-card {
        border-radius: 6px;
    }

    .home-page .content-grid .card-media {
        aspect-ratio: 4 / 3;
    }

    .home-page .content-grid .card-body {
        padding: 10px 9px 11px;
    }

    .home-page .content-grid .card-category {
        margin-bottom: 5px;
        font-size: 0.62rem;
        line-height: 1.25;
    }

    .home-page .content-grid .card-editorial-meta,
    .home-page .content-grid .card-excerpt {
        display: none;
    }

    .home-page .content-grid .card-title {
        font-size: 0.78rem;
        line-height: 1.34;
    }

    .home-page .content-grid .card-meta {
        padding-top: 8px;
        font-size: 0.62rem;
    }

    .latest-updates-section {
        padding-top: 44px;
    }

    .latest-updates-grid {
        gap: 10px;
    }
}


/* ==================================================
   Version 1.1.5: Editorial Utility System
   Functional information replaces decorative empty space.
   ================================================== */

/* Masthead: headline + dynamic editorial index */

.home-masthead {
    padding: clamp(58px, 7vw, 92px) 0 clamp(34px, 4vw, 54px);
    background:
        radial-gradient(circle at 88% 18%, rgba(210, 166, 82, 0.095), transparent 28%),
        radial-gradient(circle at 76% 120%, rgba(80, 29, 39, 0.075), transparent 42%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.012), transparent 48%),
        #0b0b0d;
}

.home-masthead::before {
    inset: -18% -6%;
    background:
        linear-gradient(118deg, transparent 0 68%, rgba(210, 166, 82, 0.055) 68.14% 68.3%, transparent 68.48%),
        linear-gradient(122deg, transparent 0 80%, rgba(242, 238, 230, 0.018) 80.12% 80.24%, transparent 80.4%);
    transform: translateX(2%);
}

.home-masthead-inner {
    grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.82fr);
    align-items: center;
    gap: clamp(58px, 7vw, 110px);
}

.home-masthead-title {
    min-width: 0;
}

.home-editorial-index {
    position: relative;
    min-width: 0;
    padding-left: clamp(28px, 3vw, 42px);
    border-left: 1px solid rgba(210, 166, 82, 0.24);
}

.home-editorial-index::before {
    content: "";
    position: absolute;
    left: -1px;
    top: 0;
    width: 1px;
    height: 72px;
    background: linear-gradient(180deg, var(--color-accent), rgba(210, 166, 82, 0));
    box-shadow: 0 0 22px rgba(210, 166, 82, 0.13);
}

.home-index-kicker,
.home-index-label {
    display: block;
    color: var(--color-accent);
    font-size: 0.67rem;
    font-weight: 900;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.home-index-kicker {
    margin: 0 0 22px;
    color: rgba(242, 238, 230, 0.48);
}

.home-index-section {
    padding: 0 0 20px;
}

.home-index-section + .home-index-section {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.075);
}

.home-index-label {
    margin-bottom: 10px;
}

.home-index-links {
    display: flex;
    flex-wrap: wrap;
    gap: 7px 0;
}

.home-index-links a {
    color: rgba(242, 238, 230, 0.82);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.02rem;
    line-height: 1.4;
}

.home-index-links a:not(:last-child)::after {
    content: "·";
    margin: 0 9px;
    color: rgba(210, 166, 82, 0.52);
}

.home-index-links a:hover,
.home-index-latest:hover strong,
.home-index-explore:hover {
    color: var(--color-accent);
}

.home-index-latest {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    color: var(--color-text);
}

.home-index-latest-copy {
    min-width: 0;
    display: grid;
    gap: 5px;
}

.home-index-latest strong {
    overflow: hidden;
    color: var(--color-text);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1rem, 1.35vw, 1.18rem);
    font-weight: 600;
    line-height: 1.36;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color var(--transition-fast);
}

.home-index-latest small,
.home-index-empty {
    margin: 0;
    color: rgba(242, 238, 230, 0.5);
    font-size: 0.76rem;
    line-height: 1.5;
}

.home-index-arrow {
    flex: 0 0 auto;
    color: var(--color-accent);
    font-size: 1.05rem;
}

.home-index-section--explore {
    padding-bottom: 0;
}

.home-index-explore {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(242, 238, 230, 0.78);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}

/* Community CTA: two functional destinations */

.community-cta-card {
    min-height: 0;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    gap: 0;
    padding: 0;
    background:
        radial-gradient(circle at 88% 16%, rgba(210, 166, 82, 0.13), transparent 30%),
        radial-gradient(circle at 12% 118%, rgba(80, 29, 39, 0.1), transparent 42%),
        linear-gradient(135deg, #0b0b0d 0%, #141116 56%, #0b0b0d 100%);
}

.community-cta-card::before {
    inset: -20% -4%;
    background:
        linear-gradient(118deg, transparent 0 67%, rgba(210, 166, 82, 0.055) 67.16% 67.34%, transparent 67.52%),
        linear-gradient(122deg, transparent 0 79%, rgba(242, 238, 230, 0.018) 79.12% 79.25%, transparent 79.42%);
    transform: translateX(3%);
}

.community-cta-card::after {
    display: none;
}

.community-cta-intro,
.community-destinations {
    position: relative;
    z-index: 1;
}

.community-cta-intro {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(48px, 6vw, 76px);
}

.community-cta-intro h2 {
    max-width: 680px;
    margin: 0;
    color: var(--color-text);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.6rem, 4.8vw, 4.7rem);
    font-weight: 500;
    line-height: 0.99;
    letter-spacing: -0.045em;
    text-wrap: balance;
}

.community-cta-intro > p:not(.community-cta-eyebrow) {
    max-width: 650px;
    margin: 22px 0 0;
    color: var(--color-muted);
    font-size: 0.98rem;
    line-height: 1.78;
}

.community-destinations {
    display: grid;
    grid-template-rows: repeat(2, minmax(0, 1fr));
    border-left: 1px solid rgba(210, 166, 82, 0.18);
}

.community-destination-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 190px;
    padding: clamp(30px, 4vw, 48px);
    color: var(--color-text);
    background: rgba(255, 255, 255, 0.012);
    transition:
        background-color var(--transition-medium),
        color var(--transition-fast);
}

.community-destination-card + .community-destination-card {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.community-destination-card::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, transparent, rgba(210, 166, 82, 0.5), transparent);
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.community-destination-card:hover {
    color: var(--color-text);
    background: rgba(210, 166, 82, 0.045);
}

.community-destination-card:hover::after {
    opacity: 1;
}

.community-destination-kicker {
    color: var(--color-accent);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.15em;
}

.community-destination-card strong {
    max-width: 430px;
    margin-top: 12px;
    color: var(--color-text);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.28rem, 1.8vw, 1.7rem);
    font-weight: 600;
    line-height: 1.22;
}

.community-destination-copy {
    max-width: 430px;
    margin-top: 10px;
    color: rgba(242, 238, 230, 0.58);
    font-size: 0.83rem;
    line-height: 1.65;
}

.community-destination-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 22px;
    color: rgba(242, 238, 230, 0.86);
    font-size: 0.78rem;
    font-weight: 800;
}

.community-destination-link span {
    color: var(--color-accent);
    transition: transform var(--transition-fast);
}

.community-destination-card:hover .community-destination-link span {
    transform: translateX(4px);
}

@media (max-width: 1000px) {
    .home-masthead-inner {
        grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.8fr);
        gap: 48px;
    }

    .community-cta-card {
        grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
    }
}

@media (max-width: 780px) {
    .home-masthead-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .home-editorial-index {
        padding: 25px 0 0;
        border-top: 1px solid rgba(210, 166, 82, 0.2);
        border-left: 0;
    }

    .home-editorial-index::before {
        left: 0;
        top: -1px;
        width: 76px;
        height: 1px;
        background: linear-gradient(90deg, var(--color-accent), rgba(210, 166, 82, 0));
    }

    .home-index-kicker {
        margin-bottom: 18px;
    }

    .community-cta-card {
        grid-template-columns: 1fr;
    }

    .community-destinations {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: none;
        border-top: 1px solid rgba(210, 166, 82, 0.18);
        border-left: 0;
    }

    .community-destination-card + .community-destination-card {
        border-top: 0;
        border-left: 1px solid rgba(255, 255, 255, 0.08);
    }
}

@media (max-width: 560px) {
    .home-masthead {
        padding: 34px 0 24px;
    }

    .home-masthead-inner {
        gap: 21px;
        text-align: center;
    }

    .home-editorial-index {
        max-width: 390px;
        margin-inline: auto;
        padding-top: 19px;
        text-align: left;
    }

    .home-editorial-index::before {
        left: 50%;
        width: 66px;
        transform: translateX(-50%);
        background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
    }

    .home-index-kicker,
    .home-index-section--collections,
    .home-index-section--explore {
        display: none;
    }

    .home-index-section,
    .home-index-section + .home-index-section {
        padding: 0;
        border: 0;
    }

    .home-index-label {
        margin-bottom: 7px;
        text-align: center;
    }

    .home-index-latest {
        justify-content: center;
        gap: 14px;
        text-align: center;
    }

    .home-index-latest strong {
        display: -webkit-box;
        overflow: hidden;
        font-size: 0.95rem;
        white-space: normal;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    .home-index-latest small {
        display: none;
    }

    .community-cta-card {
        text-align: left;
    }

    .community-cta-intro {
        padding: 38px 24px 34px;
    }

    .community-cta-intro h2 {
        max-width: 360px;
        font-size: clamp(2.35rem, 11vw, 3.2rem);
    }

    .community-destinations {
        grid-template-columns: 1fr;
    }

    .community-destination-card {
        min-height: 0;
        padding: 28px 24px 30px;
    }

    .community-destination-card + .community-destination-card {
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        border-left: 0;
    }

    .community-destination-card strong {
        font-size: 1.28rem;
    }

    .community-destination-copy {
        font-size: 0.8rem;
    }
}

.community-destinations--single {
    grid-template-rows: 1fr;
}

@media (max-width: 780px) {
    .community-destinations--single {
        grid-template-columns: 1fr;
    }
}

/* ==================================================
   2026-08-05: Homepage Hero copy
   ================================================== */

.home-masthead-title h1 {
    text-wrap: balance;
}

.home-masthead-title .home-masthead-description {
    max-width: 640px;
    margin: 24px 0 0;
    color: rgba(242, 238, 230, 0.68);
    font-size: clamp(0.94rem, 1.05vw, 1rem);
    line-height: 1.75;
    text-wrap: pretty;
}

@media (max-width: 780px) {
    .home-masthead-title .home-masthead-description {
        max-width: 680px;
        margin-top: 20px;
    }
}

@media (max-width: 560px) {
    .home-masthead-title .home-masthead-description {
        max-width: 350px;
        margin: 16px auto 0;
        font-size: 0.86rem;
        line-height: 1.65;
    }
}


/* ==================================================
   2026-08-05: Focused Community CTA
   ================================================== */

.community-cta-card--focused {
    min-height: 0;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 260px);
    align-items: center;
    gap: clamp(34px, 5vw, 72px);
    padding: clamp(48px, 6vw, 72px);
}

.community-cta-card--focused .community-cta-intro {
    display: block;
    padding: 0;
}

.community-cta-card--focused .community-cta-intro h2 {
    max-width: 840px;
    font-size: clamp(2.35rem, 4.4vw, 4.4rem);
    line-height: 1.02;
    text-wrap: balance;
}

.community-cta-card--focused .community-cta-actions {
    width: 100%;
    display: grid;
    gap: 12px;
    margin: 0;
}

.community-cta-card--focused .community-cta-actions .netlics-button {
    width: 100%;
    min-height: 50px;
}

@media (max-width: 780px) {
    .community-cta-card--focused {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .community-cta-card--focused .community-cta-actions {
        width: auto;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .community-cta-card--focused {
        padding: 36px 22px;
    }

    .community-cta-card--focused .community-cta-intro h2 {
        max-width: 360px;
        font-size: clamp(2.2rem, 10.5vw, 3rem);
    }

    .community-cta-card--focused .community-cta-actions {
        width: 100%;
        grid-template-columns: 1fr;
    }
}
