/*======================================================================
MANSURGE HOMEPAGE
LUXURY EDITORIAL COMPOSITION
Version: 1.0

Scope:
.ms-homepage only

Purpose:
Page-level visual rhythm and premium composition without changing
the global MC components on Journal / Shop / other layouts.
======================================================================*/

.ms-homepage{
    --ms-home-section-space: clamp(96px, 9vw, 156px);
    --ms-home-section-space-compact: clamp(76px, 7vw, 118px);
    --ms-home-content-max: 1180px;

    position:relative;
    overflow:hidden;

    background:
        radial-gradient(
            circle at 92% 8%,
            rgba(197,165,114,.025),
            transparent 24%
        ),
        var(--ms-bg);
}

.ms-homepage > section{
    position:relative;
    padding-top:var(--ms-home-section-space);
    padding-bottom:var(--ms-home-section-space);
}

.ms-homepage > .ms-hero{
    padding-top:clamp(72px, 7vw, 112px);
    padding-bottom:clamp(88px, 8vw, 132px);
}

.ms-homepage > section + section::before{
    content:"";
    position:absolute;
    top:0;
    left:50%;
    width:min(1180px, calc(100% - 48px));
    height:1px;
    transform:translateX(-50%);
    background:linear-gradient(
        90deg,
        transparent,
        rgba(197,165,114,.11) 20%,
        rgba(197,165,114,.11) 80%,
        transparent
    );
}


/* -------------------------------------------------------------------
Shared editorial headers
------------------------------------------------------------------- */

.ms-homepage :is(
    .ms-why-subtitle,
    .ms-featured-product__eyebrow,
    .ms-category-showcase-subtitle,
    .ms-featured-article-subtitle,
    .ms-article-grid-subtitle,
    .ms-cta-banner-subtitle,
    .ms-newsletter-subtitle
){
    margin-bottom:18px;

    color:var(--ms-gold);

    font-size:.72rem;
    font-weight:650;
    letter-spacing:.18em;
    line-height:1.2;
    text-transform:uppercase;
}

.ms-homepage :is(
    .ms-why-title,
    .ms-featured-product__title,
    .ms-category-showcase-title,
    .ms-featured-article-title,
    .ms-article-grid-title,
    .ms-cta-banner-title,
    .ms-newsletter-title
){
    max-width:760px;

    margin-left:auto;
    margin-right:auto;

    font-size:clamp(2rem, 3.3vw, 3.65rem);
    line-height:1.04;
    letter-spacing:-.035em;
}

.ms-homepage :is(
    .ms-category-showcase-description,
    .ms-featured-article-description,
    .ms-cta-banner-description,
    .ms-newsletter-description
){
    max-width:670px;
    margin-left:auto;
    margin-right:auto;

    color:var(--ms-text-soft);
    line-height:1.75;
}


/* -------------------------------------------------------------------
MC01 — Hero
------------------------------------------------------------------- */

.ms-homepage .ms-hero{
    min-height:min(860px, 88vh);

    background:
        radial-gradient(
            circle at 78% 20%,
            rgba(197,165,114,.045),
            transparent 34%
        ),
        linear-gradient(
            180deg,
            var(--ms-bg) 0%,
            #0B0F0F 100%
        );
}

.ms-homepage .ms-hero-layout{
    grid-template-columns:minmax(0,1fr) minmax(420px,.94fr);
    gap:clamp(64px, 7vw, 112px);
}

.ms-homepage .ms-hero-inner--brand{
    max-width:720px;
}

.ms-homepage .ms-hero-subtitle{
    margin-bottom:34px;
    padding:9px 16px;

    background:rgba(197,165,114,.035);
    border-color:rgba(197,165,114,.24);
}

.ms-homepage .ms-hero-title{
    margin-bottom:36px;
}

.ms-homepage .ms-hero-title-line{
    gap:.20em;
}

.ms-homepage .ms-hero-text{
    max-width:610px;
    margin-bottom:46px;

    color:var(--ms-text-soft);
}

