/* MaeAlexis Amazon Subscription Pages */

.maesp-page,
.maesp-page *{
    box-sizing:border-box;
}

.maesp-page{
    --maesp-black:#000000;
    --maesp-white:#ffffff;
    --maesp-soft:#f7f7f7;
    --maesp-cream:#fff0cf;
    --maesp-border:#dcdcdc;
    --maesp-text:#202020;
    --maesp-muted:#555555;
    max-width:1180px;
    margin:0 auto;
    padding:18px 0 34px;
    font-family:Inter, Arial, Helvetica, sans-serif;
    color:var(--maesp-text);
}

.maesp-page a{
    text-decoration:none !important;
}

.maesp-hero{
    display:grid;
    grid-template-columns:minmax(320px,.95fr) minmax(0,1.05fr);
    gap:18px;
    align-items:stretch;
    background:var(--maesp-cream);
    border:2px solid var(--maesp-black);
    border-radius:22px;
    padding:clamp(18px,3vw,28px);
}

.maesp-hero__media{
    position:relative;
    min-height:420px;
    overflow:hidden;
    border-radius:18px;
    border:2px solid var(--maesp-black);
    background:#f2f2f2;
}

.maesp-hero__media img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.maesp-hero__badge{
    position:absolute;
    left:16px;
    bottom:16px;
    padding:9px 13px;
    border-radius:999px;
    background:rgba(255,255,255,.92);
    border:1px solid rgba(0,0,0,.16);
    color:#000000;
    font-size:12px;
    font-weight:700;
    line-height:1;
}

.maesp-hero__content{
    min-width:0;
}

.maesp-kicker,
.maesp-label{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    margin:0 0 12px;
    padding:8px 13px;
    border-radius:999px;
    background:var(--maesp-black);
    color:var(--maesp-white);
    font-size:12px;
    font-weight:700;
    line-height:1;
    letter-spacing:.08em;
    text-transform:uppercase;
}

.maesp-label--light{
    background:var(--maesp-white);
    color:var(--maesp-black);
}

.maesp-hero h1,
.maesp-section h2,
.maesp-final h2{
    margin:0;
    color:var(--maesp-black);
    font-family:Georgia, "Times New Roman", serif;
    font-weight:700;
    letter-spacing:-.04em;
}

.maesp-hero h1{
    font-size:clamp(36px,4.8vw,68px);
    line-height:.98;
}

.maesp-lead{
    margin:16px 0 0;
    color:#333333;
    font-size:clamp(15px,1.2vw,18px);
    line-height:1.68;
    max-width:760px;
}

.maesp-actions{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-top:22px;
}

.maesp-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:46px;
    padding:12px 17px;
    border-radius:999px;
    font-size:14px;
    font-weight:700;
    line-height:1;
    transition:all .16s ease;
}

.maesp-btn--dark{
    background:var(--maesp-black);
    border:2px solid var(--maesp-black);
    color:var(--maesp-white) !important;
}

.maesp-btn--dark:hover{
    background:var(--maesp-white);
    color:var(--maesp-black) !important;
}

.maesp-btn--light{
    background:var(--maesp-white);
    border:2px solid var(--maesp-black);
    color:var(--maesp-black) !important;
}

.maesp-btn--light:hover{
    background:var(--maesp-black);
    color:var(--maesp-white) !important;
}

.maesp-btn--dark-invert{
    background:var(--maesp-white);
    border:2px solid var(--maesp-white);
    color:var(--maesp-black) !important;
    white-space:nowrap;
}

.maesp-btn--dark-invert:hover{
    background:transparent;
    color:var(--maesp-white) !important;
}

.maesp-mini-panel{
    margin-top:18px;
    background:#ffffff;
    border:1px solid var(--maesp-border);
    border-radius:16px;
    padding:14px 15px;
}

.maesp-mini-panel strong{
    display:block;
    margin:0 0 7px;
    color:#000000;
    font-size:16px;
    line-height:1.2;
    font-weight:700;
}

.maesp-mini-panel p{
    margin:0;
    color:var(--maesp-muted);
    font-size:14px;
    line-height:1.55;
}

.maesp-disclosure{
    margin:14px 0 0;
    color:#555555;
    font-size:12.5px;
    line-height:1.5;
}

.maesp-section{
    margin-top:18px;
    background:#ffffff;
    border:2px solid var(--maesp-black);
    border-radius:20px;
    padding:clamp(18px,2.4vw,28px);
}

.maesp-head{
    max-width:850px;
    margin:0 0 18px;
}

.maesp-section h2,
.maesp-final h2{
    font-size:clamp(30px,3.5vw,48px);
    line-height:1.03;
}

.maesp-head p:not(.maesp-label){
    margin:12px 0 0;
    color:var(--maesp-muted);
    font-size:15px;
    line-height:1.7;
}

