/* Ayurveda Diploma Course — page styles (extracted from blade) */

/* ===== Intensive Ayurveda — Hero (matches 100hr c1-hero) ===== */
.c1-hero {
    position: relative;
    min-height: 82vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    overflow: hidden;
}

@media (max-width:768px) {
    .c1-hero {
        min-height: 64vh;
    }
}

.c1-hero img.bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.c1-blur {
    position: absolute;
    inset: 0;
    z-index: 1;
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
    -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 42%, transparent 66%);
    mask-image: linear-gradient(90deg, #000 0%, #000 42%, transparent 66%);
}

.c1-grad {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(90deg, rgba(28, 38, 10, .92) 0%, rgba(28, 38, 10, .78) 26%, rgba(28, 38, 10, .45) 52%, rgba(28, 38, 10, .12) 76%, rgba(28, 38, 10, 0) 100%);
}

.c1-herowrap {
    position: relative;
    z-index: 3;
    width: 100%;
}

@media (max-width:768px) {
    .c1-blur {
        -webkit-mask-image: none;
        mask-image: none;
        backdrop-filter: blur(3px);
        -webkit-backdrop-filter: blur(3px);
    }

    .c1-grad {
        background: linear-gradient(180deg, rgba(28, 38, 10, .5) 0%, rgba(28, 38, 10, .85) 100%);
    }
}

.c1-hchips {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-top: 1.5rem;
}

.c1-hchips .c {
    display: inline-flex;
    gap: .4rem;
    align-items: center;
    font-family: var(--font-sans);
    font-size: .72rem;
    font-weight: 600;
    color: #fff;
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 9999px;
    padding: .4rem .9rem;
}

.c1-hchips .c b {
    color: #cfe3ac;
    font-weight: 600;
}

.c1-hero .in {
    position: relative;
    z-index: 3;
    width: min(42rem, 100%);
    padding: 3.6rem 0;
}

.c1-hero .badge-l {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, .5);
    border-radius: 9999px;
    padding: .42rem 1.1rem;
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: #fff;
}

.c1-hero h1 {
    font-family: var(--font-display);
    font-weight: 400;
    font-synthesis-weight: none;
    color: #fff;
    font-size: 2.1rem;
    line-height: 1.18;
    margin: 1rem 0 0;
    text-shadow: 0 2px 18px rgba(0, 0, 0, .35);
}

@media (min-width:768px) {
    .c1-hero h1 {
        font-size: 3rem;
    }
}

.c1-hero .sh {
    font-family: var(--font-sans);
    color: #cfe3ac;
    font-weight: 600;
    letter-spacing: .02em;
    margin: .8rem 0 0;
}

.c1-hero p {
    font-family: var(--font-sans);
    color: rgba(255, 255, 255, .94);
    line-height: 1.85;
    margin: 1rem 0 0;
    max-width: 36rem;
}

.c1-hero .cta {
    margin-top: 1.7rem;
}

.c1-btn {
    display: inline-flex;
    align-items: center;
    background: var(--color-primary);
    color: #fff;
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: .8rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    border-radius: 9999px;
    padding: .9rem 2rem;
    transition: background .25s, transform .25s;
}

.c1-btn:hover {
    background: var(--color-primary-700);
    transform: translateY(-2px);
}

/* ===== Course slider + pricing card (matches 100hr) ===== */
.cb-sec {
    background: linear-gradient(180deg, #fff, var(--color-sage));
    padding: 3.4rem 0;
}

.cb-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1.6rem;
    align-items: stretch;
}

@media (max-width:900px) {
    .cb-grid {
        grid-template-columns: 1fr;
    }
}

.cb-car {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    background: #e7e6df;
    min-height: 380px;
    box-shadow: 0 30px 60px -40px rgba(52, 69, 17, .45);
}

@media (max-width:900px) {
    .cb-car {
        min-height: 0;
        aspect-ratio: 4/3;
    }
}

.cb-car img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity .5s ease;
}

.cb-car img.on {
    opacity: 1;
}

.cb-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .92);
    color: var(--color-primary-900);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    border: none;
    box-shadow: 0 8px 20px -8px rgba(0, 0, 0, .4);
    transition: background .2s;
}

.cb-nav:hover {
    background: #fff;
}

.cb-nav.prev {
    left: 1rem;
}

.cb-nav.next {
    right: 1rem;
}

.cb-dots {
    position: absolute;
    bottom: 1rem;
    left: 0;
    right: 0;
    z-index: 3;
    display: flex;
    gap: .4rem;
    justify-content: center;
}

.cb-dots span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .55);
    cursor: pointer;
    transition: .2s;
}

.cb-dots span.on {
    background: #fff;
    transform: scale(1.2);
}

.cb-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 30px 60px -44px rgba(52, 69, 17, .4);
    display: flex;
    flex-direction: column;
}

.cb-top {
    background: linear-gradient(125deg, var(--color-primary-900) 0%, #3f5717 55%, var(--color-primary-700) 100%);
    color: #fff;
    padding: .85rem 1.6rem;
    text-align: center;
}

.cb-top h3 {
    font-family: var(--font-display);
    font-weight: 400;
    font-synthesis-weight: none;
    color: #fff;
    font-size: 1.5rem;
    line-height: 1.1;
    margin: 0;
}

.cb-body {
    padding: 1rem 1.6rem 1.3rem;
    display: flex;
    flex-direction: column;
}

.cb-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: .5rem 0;
    border-bottom: 1px solid var(--color-border);
}

.cb-row:last-of-type {
    border-bottom: none;
}

.cb-row .k {
    font-family: var(--font-sans);
    font-size: .74rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--color-muted-foreground);
}

.cb-row .v {
    font-family: var(--font-sans);
    color: var(--color-primary-900);
    font-weight: 700;
    font-size: 1rem;
    text-align: right;
}

.cb-fee {
    border-radius: 16px;
    padding: .95rem 1.3rem;
    margin-top: .9rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: radial-gradient(130% 150% at 50% 25%, #5e7d2c 0%, #46621d 46%, #2f4210 100%);
    color: #fff;
    box-shadow: 0 20px 40px -26px rgba(28, 38, 10, .7);
}

.cb-fee .col:first-child {
    text-align: left;
}

.cb-fee .col:last-child {
    text-align: right;
}

.cb-fee .was {
    display: block;
    font-family: var(--font-sans);
    font-size: .95rem;
    text-decoration: line-through;
    color: rgba(255, 255, 255, .6);
    line-height: 1;
    margin-bottom: .2rem;
}

.cb-fee b {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 2.05rem;
    display: block;
    line-height: 1;
    color: #fff;
}

.cb-fee span {
    display: block;
    margin-top: .3rem;
    font-size: .76rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #fff;
}

.cb-fee .div {
    width: 1px;
    height: 44px;
    background: rgba(226, 210, 140, .45);
}

.cb-enroll {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: var(--color-primary);
    color: #fff;
    font-family: var(--font-sans);
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-size: .85rem;
    border-radius: 9999px;
    padding: .85rem;
    margin-top: .85rem;
    transition: background .25s, transform .25s;
}

.cb-enroll:hover {
    background: var(--color-primary-700);
    transform: translateY(-2px);
}

/* ===== Overview — centered text + video (from 100hr beginners) ===== */
.c1-sec {
    padding: 3.2rem 0;
}

.c1-sec.alt {
    background: var(--color-sage);
}

.c1-h2 {
    font-family: var(--font-display);
    font-weight: 400;
    font-synthesis-weight: none;
    color: var(--color-primary-900);
    font-size: 1.85rem;
    line-height: 1.16;
}

@media (min-width:768px) {
    .c1-h2 {
        font-size: 2.25rem;
    }
}

.c1-badge {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(111, 147, 39, .42);
    border-radius: 9999px;
    padding: .42rem 1.1rem;
    font-family: var(--font-sans);
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--color-primary);
}