.ms-homepage .ms-hero-divider{
    width:84px;
    margin-top:30px;
    margin-bottom:34px;
    opacity:.48;
}

.ms-homepage .ms-hero-actions{
    gap:14px;
}

.ms-homepage .ms-hero-actions .ms-btn{
    min-width:190px;
}

.ms-homepage .ms-hero-media{
    min-height:600px;

    border:1px solid rgba(197,165,114,.13);
    border-radius:28px;

    box-shadow:
        0 36px 90px rgba(0,0,0,.36),
        0 0 0 1px rgba(255,255,255,.018) inset;
}

.ms-homepage .ms-hero-image{
    min-height:600px;
    transition:transform .7s cubic-bezier(.2,.7,.2,1);
}

@media (hover:hover){
    .ms-homepage .ms-hero-media:hover .ms-hero-image{
        transform:scale(1.018);
    }
}


/* -------------------------------------------------------------------
MC02 — Why Mansurge
------------------------------------------------------------------- */

.ms-homepage .ms-why{
    background:#0A0E0E;
}

.ms-homepage .ms-why-layout{
    grid-template-columns:minmax(270px,.72fr) minmax(0,1.28fr);
    gap:clamp(70px, 9vw, 142px);
    align-items:start;
}

.ms-homepage .ms-why-content{
    position:sticky;
    top:120px;
}

.ms-homepage .ms-why-title{
    margin-left:0;
    max-width:520px;
}

.ms-homepage .ms-why-text{
    max-width:510px;
    color:var(--ms-text-soft);
    line-height:1.8;
}

.ms-homepage .ms-why-divider{
    width:72px;
    opacity:.38;
}

.ms-homepage .ms-why-features{
    display:grid;
    grid-template-columns:1fr;
    gap:0;
}

.ms-homepage .ms-why-card{
    position:relative;

    padding:34px 0 36px 74px;

    border:0;
    border-top:1px solid rgba(197,165,114,.14);
    border-radius:0;

    background:transparent;
    box-shadow:none;
}

.ms-homepage .ms-why-card:last-child{
    border-bottom:1px solid rgba(197,165,114,.14);
}

.ms-homepage .ms-why-card::before{
    content:"0" counter(ms-why);
    counter-increment:ms-why;

    position:absolute;
    left:0;
    top:37px;

    color:var(--ms-gold);

    font-size:.72rem;
    letter-spacing:.12em;
    opacity:.68;
}

.ms-homepage .ms-why-features{
    counter-reset:ms-why;
}

.ms-homepage .ms-why-icon{
    display:none;
}

.ms-homepage .ms-why-card-title{
    margin-bottom:10px;
}

.ms-homepage .ms-why-card-text{
    max-width:620px;
    color:var(--ms-text-soft);
    line-height:1.72;
}


/* -------------------------------------------------------------------
MC05 — Featured Product (Launch)
------------------------------------------------------------------- */

.ms-homepage--launch .ms-featured-product{
    background:
        radial-gradient(
            circle at 16% 40%,
            rgba(197,165,114,.04),
            transparent 30%
        ),
        #090D0D;
}

.ms-homepage .ms-featured-product__grid{
    gap:clamp(64px, 8vw, 124px);
}

.ms-homepage .ms-featured-product__content{
    align-items:center;
}

.ms-homepage .ms-featured-product__body{
    max-width:570px;
}

.ms-homepage .ms-featured-product__title{
    margin-left:0;
}

.ms-homepage .ms-featured-product__subtitle{
    max-width:520px;
    color:var(--ms-text-soft);
    line-height:1.75;
}

.ms-homepage .ms-featured-product__meta{
    gap:16px;
    margin-top:30px;
}

.ms-homepage .ms-featured-product__badge{
    padding:7px 12px;
    background:rgba(197,165,114,.055);
    border-color:rgba(197,165,114,.22);
}

.ms-homepage .ms-featured-product__frame{
    min-height:580px;
    overflow:hidden;

    border-color:rgba(197,165,114,.14);
    border-radius:26px;

    background:
        radial-gradient(
            circle at 50% 24%,
            rgba(197,165,114,.07),
            transparent 42%
        ),
        var(--ms-surface);

    box-shadow:0 30px 70px rgba(0,0,0,.28);
}