.maesp-benefits,
.maesp-guide{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:13px;
}

.maesp-card,
.maesp-panel,
.maesp-card-link{
    background:var(--maesp-soft);
    border:1px solid var(--maesp-border);
    border-radius:16px;
    padding:16px;
}

.maesp-card span{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:34px;
    height:34px;
    border-radius:50%;
    margin-bottom:13px;
    background:#000000;
    color:#ffffff;
    font-size:12px;
    font-weight:700;
}

.maesp-card h3,
.maesp-panel h3{
    margin:0 0 8px;
    color:#000000;
    font-size:18px;
    line-height:1.22;
    font-weight:700;
}

.maesp-card p,
.maesp-panel p,
.maesp-card-link span{
    margin:0;
    color:var(--maesp-muted);
    font-size:14px;
    line-height:1.6;
}

.maesp-split{
    display:grid;
    grid-template-columns:minmax(0,1.1fr) minmax(280px,.9fr);
    gap:16px;
}

.maesp-split > div > p:not(.maesp-label){
    margin:12px 0 0;
    color:var(--maesp-muted);
    font-size:15px;
    line-height:1.7;
}

.maesp-checks{
    display:grid;
    gap:9px;
    margin:16px 0 0;
    padding:0;
    list-style:none;
}

.maesp-checks li{
    position:relative;
    padding:11px 12px 11px 36px;
    border-radius:12px;
    background:var(--maesp-soft);
    border:1px solid var(--maesp-border);
    color:#333333;
    font-size:14px;
    line-height:1.45;
}

.maesp-checks li:before{
    content:"";
    position:absolute;
    left:13px;
    top:15px;
    width:9px;
    height:9px;
    border-radius:50%;
    background:#000000;
}

.maesp-panel{
    display:flex;
    flex-direction:column;
    justify-content:center;
    background:var(--maesp-cream);
    border:2px solid var(--maesp-black);
}

.maesp-panel a{
    display:inline-flex;
    align-self:flex-start;
    margin-top:14px;
    color:#000000 !important;
    font-weight:700;
    border-bottom:2px solid #000000;
}

.maesp-links{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:12px;
}

.maesp-card-link{
    display:block;
    color:#000000 !important;
    transition:all .16s ease;
}

.maesp-card-link:hover{
    transform:translateY(-2px);
    border-color:#000000;
}

.maesp-card-link strong{
    display:block;
    margin:0 0 8px;
    color:#000000;
    font-size:16px;
    line-height:1.2;
}

.maesp-faq{
    display:grid;
    gap:10px;
}

.maesp-faq details{
    overflow:hidden;
}

.maesp-faq summary{
    cursor:pointer;
    list-style:none;
    margin:0;
    padding:0;
    color:#000000;
    font-size:16px;
    line-height:1.35;
    font-weight:700;
}

.maesp-faq summary::-webkit-details-marker{
    display:none;
}

.maesp-faq details p{
    margin-top:10px;
    color:var(--maesp-muted);
    font-size:14px;
    line-height:1.6;
}

.maesp-final{
    margin-top:18px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;
    background:#000000;
    border:2px solid #000000;
    border-radius:20px;
    padding:clamp(18px,2.4vw,28px);
    color:#ffffff;
}

.maesp-final h2,
.maesp-final p{
    color:#ffffff;
}

.maesp-final p:not(.maesp-label){
    margin:10px 0 0;
    max-width:700px;
    font-size:15px;
    line-height:1.65;
    opacity:.88;
}

@media(max-width:1000px){
    .maesp-hero,
    .maesp-split,
    .maesp-benefits,
    .maesp-guide{
        grid-template-columns:1fr;
    }

    .maesp-links{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

    .maesp-hero__media{
        min-height:320px;
    }
}

@media(max-width:767px){
    .maesp-page{
        padding:12px 0 26px;
    }

    .maesp-hero,
    .maesp-section,
    .maesp-final{
        border-radius:16px;
    }

    .maesp-hero{
        padding:16px;
    }

    .maesp-hero__media{
        min-height:240px;
        order:1;
    }

    .maesp-hero__content{
        order:2;
    }

    .maesp-hero h1{
        font-size:38px;
    }

    .maesp-lead{
        font-size:14.5px;
        line-height:1.6;
    }

    .maesp-btn{
        width:100%;
    }

    .maesp-section{
        padding:17px 15px;
    }

    .maesp-section h2,
    .maesp-final h2{
        font-size:31px;
    }

    .maesp-links{
        grid-template-columns:1fr;
    }

    .maesp-final{
        flex-direction:column;
        align-items:flex-start;
    }

    .maesp-btn--dark-invert{
        width:100%;
    }
}