.c1-head {
    text-align: center;
    margin-bottom: 2.2rem;
}

.c1-head .c1-h2 {
    margin-top: .7rem;
}

.c1-sep {
    display: block;
    width: 200px;
    max-width: 70%;
    height: auto;
    margin: 1rem auto 0;
}

.bc-body {
    margin: 1.6rem auto 0;
    text-align: center;
}

.bc-body p {
    font-family: var(--font-sans);
    color: var(--color-muted-foreground);
    line-height: 1.9;
    margin: 0 0 1.1rem;
    text-align: center;
}

.bc-body p:last-child {
    margin-bottom: 0;
}

.bc-video {
    position: relative;
    margin: 2.2rem auto 0;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 16/9;
    background: #0d1206;
    box-shadow: 0 34px 64px -38px rgba(52, 69, 17, .5);
}

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

.bc-video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.bc-vbtn {
    position: absolute;
    inset: 0;
    border: 0;
    padding: 0;
    cursor: pointer;
    background: transparent;
}

.bc-vbtn::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(20, 28, 8, .10);
    transition: background .25s;
}

.bc-vbtn:hover::after {
    background: rgba(20, 28, 8, 0);
}

.bc-yt {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 68px;
    height: 48px;
    transition: transform .2s;
}

.bc-yt svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 6px 14px rgba(0, 0, 0, .45));
}

.bc-vbtn:hover .bc-yt {
    transform: translate(-50%, -50%) scale(1.08);
}

/* ===== Program details + therapies (arch cards, centered) ===== */
.iat-wrap {
    text-align: center;
}

.iat-wrap .c1-h2 {
    margin: .9rem 0 .8rem;
}

.iat-dur {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-family: var(--font-sans);
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: var(--color-primary-900);
}

.iat-dur svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: var(--color-primary-700);
    stroke-width: 2;
}

.iat-intro {
    margin: 1.2rem 0 0;
}

.iat-intro p,
.iat-close p {
    font-family: var(--font-sans);
    color: var(--color-muted-foreground);
    line-height: 1.95;
    margin: 0 0 1.15rem;
}

.iat-intro b {
    color: var(--color-primary-900);
}

.iat-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.15rem;
    margin: 2.6rem 0 1.6rem;
}

@media (max-width:900px) {
    .iat-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.4rem 1.15rem;
    }
}

@media (max-width:520px) {
    .iat-row {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin-inline: auto;
    }
}

.iat-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 150px 150px 20px 20px;
    padding: 30px .6rem 1.5rem;
    box-shadow: 0 26px 46px -34px rgba(52, 69, 17, .42);
}

.iat-badge {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-primary-900);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.05rem;
    z-index: 3;
    border: 3px solid #fff;
    box-shadow: 0 6px 14px -6px rgba(0, 0, 0, .5);
}

.iat-arch {
    position: relative;
    border-radius: 120px 120px 14px 14px;
    overflow: hidden;
    aspect-ratio: 5/7;
}

.iat-arch img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s;
}

.iat-card:hover .iat-arch img {
    transform: scale(1.05);
}

.iat-name {
    font-family: var(--font-display);
    font-weight: 400;
    font-synthesis-weight: none;
    letter-spacing: .08em;
    color: var(--color-primary-900);
    font-size: 1.02rem;
    margin: 1.05rem 0 .55rem;
}

.iat-ic {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: .55rem;
}

.iat-ic svg {
    width: 30px;
    height: 30px;
    fill: none;
    stroke: var(--color-primary-700);
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.iat-desc {
    color: var(--color-muted-foreground);
    font-size: .82rem;
    line-height: 1.55;
    padding: 0 .35rem;
}

.iat-close {
    margin-top: 1.8rem;
}

/* ===== Why Choose — centered heading + text/image ===== */
.wc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.8rem;
    align-items: center;
}

@media (max-width:860px) {
    .wc-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.wc-text p {
    font-family: var(--font-sans);
    color: var(--color-muted-foreground);
    line-height: 1.95;
    font-size: 1.05rem;
    margin: 0;
}

.wc-frame {
    position: relative;
    padding: 14px;
}

.wc-frame::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid var(--color-primary, #6f9327);
    border-radius: 24px;
}

.wc-img {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--color-border);
    box-shadow: 0 34px 64px -40px rgba(52, 69, 17, .55);
}

.wc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s;
}

.wc-frame:hover .wc-img img {
    transform: scale(1.04);
}

/* ===== Who Is This Course For — Yes/No panels (from 100hr) ===== */
.c1-lead {
    font-family: var(--font-sans);
    color: var(--color-muted-foreground);
    line-height: 1.9;
}

.wf-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 1.6rem;
    align-items: stretch;
    margin-top: 2rem;
}

@media (max-width:760px) {
    .wf-grid {
        grid-template-columns: 1fr;
    }
}

.wf-yes {
    background: linear-gradient(140deg, var(--color-primary-900), var(--color-primary-700));
    color: #fff;
    border-radius: 22px;
    padding: 2rem;
    box-shadow: 0 30px 60px -34px rgba(52, 69, 17, .6);
}

.wf-no {
    background: #fff;
    border: 1px dashed #d7d2c4;
    border-radius: 22px;
    padding: 2rem;
}

.wf-badge-l {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, .4);
    color: #fff;
    border-radius: 9999px;
    padding: .35rem .9rem;
    font-family: var(--font-sans);
    font-size: .64rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.wf-badge-d {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(192, 85, 62, .4);
    color: #c0553e;
    border-radius: 9999px;
    padding: .35rem .9rem;
    font-family: var(--font-sans);
    font-size: .64rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.wf-h {
    font-family: var(--font-display);
    font-weight: 400;
    font-synthesis-weight: none;
    font-size: 1.5rem;
    margin: .7rem 0 1.1rem;
}

.wf-yes .wf-h {
    color: #fff;
}

.wf-no .wf-h {
    color: var(--color-primary-900);
}

.wf-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: .8rem;
}

.wf-list li {
    display: flex;
    gap: .7rem;
    align-items: flex-start;
    font-family: var(--font-sans);
    font-size: .96rem;
    line-height: 1.5;
}

.wf-yes li {
    color: rgba(255, 255, 255, .95);
}

.wf-no li {
    color: var(--color-foreground);
}

.wf-ic {
    flex: 0 0 auto;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: .05rem;
}

.wf-ic svg {
    width: 13px;
    height: 13px;
    fill: none;
    stroke-width: 3;
}

.wf-yes .wf-ic {
    background: rgba(255, 255, 255, .22);
}

.wf-yes .wf-ic svg {
    stroke: #fff;
}

.wf-no .wf-ic {
    background: #c0553e;
}

.wf-no .wf-ic svg {
    stroke: #fff;
}