.ms-homepage .ms-featured-product__image{
    width:100%;
    height:100%;
    min-height:580px;
    object-fit:cover;
}

.ms-homepage .ms-featured-product__specs{
    border-top-color:rgba(197,165,114,.12);
    border-bottom-color:rgba(197,165,114,.12);
}


/* -------------------------------------------------------------------
MC06 — Shop by Category
------------------------------------------------------------------- */

.ms-homepage .ms-category-showcase-header{
    max-width:850px;
    margin:0 auto clamp(54px, 6vw, 86px);
    text-align:center;
}

.ms-homepage .ms-category-showcase-grid{
    gap:24px;
}

.ms-homepage .ms-category-card{
    min-height:540px;
    overflow:hidden;

    border-color:rgba(197,165,114,.13);
    border-radius:22px;

    background:#0D1212;

    box-shadow:none;

    transition:
        transform .35s ease,
        border-color .35s ease,
        background .35s ease;
}

.ms-homepage .ms-category-image{
    aspect-ratio:4/3;
    overflow:hidden;
}

.ms-homepage .ms-category-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .65s cubic-bezier(.2,.7,.2,1);
}

.ms-homepage .ms-category-content{
    min-height:250px;
    padding:30px 30px 34px;
}

.ms-homepage .ms-category-title{
    margin-bottom:14px;
    font-size:1.35rem;
    letter-spacing:-.02em;
}

.ms-homepage .ms-category-description{
    color:var(--ms-text-soft);
    line-height:1.68;
}

.ms-homepage .ms-category-number{
    left:28px;
    bottom:28px;
}

.ms-homepage .ms-category-link{
    position:absolute;
    right:28px;
    bottom:28px;

    margin:0;
}

@media (hover:hover){
    .ms-homepage .ms-category-card:hover{
        transform:translateY(-5px);
        border-color:rgba(197,165,114,.28);
        background:#101515;
    }

    .ms-homepage .ms-category-card:hover .ms-category-image img{
        transform:scale(1.035);
    }
}

.ms-homepage .ms-category-showcase-footer{
    margin-top:48px;
}


/* -------------------------------------------------------------------
MC07 — Featured Journal
------------------------------------------------------------------- */

.ms-homepage .ms-featured-article{
    background:#0A0E0E;
}

.ms-homepage .ms-featured-article-header{
    margin-bottom:44px;
    text-align:center;
}

/* The article card carries the article title/excerpt.
   Hide the duplicate heading content in the section header. */
.ms-homepage .ms-featured-article-header
:is(.ms-featured-article-title,.ms-featured-article-description){
    display:none;
}

.ms-homepage .ms-featured-article-card{
    overflow:hidden;

    border:1px solid rgba(197,165,114,.14);
    border-radius:26px;

    background:#0D1212;

    box-shadow:0 30px 70px rgba(0,0,0,.20);
}

.ms-homepage .ms-featured-article-grid{
    grid-template-columns:minmax(0,1.12fr) minmax(360px,.88fr);
    min-height:500px;
}

.ms-homepage .ms-featured-article-image{
    min-height:500px;
}

.ms-homepage .ms-featured-article-image img{
    width:100%;
    height:100%;
    min-height:500px;
    object-fit:cover;
}

.ms-homepage .ms-featured-article-content{
    padding:clamp(42px, 5vw, 72px);
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.ms-homepage .ms-featured-article-badge{
    align-self:flex-start;
    margin-bottom:24px;
}

.ms-homepage .ms-featured-article-title-card{
    max-width:520px;

    margin-bottom:20px;

    font-size:clamp(1.7rem, 2.5vw, 2.7rem);
    line-height:1.08;
    letter-spacing:-.03em;
}

.ms-homepage .ms-featured-article-excerpt{
    max-width:520px;
    color:var(--ms-text-soft);
    line-height:1.75;
}

.ms-homepage .ms-featured-article-link{
    margin-top:28px;
}


/* -------------------------------------------------------------------
MC08 — Selected Journal Articles
------------------------------------------------------------------- */

.ms-homepage .ms-article-grid-header{
    max-width:850px;
    margin:0 auto clamp(54px, 6vw, 84px);
    text-align:center;
}

.ms-homepage .ms-article-grid-items{
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:24px;
}

.ms-homepage .ms-article-card{
    min-height:440px;

    border-color:rgba(197,165,114,.12);
    border-radius:20px;

    background:#0D1212;

    box-shadow:none;

    transition:
        transform .35s ease,
        border-color .35s ease;
}

.ms-homepage .ms-article-content{
    min-height:100%;
    padding:30px 30px 64px;
}

.ms-homepage .ms-article-title-card{
    margin-top:14px;
    margin-bottom:16px;

    font-size:1.22rem;
    line-height:1.25;
    letter-spacing:-.02em;
}

.ms-homepage .ms-article-excerpt{
    color:var(--ms-text-soft);
    line-height:1.7;
}

.ms-homepage .ms-article-meta{
    margin-top:auto;
    padding-top:24px;

    border-top:1px solid rgba(197,165,114,.10);
}

.ms-homepage .ms-article-number{
    left:28px;
    bottom:28px;
}

.ms-homepage .ms-article-link{
    position:absolute;
    right:28px;
    bottom:28px;

    margin:0;
}

@media (hover:hover){
    .ms-homepage .ms-article-card:hover{
        transform:translateY(-4px);
        border-color:rgba(197,165,114,.25);
    }
}


/* -------------------------------------------------------------------
MC09 — CTA
------------------------------------------------------------------- */

.ms-homepage .ms-cta-banner{
    padding-top:var(--ms-home-section-space-compact);
    padding-bottom:var(--ms-home-section-space-compact);
}

.ms-homepage .ms-cta-banner-box{
    max-width:980px;
    margin:0 auto;
    padding:clamp(58px, 7vw, 92px);

    border:1px solid rgba(197,165,114,.14);
    border-radius:28px;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(197,165,114,.06),
            transparent 44%
        ),
        #0D1212;

    box-shadow:0 28px 70px rgba(0,0,0,.18);
}

.ms-homepage .ms-cta-banner-content{
    max-width:760px;
    margin:0 auto;
    text-align:center;
}

.ms-homepage .ms-cta-banner-title{
    margin-left:auto;
    margin-right:auto;
}

.ms-homepage .ms-cta-banner-actions{
    justify-content:center;
    margin-top:34px;
}

.ms-homepage .ms-cta-banner-divider{
    display:none;
}


/* -------------------------------------------------------------------
MC10 — Newsletter
------------------------------------------------------------------- */

.ms-homepage .ms-newsletter{
    padding-top:var(--ms-home-section-space-compact);
    padding-bottom:var(--ms-home-section-space);
}

.ms-homepage .ms-newsletter-box{
    max-width:980px;
    margin:0 auto;

    padding:clamp(54px, 7vw, 88px);

    border:1px solid rgba(197,165,114,.12);
    border-radius:28px;

    background:#0B1010;

    box-shadow:none;
}

.ms-homepage .ms-newsletter-content{
    max-width:760px;
    margin:0 auto;
    text-align:center;
}

.ms-homepage .ms-newsletter-title{
    margin-left:auto;
    margin-right:auto;
}

.ms-homepage .ms-newsletter-form{
    width:min(620px,100%);
    margin:34px auto 0;
}

.ms-homepage .ms-newsletter-form :is(input[type="email"],input[type="text"]){
    min-height:54px;

    padding:0 18px;

    color:var(--ms-text);
    background:rgba(255,255,255,.025);

    border:1px solid rgba(197,165,114,.18);
    border-radius:12px;

    outline:none;
}

.ms-homepage .ms-newsletter-form :is(input[type="email"],input[type="text"]):focus{
    border-color:rgba(197,165,114,.52);
    box-shadow:0 0 0 3px rgba(197,165,114,.055);
}

.ms-homepage .ms-newsletter-form :is(button,input[type="submit"]){
    min-height:54px;
}