.wc-feats {
    margin-top: 1.7rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.wc-feat {
    border-left: 2px solid rgba(111, 147, 39, .3);
    padding-left: 1rem;
}

.wc-feat h4 {
    font-family: var(--font-sans);
    font-weight: 700;
    color: var(--color-primary);
    font-size: 1rem;
    margin: 0 0 .28rem;
    letter-spacing: .01em;
}

.wc-feat p {
    margin: 0;
    font-family: var(--font-sans);
    font-size: .95rem;
    line-height: 1.7;
    color: var(--color-muted-foreground);
}

/* ===== Course Curriculum — accordion ===== */
[x-cloak] {
    display: none !important;
}

.cc-acc-wrap {
    margin: 1.6rem auto 0;
}

.cc-acc {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 24px 50px -38px rgba(52, 69, 17, .45);
}

.cc-q {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    text-align: left;
    background: linear-gradient(120deg, var(--color-primary-900), var(--color-primary-700));
    border: 0;
    cursor: pointer;
    padding: 1.1rem 1.6rem;
    font-family: inherit;
}

.cc-q .ico {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .18);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: .95rem;
    flex: 0 0 auto;
}

.cc-q h3 {
    flex: 1;
    margin: 0;
    font-family: var(--font-display);
    font-weight: 400;
    font-synthesis-weight: none;
    font-size: 1.35rem;
    color: #fff;
}

.cc-q .chev {
    flex: 0 0 auto;
    display: flex;
    transition: transform .25s;
}

.cc-q .chev svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: #fff;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.cc-q .chev.open {
    transform: rotate(180deg);
}

.cc-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

@media (max-width:760px) {
    .cc-cols {
        grid-template-columns: 1fr;
    }
}

.cc-col {
    padding: 1.5rem 1.6rem 1.8rem;
}

.cc-col+.cc-col {
    border-left: 1px solid var(--color-border);
}

@media (max-width:760px) {
    .cc-col+.cc-col {
        border-left: 0;
        border-top: 1px solid var(--color-border);
    }
}

.cc-colhead {
    display: flex;
    align-items: center;
    gap: .5rem;
    background: linear-gradient(120deg, var(--color-primary), var(--color-primary-700));
    color: #fff;
    border-radius: 10px;
    padding: .6rem 1.05rem;
    font-family: var(--font-display);
    font-weight: 400;
    font-synthesis-weight: none;
    font-size: 1.2rem;
    margin-bottom: 1.1rem;
}

.cc-colhead::before {
    content: "\2022";
    font-size: 1.1rem;
    line-height: 1;
}

.cc-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: .7rem;
}

.cc-list li {
    display: flex;
    gap: .6rem;
    align-items: flex-start;
    font-family: var(--font-sans);
    font-size: .94rem;
    line-height: 1.5;
    color: var(--color-foreground);
}

.cc-list li img {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    margin-top: .18rem;
}

/* ===== Course Daily Schedule — day accordion + arch photo ===== */
.ds-day {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 16px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 44px -38px rgba(52, 69, 17, .4);
}

.ds-q {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    background: none;
    border: 0;
    cursor: pointer;
    padding: 1rem 1.4rem;
    font-family: inherit;
    text-align: left;
}

.ds-num {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(140deg, var(--color-primary-900), var(--color-primary-700));
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1;
    flex: 0 0 auto;
}

.ds-num small {
    font-size: .5rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    opacity: .9;
    color: #fff !important;
}

.ds-num b {
    font-family: var(--font-display);
    font-weight: 400;
    font-synthesis-weight: none;
    font-size: 1.2rem;
    color: #fff !important;
}

.ds-q h3 {
    flex: 1;
    margin: 0;
    font-family: var(--font-display);
    font-weight: 400;
    font-synthesis-weight: none;
    font-size: 1.28rem;
    color: var(--color-primary-900);
}

.ds-q .pm {
    color: var(--color-primary);
    font-size: 1.5rem;
    line-height: 1;
    transition: transform .2s;
    flex: 0 0 auto;
}

.ds-q .pm.open {
    transform: rotate(45deg);
}

.ds-b {
    padding: 0 1.4rem 1.4rem;
}

.ds-inner {
    border-top: 1px solid var(--color-border);
    padding-top: 1.1rem;
}

.ds-split {
    display: grid;
    grid-template-columns: 1.55fr .95fr;
    gap: 1.7rem;
    align-items: stretch;
}

@media (max-width:760px) {
    .ds-split {
        grid-template-columns: 1fr;
    }
}

.ds-item {
    display: flex;
    gap: .6rem;
    align-items: flex-start;
    font-family: var(--font-sans);
    font-size: .93rem;
    line-height: 1.5;
    color: var(--color-foreground);
    margin: .5rem 0;
}

.ds-item img {
    flex: 0 0 auto;
    width: 17px;
    height: 17px;
    margin-top: .16rem;
}

.ds-grp {
    margin: .9rem 0;
}

.ds-gt {
    font-family: var(--font-sans);
    font-weight: 700;
    color: var(--color-primary-900);
    font-size: .94rem;
    margin-bottom: .5rem;
}

.ds-ol {
    margin: 0;
    padding-left: 0;
    list-style: none;
    counter-reset: g;
    display: grid;
    gap: .4rem;
}

.ds-ol li {
    counter-increment: g;
    display: flex;
    gap: .6rem;
    font-family: var(--font-sans);
    font-size: .89rem;
    color: var(--color-muted-foreground);
    line-height: 1.45;
}

.ds-ol li::before {
    content: counter(g);
    flex: 0 0 auto;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--color-primary);
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ds-pracs {
    margin-top: .5rem;
}

.ds-prac {
    display: inline-flex;
    gap: .4rem;
    background: var(--color-sage);
    color: var(--color-primary-700);
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: .8rem;
    border-radius: 9999px;
    padding: .35rem .8rem;
    margin: .35rem .4rem 0 0;
}

.ds-media {
    display: flex;
    min-height: 100%;
}

.ds-arch {
    position: relative;
    flex: 1 1 auto;
    border-radius: 140px 140px 18px 18px;
    overflow: hidden;
    border: 1px solid var(--color-border);
    box-shadow: 0 26px 50px -36px rgba(52, 69, 17, .5);
}

@media (max-width:760px) {
    .ds-arch {
        flex: 0 0 auto;
        width: 100%;
        aspect-ratio: 16/10;
    }
}

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

.ds-name {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    padding: 1.15rem .8rem .85rem;
    background: linear-gradient(to top, rgba(24, 33, 8, .82), rgba(24, 33, 8, 0));
    color: #fff;
    font-family: var(--font-display);
    font-weight: 400;
    font-synthesis-weight: none;
    font-size: 1.25rem;
    text-align: center;
    letter-spacing: .04em;
}

/* ===== Testimonials (copied from 100hr) ===== */
.c1-btn-o {
    display: inline-flex;
    align-items: center;
    border: 2px solid var(--color-primary);
    color: var(--color-primary-700);
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: .8rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    border-radius: 9999px;
    padding: .82rem 1.7rem;
    transition: background .25s, color .25s;
}

.c1-btn-o:hover {
    background: var(--color-primary);
    color: #fff;
}

.ss-rs {
    position: relative;
    max-width: 56rem;
    margin: -.5rem auto 3rem;
}

.ss-rs .box {
    background: linear-gradient(90deg, rgba(111, 147, 39, .07), rgba(111, 147, 39, .12), rgba(111, 147, 39, .07));
    border: 1px solid rgba(111, 147, 39, .15);
    border-radius: 16px;
    padding: 1.3rem 1.6rem;
    text-align: center;
    box-shadow: 0 4px 12px -6px rgba(52, 69, 17, .2);
}

.ss-rs .tag {
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(111, 147, 39, .92);
    color: #fff;
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    padding: .28rem 1rem;
    border-radius: 9999px;
    white-space: nowrap;
}