.ms-homepage .ms-newsletter-note{
    margin-top:18px;
    color:var(--ms-text-muted);
}

.ms-homepage .ms-newsletter-divider{
    display:none;
}


/* -------------------------------------------------------------------
Buttons — restrained premium treatment on Homepage only
------------------------------------------------------------------- */

.ms-homepage .ms-btn{
    min-height:50px;

    padding-inline:24px;

    border-radius:999px;

    font-size:.82rem;
    font-weight:650;
    letter-spacing:.02em;

    transition:
        transform .25s ease,
        background .25s ease,
        border-color .25s ease;
}

@media (hover:hover){
    .ms-homepage .ms-btn:hover{
        transform:translateY(-2px);
    }
}


/* -------------------------------------------------------------------
Responsive
------------------------------------------------------------------- */

@media (max-width:1024px){

    .ms-homepage{
        --ms-home-section-space:clamp(82px, 10vw, 118px);
    }

    .ms-homepage .ms-hero{
        min-height:auto;
    }

    .ms-homepage .ms-hero-layout,
    .ms-homepage .ms-why-layout,
    .ms-homepage .ms-featured-article-grid{
        grid-template-columns:1fr;
    }

    .ms-homepage .ms-why-content{
        position:static;
        max-width:760px;
    }

    .ms-homepage .ms-featured-product__frame,
    .ms-homepage .ms-featured-product__image{
        min-height:480px;
    }

    .ms-homepage .ms-article-grid-items{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }
}


@media (max-width:767px){

    .ms-homepage{
        --ms-home-section-space:78px;
        --ms-home-section-space-compact:64px;
    }

    .ms-homepage > section + section::before{
        width:calc(100% - 32px);
    }

    .ms-homepage .ms-hero-title-line{
        gap:.12em;
        font-size:.88em;
    }

    .ms-homepage .ms-hero-media,
    .ms-homepage .ms-hero-image{
        min-height:390px;
    }

    .ms-homepage .ms-why-card{
        padding-left:54px;
    }

    .ms-homepage .ms-featured-product__frame,
    .ms-homepage .ms-featured-product__image{
        min-height:390px;
    }

    .ms-homepage .ms-category-showcase-grid,
    .ms-homepage .ms-article-grid-items{
        grid-template-columns:1fr;
    }

    .ms-homepage .ms-category-card{
        min-height:auto;
    }

    .ms-homepage .ms-featured-article-image,
    .ms-homepage .ms-featured-article-image img{
        min-height:320px;
    }

    .ms-homepage .ms-cta-banner-box,
    .ms-homepage .ms-newsletter-box{
        border-radius:20px;
    }
}

/* -------------------------------------------------------------------
MC05 — Mobile containment fix
Keeps Featured Product fully inside the mobile viewport.
Homepage-scoped only; global MC05 remains unchanged.
------------------------------------------------------------------- */

@media (max-width:767px){

    .ms-homepage--launch .ms-featured-product,
    .ms-homepage--launch .ms-featured-product__container,
    .ms-homepage--launch .ms-featured-product__grid,
    .ms-homepage--launch .ms-featured-product__content,
    .ms-homepage--launch .ms-featured-product__body,
    .ms-homepage--launch .ms-featured-product__visual,
    .ms-homepage--launch .ms-featured-product__frame{
        width:100%;
        max-width:100%;
        min-width:0;
        box-sizing:border-box;
    }

    .ms-homepage--launch .ms-featured-product__container{
        overflow:hidden;
        padding-left:16px;
        padding-right:16px;
    }

    .ms-homepage--launch .ms-featured-product__grid{
        grid-template-columns:minmax(0,1fr);
        gap:48px;
    }

    .ms-homepage--launch .ms-featured-product__content{
        align-items:stretch;
        overflow:hidden;
        text-align:center;
    }

    .ms-homepage--launch .ms-featured-product__body{
        margin:0 auto;
        overflow:hidden;
    }

    .ms-homepage--launch .ms-featured-product__eyebrow{
        align-self:center;
    }

    .ms-homepage--launch .ms-featured-product__title{
        width:100%;
        max-width:100%;
        min-width:0;

        margin-left:auto;
        margin-right:auto;

        font-size:clamp(1.7rem,8vw,2.15rem);
        line-height:1.08;

        white-space:normal;
        overflow-wrap:anywhere;
        word-break:normal;
        hyphens:auto;
    }

    .ms-homepage--launch .ms-featured-product__subtitle{
        width:100%;
        max-width:100%;
        min-width:0;

        margin-left:auto;
        margin-right:auto;

        white-space:normal;
        overflow-wrap:anywhere;
    }

    .ms-homepage--launch .ms-featured-product__meta{
        width:100%;
        max-width:100%;
        min-width:0;

        justify-content:center;
        flex-wrap:wrap;

        margin-left:auto;
        margin-right:auto;
    }

    .ms-homepage--launch .ms-featured-product__commerce-price,
    .ms-homepage--launch .ms-featured-product__price{
        max-width:100%;
        min-width:0;

        justify-content:center;
        flex-wrap:wrap;

        white-space:normal;
    }

    .ms-homepage--launch .ms-featured-product__commerce-price--range{
        white-space:normal;
    }

    .ms-homepage--launch .ms-featured-product__actions{
        width:100%;
        max-width:100%;
        min-width:0;

        align-items:stretch;
    }

    .ms-homepage--launch .ms-featured-product__actions .ms-btn{
        width:100%;
        max-width:100%;
        min-width:0;

        box-sizing:border-box;
        white-space:normal;
    }

    .ms-homepage--launch .ms-featured-product__visual{
        min-height:0;
    }

    .ms-homepage--launch .ms-featured-product__frame{
        aspect-ratio:1/1;
        min-height:0;

        margin-left:auto;
        margin-right:auto;
    }

    .ms-homepage--launch .ms-featured-product__image{
        width:100%;
        height:100%;
        min-height:0;

        object-fit:cover;
    }

    .ms-homepage--launch .ms-featured-product__specs{
        width:100%;
        max-width:100%;
        min-width:0;

        grid-template-columns:minmax(0,1fr);
    }

}

/* -------------------------------------------------------------------
MC08 — Journal image + compact card refinement
Homepage only.

Selected Reading uses a wider editorial image and natural card height.
If a post has no image, the card remains compact instead of creating
a large empty placeholder area.
------------------------------------------------------------------- */

.ms-homepage .ms-article-card{
    min-height:0;
    height:auto;
}

.ms-homepage .ms-article-image{
    width:100%;
    aspect-ratio:16/10;
    min-height:0;

    background:
        radial-gradient(
            circle at 24% 18%,
            rgba(197,165,114,.07),
            transparent 42%
        ),
        #111616;
}

.ms-homepage .ms-article-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.ms-homepage .ms-article-content{
    height:auto;
    min-height:300px;
    flex:1;
    padding:30px 30px 76px;
}

.ms-homepage .ms-article-card:not(:has(.ms-article-image))
.ms-article-content{
    min-height:360px;
}

@media (max-width:1024px){

    .ms-homepage .ms-article-content{
        min-height:290px;
    }

    .ms-homepage .ms-article-card:not(:has(.ms-article-image))
    .ms-article-content{
        min-height:330px;
    }

}

@media (max-width:767px){

    .ms-homepage .ms-article-image{
        aspect-ratio:16/9;
    }

    .ms-homepage .ms-article-content{
        min-height:0;
        padding:26px 24px 82px;
    }

    .ms-homepage .ms-article-card:not(:has(.ms-article-image))
    .ms-article-content{
        min-height:310px;
    }

}



/* =========================================================
   v1.5 — Real Front Page runtime shell
   ========================================================= */
.ms-homepage-runtime-shell{
	width:100%;
	max-width:none;
	margin:0;
	padding:0;
	background:transparent;
}

body.mansurge-core-owned-homepage #content,
body.mansurge-core-owned-homepage main.site-main,
body.mansurge-core-owned-homepage .site-content{
	width:100%!important;
	max-width:none!important;
	margin:0!important;
	padding:0!important;
	background:#0b1010!important;
}