.ss-rs p {
    font-family: var(--font-display);
    font-weight: 400;
    color: var(--color-foreground);
    font-size: 1.15rem;
    line-height: 1.6;
    margin: 0;
}

@media (min-width:768px) {
    .ss-rs p {
        font-size: 1.35rem;
    }
}

/* Coverflow carousel */
.ss-carousel {
    width: 100%;
    max-width: 72rem;
    margin: 0 auto;
}

.ss-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

@media (max-width:768px) {
    .ss-flow {
        display: none;
    }
}

.ss-side {
    width: 28%;
    flex-shrink: 0;
    opacity: .6;
    transition: all .5s ease;
    z-index: 0;
}

.ss-side.left {
    transform: translateX(15%) scale(.92);
}

.ss-side.right {
    transform: translateX(-15%) scale(.92);
}

.ss-side .fr {
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(111, 147, 39, .4);
    aspect-ratio: 16/9;
}

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

.ss-center {
    width: 48%;
    flex-shrink: 0;
    z-index: 10;
    transition: all .5s ease;
}

.ss-center .fr {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--color-primary);
    box-shadow: 0 30px 60px -25px rgba(0, 0, 0, .5);
    aspect-ratio: 16/9;
    cursor: pointer;
}

.ss-center img,
.ss-mob img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .7s ease;
}

.ss-center .fr:hover img {
    transform: scale(1.05);
}

.ss-ovl {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(28, 38, 10, .5), transparent 60%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ss-yt {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: #FF0000;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px -6px rgba(0, 0, 0, .5);
    transition: transform .3s ease;
}

.ss-center .fr:hover .ss-yt {
    transform: scale(1.1);
}

.ss-yt svg {
    width: 26px;
    height: 26px;
    fill: #fff;
    margin-left: 2px;
}

.ss-mob {
    display: none;
}

@media (max-width:768px) {
    .ss-mob {
        display: block;
        padding: 0 1rem;
    }
}

.ss-mob .fr {
    position: relative;
    max-width: 24rem;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--color-primary);
    box-shadow: 0 20px 40px -20px rgba(0, 0, 0, .4);
    aspect-ratio: 16/9;
    cursor: pointer;
}

.ss-player {
    max-width: 100%;
    margin: 0 auto;
}

@media (max-width:768px) {
    .ss-player {
        padding: 0 1rem;
    }
}

.ss-player .fr {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--color-primary);
    box-shadow: 0 30px 60px -25px rgba(0, 0, 0, .5);
    aspect-ratio: 16/9;
    background: #000;
}

.ss-player iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.ss-close {
    position: absolute;
    top: .5rem;
    right: .5rem;
    z-index: 20;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0, 0, 0, .7);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    line-height: 1;
}

.ss-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    margin-top: 1.5rem;
}

.ss-dots button {
    height: 10px;
    width: 10px;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all .3s ease;
    background: rgba(111, 147, 39, .3);
}

.ss-dots button:hover {
    background: rgba(111, 147, 39, .5);
}

.ss-dots button.on {
    width: 32px;
    background: var(--color-primary);
}

.ss-cta {
    display: flex;
    gap: .8rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

.tr-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem;
    margin-top: .5rem;
}

@media (max-width:900px) {
    .tr-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:640px) {
    .tr-grid {
        grid-template-columns: 1fr;
    }
}

/* Google-review style card */
.tr-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 14px;
    padding: 1.4rem 1.4rem 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 44px -32px rgba(52, 69, 17, .35);
}

.trg-top {
    display: flex;
    align-items: center;
    gap: .75rem;
}

.trg-av {
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 1.05rem;
}

.trg-id {
    min-width: 0;
}

.trg-nm {
    display: block;
    font-family: var(--font-sans);
    font-weight: 600;
    color: #3c4043;
    font-size: .98rem;
    line-height: 1.2;
}

.trg-sub {
    display: block;
    font-family: var(--font-sans);
    color: #70757a;
    font-size: .8rem;
    margin-top: 1px;
}

.trg-g {
    margin-left: auto;
    flex: 0 0 auto;
}

.trg-g svg {
    width: 22px;
    height: 22px;
    display: block;
}

.trg-row {
    display: flex;
    align-items: center;
    gap: .5rem;
    margin: .9rem 0 .1rem;
}

.trg-stars {
    display: inline-flex;
    gap: 2px;
}

.trg-stars svg {
    width: 18px;
    height: 18px;
    display: block;
}

.trg-rt {
    font-family: var(--font-sans);
    color: #70757a;
    font-size: .8rem;
}

.tr-text {
    font-family: var(--font-sans);
    color: #5f6368;
    line-height: 1.65;
    font-size: .9rem;
    margin: .5rem 0 0;
    flex: 1;
}

.tr-more {
    text-align: center;
    margin-top: 1.9rem;
}

/* Trusted-by carousel */
.tr-carousel {
    position: relative;
    margin-top: .5rem;
    padding: 1rem 0;
}

.tr-viewport {
    overflow: hidden;
}

.tr-track {
    display: flex;
    margin: 0 -.7rem;
    transition: transform .55s cubic-bezier(.4, 0, .2, 1);
}

.tr-slide {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
    padding: 0 .7rem;
    box-sizing: border-box;
}

@media (max-width:900px) {
    .tr-slide {
        flex-basis: 50%;
        max-width: 50%;
    }
}

@media (max-width:640px) {
    .tr-slide {
        flex-basis: 100%;
        max-width: 100%;
    }
}

.tr-slide .tr-card {
    height: 100%;
}

.tr-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    color: var(--color-primary-900);
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 12px 30px -14px rgba(52, 69, 17, .45);
    transition: background .2s, color .2s;
}

.tr-arrow:hover {
    background: var(--color-primary);
    color: #fff;
}

.tr-arrow.prev {
    left: -.2rem;
}

.tr-arrow.next {
    right: -.2rem;
}

@media (max-width:520px) {
    .tr-arrow {
        width: 38px;
        height: 38px;
        font-size: 1.3rem;
    }
}

.tr-dots {
    display: flex;
    gap: .5rem;
    justify-content: center;
    margin-top: 1.4rem;
}

.tr-dots button {
    height: 10px;
    width: 10px;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all .3s ease;
    background: rgba(111, 147, 39, .3);
}

.tr-dots button:hover {
    background: rgba(111, 147, 39, .5);
}

.tr-dots button.on {
    width: 32px;
    background: var(--color-primary);
}

/* ===== What You Will Learn — emerald & gold ===== */
.wl-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    border: 1px solid rgba(111, 147, 39, .5);
    border-radius: 9999px;
    padding: .42rem 1.15rem;
    font-family: var(--font-sans);
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--color-primary-700, #4d6a1a);
    background: rgba(111, 147, 39, .07);
}

.wl-eyebrow::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-primary, #6f9327);
}

.wl-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: .6rem;
}

@media (max-width:860px) {
    .wl-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:560px) {
    .wl-grid {
        grid-template-columns: 1fr;
    }
}

.wl-card {
    position: relative;
    background: linear-gradient(155deg, var(--color-primary-900), #2b3a0e 55%, var(--color-primary-700));
    border-radius: 20px;
    padding: 2rem 1.9rem;
    box-shadow: 0 28px 56px -36px rgba(28, 38, 10, .85);
    transition: transform .45s cubic-bezier(.2, .7, .2, 1);
    overflow: hidden;
    border: 1px solid rgba(111, 147, 39, .18);
}

.wl-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    border: 1px solid transparent;
    transition: border-color .45s;
    pointer-events: none;
}

.wl-card::before {
    content: "";
    position: absolute;
    top: -40%;
    right: -30%;
    width: 70%;
    height: 120%;
    background: radial-gradient(circle, rgba(111, 147, 39, .14), transparent 60%);
    opacity: 0;
    transition: opacity .45s;
}

.wl-card:hover {
    transform: translateY(-7px);
}

.wl-card:hover::after {
    border-color: rgba(111, 147, 39, .55);
}

.wl-card:hover::before {
    opacity: 1;
}

.wl-num {
    font-family: var(--font-display);
    font-weight: 400;
    font-synthesis-weight: none;
    font-size: 2.3rem;
    line-height: 1;
    color: var(--color-primary, #6f9327);
    position: relative;
    z-index: 1;
}

.wl-hair {
    display: block;
    width: 36px;
    height: 1px;
    background: linear-gradient(90deg, var(--color-primary, #6f9327), transparent);
    margin: .35rem 0 .95rem;
    position: relative;
    z-index: 1;
}

.wl-t {
    font-family: var(--font-display);
    font-weight: 400;
    font-synthesis-weight: none;
    color: #fff;
    font-size: 1.24rem;
    margin: 0 0 .55rem;
    position: relative;
    z-index: 1;
}

.wl-d {
    color: rgba(255, 255, 255, .82);
    font-family: var(--font-sans);
    line-height: 1.68;
    font-size: .92rem;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* faq */
.c1-faqs {
    margin: 0 auto;
}

.c1-faqgrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 1.4rem;
    align-items: start;
}

@media (max-width:760px) {
    .c1-faqgrid {
        grid-template-columns: 1fr;
    }
}

.c1-faq {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 14px;
    margin-bottom: .8rem;
    overflow: hidden;
    transition: box-shadow .25s, border-color .25s;
}

.c1-faq.on {
    border-color: rgba(111, 147, 39, .5);
    box-shadow: 0 22px 44px -34px rgba(52, 69, 17, .45);
}

.c1-faq.on .pm {
    transform: rotate(180deg);
}

.c1-fq {
    width: 100%;
    text-align: left;
    background: none;
    border: 0;
    cursor: pointer;
    padding: 1.1rem 1.4rem;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    font-family: var(--font-sans);
    font-weight: 600;
    color: var(--color-primary-900);
    font-size: 1rem;
}

.c1-fq .pm {
    flex: 0 0 auto;
    color: var(--color-primary);
    font-size: 1.3rem;
    line-height: 1;
    transition: transform .2s;
}

.c1-fa {
    padding: 0 1.4rem 1.2rem;
    font-family: var(--font-sans);
    color: var(--color-muted-foreground);
    line-height: 1.8;
    font-size: .94rem;
}

/* terms */
.c1-terms {
    margin: 0 auto;
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: .8rem;
}

.c1-terms li {
    font-family: var(--font-sans);
    color: var(--color-foreground);
    line-height: 1.7;
    display: flex;
    gap: .7rem;
    align-items: flex-start;
}

.c1-terms .tick {
    flex: 0 0 auto;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--color-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .7rem;
    margin-top: .15rem;
}

/* Terms — notice callout */
.tc-box {
    max-width: 980px;
    margin: 1.6rem auto 0;
    background: linear-gradient(180deg, #fff, var(--color-sage));
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 2.2rem 2.6rem;
    box-shadow: 0 26px 50px -40px rgba(52, 69, 17, .5);
}

.tc-ico {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.3rem;
}

.tc-ico svg {
    width: 22px;
    height: 22px;
    stroke: #fff;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.tc-list {
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: tc;
    display: flex;
    flex-direction: column;
    gap: .9rem;
}

.tc-list li {
    counter-increment: tc;
    display: flex;
    gap: .75rem;
    align-items: flex-start;
    font-family: var(--font-sans);
    color: var(--color-foreground);
    font-size: .94rem;
    line-height: 1.65;
}

.tc-list li::before {
    content: counter(tc);
    flex: 0 0 auto;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(111, 147, 39, .16);
    color: var(--color-primary-700);
    font-weight: 700;
    font-size: .78rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

.c1-fq-q {
    display: flex;
    align-items: center;
    gap: .6rem;
}

.c1-fq-ic {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
}

.c1-hero-cta2 {
    display: inline-flex;
    align-items: center;
    margin-left: 1.1rem;
    color: #fff;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: .85rem;
    letter-spacing: .02em;
    border-bottom: 1px solid rgba(255, 255, 255, .55);
    padding-bottom: 2px;
    transition: border-color .2s;
}

.c1-hero-cta2:hover {
    border-color: #fff;
}

@media (max-width:560px) {
    .c1-hero-cta2 {
        margin-left: 0;
        margin-top: .7rem;
    }
}

.mcta {
    display: none;
}

@media (max-width:1023px) {
    .mcta {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 60;
        display: flex;
        gap: .6rem;
        padding: .6rem .8rem calc(.6rem + env(safe-area-inset-bottom));
        background: rgba(255, 255, 255, .97);
        border-top: 1px solid var(--color-border);
        box-shadow: 0 -8px 24px -12px rgba(52, 69, 17, .4);
    }

    .mcta a {
        flex: 1;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 9999px;
        font-family: var(--font-sans);
        font-weight: 700;
        font-size: .85rem;
        letter-spacing: .03em;
        padding: .78rem;
    }

    .mcta-o {
        border: 1.5px solid var(--color-primary);
        color: var(--color-primary-700);
        background: #fff;
    }

    .mcta-p {
        background: var(--color-primary);
        color: #fff;
    }
}

/* ===== Outcomes ===== */
.oc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.3rem;
    margin-top: .5rem;
}

@media (max-width:860px) {
    .oc-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width:560px) {
    .oc-grid {
        grid-template-columns: 1fr;
    }
}

.oc-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 18px;
    padding: 1.6rem 1.7rem;
    box-shadow: 0 22px 46px -38px rgba(52, 69, 17, .4);
    transition: transform .3s, box-shadow .3s;
}

.oc-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 54px -34px rgba(52, 69, 17, .48);
}

.oc-ic {
    width: 38px;
    height: 38px;
    border-radius: 11px;
    background: var(--color-sage);
    color: var(--color-primary-700);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: .9rem;
}

.oc-ic svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.oc-t {
    font-family: var(--font-display);
    font-weight: 400;
    font-synthesis-weight: none;
    color: var(--color-primary-900);
    font-size: 1.18rem;
    margin: 0 0 .45rem;
}

.oc-d {
    color: var(--color-muted-foreground);
    font-family: var(--font-sans);
    line-height: 1.6;
    font-size: .92rem;
    margin: 0;
}

/* ===== Prerequisites / what to bring ===== */
.pb-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: .5rem;
}

@media (max-width:760px) {
    .pb-grid {
        grid-template-columns: 1fr;
    }
}

.pb-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 18px;
    padding: 1.7rem 1.8rem;
    box-shadow: 0 22px 46px -38px rgba(52, 69, 17, .4);
}

.pb-card h3 {
    font-family: var(--font-display);
    font-weight: 400;
    font-synthesis-weight: none;
    color: var(--color-primary-900);
    font-size: 1.3rem;
    margin: 0 0 1.1rem;
    display: flex;
    align-items: center;
    gap: .6rem;
}

.pb-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: .8rem;
}