/* THE MANSURGE EIGHT — homepage teaser with hover-only principle discovery */
.ms-home-eight{
    padding:clamp(76px,8vw,116px) 0;
    border-top:1px solid rgba(197,165,114,.12);
    border-bottom:1px solid rgba(197,165,114,.12);
}
.ms-home-eight-inner{max-width:820px}
.ms-home-eight .ms-h2{margin:14px 0 8px}
.ms-home-eight-descriptor{
    margin:0 0 22px;
    color:var(--ms-gold);
    font-size:clamp(18px,1.8vw,22px);
}
.ms-home-eight .ms-body-lg{
    max-width:680px;
    margin-bottom:30px;
    color:var(--ms-text-soft);
}
.ms-home-eight-motif{
    width:min(100%,330px);
    margin:34px 0 0;
    padding-top:14px;
    border-top:1px solid rgba(197,165,114,.14);
}
.ms-home-eight-word{
    display:grid;
    grid-template-columns:repeat(8,1fr);
    gap:5px;
    color:rgba(197,165,114,.52);
    font-size:12px;
    line-height:1;
    font-weight:700;
    letter-spacing:.06em;
}
.ms-home-eight-word span{
    display:block;
    text-align:center;
    opacity:.24;
    transform:translateY(5px);
    transition:opacity .26s ease,transform .26s ease,color .18s ease;
}
.ms-home-eight.is-visible .ms-home-eight-word span{opacity:.72;transform:none}
.ms-home-eight.is-visible .ms-home-eight-word span:nth-child(1){transition-delay:.00s}
.ms-home-eight.is-visible .ms-home-eight-word span:nth-child(2){transition-delay:.04s}
.ms-home-eight.is-visible .ms-home-eight-word span:nth-child(3){transition-delay:.08s}
.ms-home-eight.is-visible .ms-home-eight-word span:nth-child(4){transition-delay:.12s}
.ms-home-eight.is-visible .ms-home-eight-word span:nth-child(5){transition-delay:.16s}
.ms-home-eight.is-visible .ms-home-eight-word span:nth-child(6){transition-delay:.20s}
.ms-home-eight.is-visible .ms-home-eight-word span:nth-child(7){transition-delay:.24s}
.ms-home-eight.is-visible .ms-home-eight-word span:nth-child(8){transition-delay:.28s}
.ms-home-eight-word span.is-hovered{color:var(--ms-gold);opacity:1}
.ms-home-eight-hover-name{
    min-height:28px;
    padding-top:10px;
    color:var(--ms-gold);
    text-align:center;
    font-size:11px;
    line-height:1;
    font-weight:600;
    letter-spacing:.14em;
    text-transform:uppercase;
}
@media(max-width:760px){
    .ms-home-eight-motif{width:min(100%,260px);margin-top:28px}
    .ms-home-eight-word{font-size:11px}
    .ms-home-eight-hover-name{display:none}
}
@media (hover:none),(pointer:coarse){
    .ms-home-eight-word span{cursor:default}
}
@media(prefers-reduced-motion:reduce){
    .ms-home-eight-word span{opacity:.72;transform:none;transition:none}
}


/* v3.1.61 — Newsletter visual alignment.
   Copy, subtitle, provider form container and privacy note are centered as
   one editorial unit without forcing input text/labels to center. */
.ms-homepage .ms-newsletter-subtitle,
.ms-homepage .ms-newsletter-description,
.ms-homepage .ms-newsletter-note{
    margin-left:auto;
    margin-right:auto;
    text-align:center;
}

.ms-homepage .ms-newsletter-form{
    justify-content:center;
    align-items:center;
    text-align:center;
}

.ms-homepage .ms-newsletter-form > *,
.ms-homepage .ms-newsletter-form iframe,
.ms-homepage .ms-newsletter-form .ml-form-embedContainer,
.ms-homepage .ms-newsletter-form .ml-form-embedWrapper{
    margin-left:auto!important;
    margin-right:auto!important;
}