.pb-list li {
    display: flex;
    gap: .65rem;
    align-items: flex-start;
    font-family: var(--font-sans);
    color: var(--color-foreground);
    line-height: 1.55;
    font-size: .94rem;
}

.pb-list .ck {
    flex: 0 0 auto;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--color-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .7rem;
    margin-top: .1rem;
}

.dl-syllabus {
    gap: .55rem;
    margin-top: 1.4rem;
}

.dl-syllabus svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ===== Daily Routine table ===== */
.dr-wrap {
    width: 100%;
}

.dr-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 1.6rem;
    align-items: stretch;
}

@media (max-width:820px) {
    .dr-grid {
        grid-template-columns: 1fr;
    }
}

.dr-left {
    display: flex;
    flex-direction: column;
}

.dr-left .c1-note {
    margin-top: 1.2rem;
}

.dr-media {
    position: relative;
    min-height: 0;
}

.dr-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    border-radius: 18px;
    display: block;
    border: 1px solid var(--color-border);
    box-shadow: 0 26px 46px -40px rgba(52, 69, 17, .4);
}

@media (max-width:820px) {
    .dr-media {
        position: static;
    }

    .dr-img {
        position: static;
        aspect-ratio: 4/3;
        height: auto;
    }
}

.dr-wrap .c1-tblwrap {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 26px 46px -40px rgba(52, 69, 17, .4);
}

.dr-wrap .c1-tblwrap h4 {
    font-family: var(--font-display);
    font-weight: 400;
    color: #fff;
    background: var(--color-primary-900);
    font-size: 1.1rem;
    margin: 0;
    padding: .9rem 1.4rem;
    text-align: center;
}

.dr-wrap .c1-tbl {
    width: 100%;
    border-collapse: collapse;
}

.dr-wrap .c1-tbl tr {
    border-bottom: 1px solid var(--color-border);
}

.dr-wrap .c1-tbl tr:last-child {
    border-bottom: none;
}

.dr-wrap .c1-tbl tr:nth-child(even) {
    background: var(--color-sage);
}

.dr-wrap .c1-tbl tr.meal {
    background: rgba(111, 147, 39, .14);
}

.dr-wrap .c1-tbl td {
    font-family: var(--font-sans);
    font-size: .9rem;
    padding: .7rem 1.4rem;
    color: var(--color-foreground);
}

.dr-wrap .c1-tbl td:first-child {
    font-weight: 600;
    color: var(--color-primary-700);
    white-space: nowrap;
}

.dr-wrap .c1-note {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 14px;
    padding: 1rem 1.3rem;
    margin-top: 1.2rem;
    font-family: var(--font-sans);
    color: var(--color-muted-foreground);
    line-height: 1.7;
    font-size: .9rem;
    text-align: center;
}

.dr-wrap .c1-note b {
    color: var(--color-primary-900);
}


/* ===== Inclusions — color-block split ===== */
.inc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.7rem;
}

@media (max-width:800px) {
    .inc-grid {
        grid-template-columns: 1fr;
    }
}

.inc-col {
    border-radius: 24px;
    padding: 2rem 1.9rem;
    box-shadow: 0 34px 66px -46px rgba(52, 69, 17, .55);
}

.inc-col.res {
    background: linear-gradient(165deg, var(--color-primary-900), #2b3a0e 60%, var(--color-primary-700));
    color: #fff;
    border: 1px solid rgba(111, 147, 39, .25);
}

.inc-col.non {
    background: #fff;
    border: 1px solid var(--color-border);
}

.inc-kh {
    padding-bottom: 1rem;
    margin-bottom: .7rem;
    border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.inc-col.non .inc-kh {
    border-bottom-color: var(--color-border);
}

.inc-kh h3 {
    font-family: var(--font-display);
    font-weight: 400;
    font-synthesis-weight: none;
    font-size: 1.45rem;
    margin: 0;
}

.inc-col.res .inc-kh h3 {
    color: #fff;
}

.inc-col.non .inc-kh h3 {
    color: var(--color-primary-900);
}

.inc-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.inc-list li {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .55rem 0;
    font-family: var(--font-sans);
    font-size: .95rem;
}

.inc-tk {
    flex: 0 0 auto;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.inc-col.res .inc-tk {
    background: rgba(111, 147, 39, .9);
}

.inc-col.non .inc-tk {
    background: rgba(111, 147, 39, .15);
}

.inc-tk svg {
    width: 13px;
    height: 13px;
    fill: none;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.inc-col.res .inc-tk svg {
    stroke: #fff;
}

.inc-col.non .inc-tk svg {
    stroke: var(--color-primary-700);
}

.inc-col.res .inc-list li {
    color: rgba(255, 255, 255, .92);
}


/* ===== What You Will Learn — icon rail list ===== */
.wyl-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 2.6rem;
    margin: 0 auto;
}

@media (max-width:720px) {
    .wyl-grid {
        grid-template-columns: 1fr;
    }
}

.wyl-item {
    display: flex;
    gap: 1.1rem;
    padding: 1.15rem 0;
    border-bottom: 1px solid var(--color-border);
    align-items: flex-start;
}

.wyl-ic {
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(111, 147, 39, .1);
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 26px -20px rgba(52, 69, 17, .5);
    transition: border-color .3s, background .3s;
}

.wyl-ic img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.wyl-item:hover .wyl-ic {
    border-color: var(--color-primary);
    background: rgba(111, 147, 39, .2);
}

.wyl-t {
    font-family: var(--font-display);
    font-weight: 400;
    font-synthesis-weight: none;
    color: var(--color-primary-900);
    font-size: 1.18rem;
    margin: 0 0 .35rem;
}

.wyl-d {
    font-family: var(--font-sans);
    color: var(--color-muted-foreground);
    line-height: 1.62;
    font-size: .9rem;
    margin: 0;
}


/* ===== Your Transformation — journey path ===== */
.tf-flow {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: stretch;
    gap: .4rem;
    margin-top: 1rem;
}

@media (max-width:820px) {
    .tf-flow {
        grid-template-columns: 1fr;
        gap: 1.6rem;
    }

    .tf-arrow {
        display: none;
    }
}

.tf-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 2.5rem 1.7rem 1.9rem;
    text-align: center;
    box-shadow: 0 26px 52px -42px rgba(52, 69, 17, .5);
}

.tf-num {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--color-primary-700);
    color: #fff;
    font-family: var(--font-display);
    font-synthesis-weight: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: 0 10px 22px -12px rgba(52, 69, 17, .6);
}

.tf-ic {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(150deg, rgba(111, 147, 39, .14), rgba(111, 147, 39, .18));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.1rem;
}

.tf-ic svg {
    width: 30px;
    height: 30px;
    stroke: var(--color-primary-700);
    fill: none;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.tf-t {
    font-family: var(--font-display);
    font-weight: 400;
    font-synthesis-weight: none;
    color: var(--color-primary-900);
    font-size: 1.32rem;
    margin: 0 0 .5rem;
}

.tf-d {
    font-family: var(--font-sans);
    color: var(--color-muted-foreground);
    line-height: 1.7;
    font-size: .92rem;
    margin: 0;
}

.tf-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
}

.tf-arrow svg {
    width: 34px;
    height: 34px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* ===== STED Council Affiliation (two cards) ===== */
.sted-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.6rem;
    align-items: stretch;
}

@media (max-width:900px) {
    .sted-grid {
        grid-template-columns: 1fr;
    }
}

.sted-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 22px;
    box-shadow: 0 30px 60px -46px rgba(52, 69, 17, .5);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.sted-left {
    padding: 2rem 2rem 2.2rem;
}

.sted-left {
    flex: 1;
}

.sted-left h3 {
    font-family: var(--font-display);
    font-weight: 400;
    font-synthesis-weight: none;
    color: var(--color-primary-700);
    font-size: 1.5rem;
    margin: 0 0 1rem;
}

.sted-left .desc {
    font-family: var(--font-sans);
    color: var(--color-muted-foreground);
    line-height: 1.85;
    font-size: .95rem;
    margin: 0 0 1.4rem;
}

.sted-feats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (max-width:520px) {
    .sted-feats {
        grid-template-columns: 1fr;
    }
}

.sted-feat {
    background: var(--color-sage);
    border-left: 3px solid var(--color-primary);
    border-radius: 10px;
    padding: .9rem 1.1rem;
}

.sted-feat h4 {
    font-family: var(--font-sans);
    font-weight: 700;
    color: var(--color-primary-900);
    font-size: .95rem;
    margin: 0 0 .2rem;
}

.sted-feat p {
    font-family: var(--font-sans);
    color: var(--color-muted-foreground);
    font-size: .85rem;
    line-height: 1.45;
    margin: 0;
}

.sted-photo {
    width: 100%;
    border-radius: 16px;
    display: block;
    flex: 1 1 auto;
    min-height: 220px;
    object-fit: cover;
    border: 1px solid var(--color-border);
}

.sted-rhead {
    display: flex;
    align-items: center;
    gap: .9rem;
    background: linear-gradient(135deg, var(--color-primary-700), var(--color-primary));
    color: #fff;
    padding: 1.1rem 1.5rem;
}

.sted-rhead .ic {
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .18);
    display: flex;
    align-items: center;
    justify-content: center;
}

.sted-rhead .ic svg {
    width: 22px;
    height: 22px;
    stroke: #fff;
    fill: none;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.sted-rhead h4 {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 1rem;
    margin: 0 0 .1rem;
    color: #fff;
}

.sted-rhead .sub {
    font-family: var(--font-sans);
    font-size: .78rem;
    color: rgba(255, 255, 255, .85);
}

.sted-cert {
    padding: 1.6rem 1.6rem 0;
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sted-cert img {
    display: block;
    margin: 0 auto;
    width: auto;
    max-width: 100%;
    max-height: 550px;
    border-radius: 10px;
    border: 1px solid var(--color-border);
    box-shadow: 0 20px 44px -30px rgba(0, 0, 0, .4);
}

.sted-cap {
    text-align: center;
    font-family: var(--font-sans);
    color: var(--color-muted-foreground);
    font-size: .9rem;
    line-height: 1.6;
    padding: 1.1rem 1.6rem 1.8rem;
}

.tc-more {
    font-family: var(--font-sans);
    color: var(--color-muted-foreground);
    font-size: .92rem;
    margin: 1.3rem 0 0;
    text-align: center;
}

.tc-more a {
    color: var(--color-primary-700);
    font-weight: 700;
}

.tc-more a:hover {
    text-decoration: underline;
}

.tc-note {
    font-family: var(--font-sans);
    color: var(--color-muted-foreground);
    font-size: .84rem;
    font-style: italic;
    margin: .7rem 0 0;
    text-align: center;
}


/* ===== Breadcrumb ===== */
.bc-nav {
    background: #fff;
    border-bottom: 1px solid var(--color-border);
}

.bc-nav ol {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin: 0;
    padding: .75rem 0;
    font-family: var(--font-sans);
    font-size: .82rem;
    color: var(--color-muted-foreground);
}

.bc-nav li {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.bc-nav li:not(:last-child)::after {
    content: "\203A";
    color: var(--color-border);
}

.bc-nav a {
    color: var(--color-primary-700);
}

.bc-nav a:hover {
    text-decoration: underline;
}

.bc-nav li[aria-current] {
    color: var(--color-primary-900);
    font-weight: 600;
}

/* ===== Eligibility ===== */
.wf-elig {
    margin: 1.8rem auto 0;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 1.4rem 1.7rem;
    box-shadow: 0 22px 46px -40px rgba(52, 69, 17, .4);
}

.wf-elig-h {
    display: inline-block;
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: .7rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--color-primary-700);
    margin-bottom: .7rem;
}

.wf-elig-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .5rem 1.4rem;
}

@media (max-width:640px) {
    .wf-elig-list {
        grid-template-columns: 1fr;
    }
}

.wf-elig-list li {
    position: relative;
    padding-left: 1.4rem;
    font-family: var(--font-sans);
    font-size: .9rem;
    color: var(--color-foreground);
    line-height: 1.5;
}

.wf-elig-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .5em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--color-primary);
}


/* ===== Location & How to Reach ===== */
.loc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.6rem;
    margin: 0 auto;
}

@media (max-width:820px) {
    .loc-grid {
        grid-template-columns: 1fr;
    }
}

.loc-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 18px;
    padding: 1.8rem 1.9rem;
    box-shadow: 0 26px 50px -42px rgba(52, 69, 17, .45);
}

.loc-card h3 {
    font-family: var(--font-display);
    font-weight: 400;
    font-synthesis-weight: none;
    color: var(--color-primary-900);
    font-size: 1.3rem;
    margin: 0 0 1rem;
    display: flex;
    align-items: center;
    gap: .6rem;
}

.loc-card h3 svg {
    width: 22px;
    height: 22px;
    stroke: var(--color-primary);
    fill: none;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.loc-card p {
    font-family: var(--font-sans);
    color: var(--color-muted-foreground);
    line-height: 1.7;
    font-size: 1rem;
    margin: 0 0 .5rem;
}

.loc-card p b {
    color: var(--color-primary-900);
}

.loc-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.loc-list li {
    padding: .6rem 0;
    border-bottom: 1px dashed var(--color-border);
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--color-foreground);
    line-height: 1.55;
}

.loc-list li:last-child {
    border-bottom: none;
}

.loc-list b {
    color: var(--color-primary-900);
}

/* ===== Related courses ===== */
.rc-carousel {
    position: relative;
    margin-top: .4rem;
    padding: 1rem 0;
}

.rc-viewport {
    overflow: hidden;
}

.rc-track {
    display: flex;
    margin: 0 -.7rem;
    transition: transform .55s cubic-bezier(.4, 0, .2, 1);
}

.rc-slide {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
    padding: 0 .7rem;
    box-sizing: border-box;
    display: flex;
}

.rc-slide .rc-card {
    width: 100%;
}

@media (max-width:900px) {
    .rc-slide {
        flex-basis: 50%;
        max-width: 50%;
    }
}

@media (max-width:560px) {
    .rc-slide {
        flex-basis: 100%;
        max-width: 100%;
    }
}

.rc-arrow {
    position: absolute;
    top: 42%;
    transform: translateY(-50%);
    z-index: 4;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    color: var(--color-primary-900);
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 12px 30px -14px rgba(52, 69, 17, .45);
    transition: background .2s, color .2s;
}

.rc-arrow:hover {
    background: var(--color-primary);
    color: #fff;
}

.rc-arrow.prev {
    left: -.4rem;
}

.rc-arrow.next {
    right: -.4rem;
}

@media (max-width:520px) {
    .rc-arrow {
        width: 38px;
        height: 38px;
        font-size: 1.3rem;
    }
}

.rc-dots {
    display: flex;
    gap: .5rem;
    justify-content: center;
    margin-top: 1rem;
}

.rc-dots button {
    height: 10px;
    width: 10px;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    padding: 0;
    background: rgba(52, 69, 17, .18);
    transition: background .2s, width .2s;
}

.rc-dots button.on {
    background: var(--color-primary);
    width: 26px;
}

.rc-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 24px 48px -42px rgba(52, 69, 17, .45);
    transition: transform .3s, box-shadow .3s;
}

.rc-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 34px 60px -36px rgba(52, 69, 17, .5);
}

.rc-img {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.rc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s;
}

.rc-card:hover .rc-img img {
    transform: scale(1.06);
}

.rc-dur {
    position: absolute;
    top: .7rem;
    left: .7rem;
    background: rgba(111, 147, 39, .94);
    color: #fff;
    font-family: var(--font-sans);
    font-size: .68rem;
    font-weight: 700;
    padding: .32rem .7rem;
    border-radius: 9999px;
}

.rc-bd {
    padding: 1.1rem 1.3rem 1.4rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.rc-bd h3 {
    font-family: var(--font-display);
    font-weight: 400;
    font-synthesis-weight: none;
    color: var(--color-primary-900);
    font-size: 1.12rem;
    margin: 0 0 .9rem;
    flex: 1;
}

.rc-link {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    color: var(--color-primary-700);
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: .8rem;
}

.rc-link svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
}



.fac-sec {
    padding: 3.2rem 0;
    background: var(--color-sage);
}

.fac-carousel {
    position: relative;
    margin-top: .4rem;
    padding: 1rem 0;
}

.fac-viewport {
    overflow: hidden;
}

.fac-track {
    display: flex;
    margin: 0 -.7rem;
    transition: transform .55s cubic-bezier(.4, 0, .2, 1);
}

.fac-slide {
    flex: 0 0 25%;
    max-width: 25%;
    padding: 0 .7rem;
    box-sizing: border-box;
}

@media (max-width:900px) {
    .fac-slide {
        flex-basis: 50%;
        max-width: 50%;
    }
}

@media (max-width:560px) {
    .fac-slide {
        flex-basis: 100%;
        max-width: 100%;
    }
}

.fac-card {
    text-align: center;
    padding: .4rem 0 1rem;
}

.fac-photo {
    position: relative;
    width: 130px;
    height: 130px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 0 0 4px rgba(111, 147, 39, .12);
    transition: box-shadow .3s;
}

.fac-card:hover .fac-photo {
    box-shadow: 0 0 0 4px rgba(111, 147, 39, .32);
}

.fac-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.fac-card:hover .fac-photo img {
    transform: scale(1.08);
}

.fac-name {
    font-family: var(--font-display);
    font-weight: 400;
    font-synthesis-weight: none;
    color: var(--color-primary-900);
    font-size: 1.15rem;
    margin: 0;
}

.fac-role {
    font-family: var(--font-sans);
    color: var(--color-primary-700);
    font-weight: 600;
    font-size: .8rem;
    margin: .3rem 0 0;
}

.fac-spec {
    font-family: var(--font-sans);
    color: var(--color-muted-foreground);
    font-size: .8rem;
    margin: .3rem 0 0;
}

.fac-exp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: .65rem;
    background: rgba(111, 147, 39, .14);
    color: var(--color-primary-700);
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: .74rem;
    border-radius: 9999px;
    padding: .32rem .95rem;
}

.fac-arrow {
    position: absolute;
    top: 42%;
    transform: translateY(-50%);
    z-index: 4;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    color: var(--color-primary-900);
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 12px 30px -14px rgba(52, 69, 17, .45);
    transition: background .2s, color .2s;
}

.fac-arrow:hover {
    background: var(--color-primary);
    color: #fff;
}

.fac-arrow.prev {
    left: -.4rem;
}

.fac-arrow.next {
    right: -.4rem;
}

@media (max-width:520px) {
    .fac-arrow {
        width: 38px;
        height: 38px;
        font-size: 1.3rem;
    }
}

.fac-dots {
    display: flex;
    gap: .5rem;
    justify-content: center;
    margin-top: 1rem;
}

.fac-dots button {
    height: 10px;
    width: 10px;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all .3s ease;
    background: rgba(111, 147, 39, .3);
}

.fac-dots button:hover {
    background: rgba(111, 147, 39, .5);
}

.fac-dots button.on {
    width: 32px;
    background: var(--color-primary);
}

.fac-more {
    text-align: center;
    margin-top: 1.6rem;
}


.mem-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 150px;
    gap: 1rem;
    margin-top: 1.8rem;
}

@media (max-width:820px) {
    .mem-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 140px;
    }
}

@media (max-width:520px) {
    .mem-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 230px;
    }
}

.mem-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    border: 4px solid #fff;
    box-shadow: 0 24px 44px -30px rgba(52, 69, 17, .5);
    cursor: pointer;
}

.mem-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .55s ease;
}

/* Center-feature collage spans */
.mem-item.mem-h4 {
    grid-column: 2 / 4;
    grid-row: span 2;
}

.mem-item.mem-h0,
.mem-item.mem-h8,
.mem-item.mem-h9,
.mem-item.mem-h10,
.mem-item.mem-h11 {
    grid-row: span 2;
}

@media (max-width:820px) {
    .mem-item.mem-h4 {
        grid-column: span 2;
    }
}

@media (max-width:520px) {
    .mem-item.mem-h4 {
        grid-column: auto;
        grid-row: auto;
    }

    .mem-item.mem-h0,
    .mem-item.mem-h8,
    .mem-item.mem-h9,
    .mem-item.mem-h10,
    .mem-item.mem-h11 {
        grid-row: auto;
    }
}

.mem-item:hover img {
    transform: scale(1.07);
}

.mem-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(28, 38, 10, .28));
    opacity: 0;
    transition: opacity .35s ease;
}

.mem-item:hover::after {
    opacity: 1;
}

.mem-zoom {
    position: absolute;
    z-index: 2;
    right: .7rem;
    bottom: .7rem;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .9);
    color: var(--color-primary-900);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(6px);
    transition: .35s ease;
    pointer-events: none;
}

.mem-item:hover .mem-zoom {
    opacity: 1;
    transform: translateY(0);
}

.mem-zoom svg {
    width: 18px;
    height: 18px;
}

/* Lightbox */
.mem-lb {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(20, 26, 10, .92);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.mem-lb-img {
    max-width: 92vw;
    max-height: 86vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 40px 90px -20px rgba(0, 0, 0, .75);
}

.mem-lb-btn {
    position: absolute;
    background: rgba(255, 255, 255, .14);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background .2s;
}

.mem-lb-btn:hover {
    background: rgba(255, 255, 255, .3);
}

.mem-lb-close {
    top: 1.1rem;
    right: 1.4rem;
    width: 46px;
    height: 46px;
    font-size: 1.9rem;
    line-height: 1;
}

.mem-lb-nav {
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    font-size: 2rem;
    line-height: 1;
}

.mem-lb-nav.prev {
    left: 1.2rem;
}

.mem-lb-nav.next {
    right: 1.2rem;
}

.mem-lb-count {
    position: absolute;
    bottom: 1.2rem;
    left: 0;
    right: 0;
    text-align: center;
    color: rgba(255, 255, 255, .85);
    font-family: var(--font-sans);
    font-size: .85rem;
    letter-spacing: .05em;
}

@media (max-width:520px) {
    .mem-lb-nav {
        width: 42px;
        height: 42px;
        font-size: 1.6rem;
    }

    .mem-lb-nav.prev {
        left: .5rem;
    }

    .mem-lb-nav.next {
        right: .5rem;
    }
}