.arya-home {
    --home-navy: #173c3a;
    --home-green: #176d58;
    --home-green-dark: #124f43;
    --home-orange: #df7b32;
    --home-cream: #fbf6ed;
    --home-mint: #eef7f3;
    --home-text: #365a56;
    --home-muted: #617b77;
    overflow: hidden;
    color: var(--home-navy);
    background: #ffffff;
}

.home-container {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

/* Announcement */

.home-announcement {
    color: #ffffff;
    background: var(--home-navy);
}

.announcement-content {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 11px 0;
    overflow-x: auto;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
}

.announcement-content span:not(:last-child)::after {
    margin-left: 30px;
    color: #72aa9e;
    content: "•";
}

/* Hero */

.home-hero {
    position: relative;
    min-height: 710px;
    padding: 85px 0 95px;
    background:
        radial-gradient(
            circle at 10% 15%,
            rgba(223, 123, 50, 0.13),
            transparent 25%
        ),
        linear-gradient(
            135deg,
            #fffaf3 0%,
            #f5faf7 55%,
            #eaf5f0 100%
        );
}

.home-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.home-shape-one {
    top: -170px;
    right: -120px;
    width: 480px;
    height: 480px;
    border: 90px solid rgba(23, 109, 88, 0.05);
}

.home-shape-two {
    bottom: -100px;
    left: -90px;
    width: 270px;
    height: 270px;
    background: rgba(223, 123, 50, 0.07);
}

.home-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(400px, 0.95fr);
    gap: 70px;
    align-items: center;
}

.home-eyebrow,
.home-section-label {
    color: var(--home-orange);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.home-hero-copy h1 {
    max-width: 700px;
    margin: 18px 0 24px;
    font-size: clamp(46px, 6vw, 76px);
    line-height: 1.01;
    letter-spacing: -0.05em;
}

.home-hero-copy h1 span {
    display: block;
    color: var(--home-orange);
}

.home-hero-description {
    max-width: 650px;
    margin: 0;
    color: var(--home-muted);
    font-size: 19px;
    line-height: 1.75;
}

.home-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 30px;
}

.home-primary-button,
.home-secondary-button,
.home-light-button,
.home-program-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 51px;
    padding: 0 23px;
    border-radius: 10px;
    font-weight: 800;
    text-decoration: none;
    transition:
        transform 0.2s ease,
        opacity 0.2s ease;
}

.home-primary-button,
.home-program-button {
    color: #ffffff;
    background: var(--home-orange);
    box-shadow:
        0 12px 28px rgba(223, 123, 50, 0.22);
}

.home-secondary-button {
    border: 1px solid rgba(23, 60, 58, 0.18);
    color: var(--home-navy);
    background: rgba(255, 255, 255, 0.78);
}

.home-primary-button:hover,
.home-secondary-button:hover,
.home-light-button:hover,
.home-program-button:hover {
    transform: translateY(-2px);
}

.home-optional-note {
    margin: 16px 0 0;
    color: var(--home-muted);
    font-size: 12px;
}

.home-hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 11px 18px;
    margin-top: 25px;
    color: var(--home-text);
    font-size: 13px;
    font-weight: 700;
}

/* Hero visual */

.home-hero-visual {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    min-height: 520px;
}

.home-image-circle {
    position: absolute;
    width: 440px;
    height: 440px;
    border-radius: 50%;
    background:
        linear-gradient(
            145deg,
            #f7d8bb,
            #cfe8df
        );
}

.home-image-circle::after {
    position: absolute;
    inset: 25px;
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 50%;
    content: "";
}

.home-instructor-image {
    position: relative;
    z-index: 2;
    width: min(470px, 100%);
    max-height: 530px;
    object-fit: contain;
    object-position: center bottom;
    filter:
        drop-shadow(
            0 24px 25px rgba(23, 60, 58, 0.16)
        );
}

.home-floating-card {
    position: absolute;
    z-index: 4;
    display: flex;
    flex-direction: column;
    padding: 12px 15px;
    border: 1px solid rgba(23, 60, 58, 0.08);
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow:
        0 12px 30px rgba(23, 60, 58, 0.12);
}

.home-floating-card strong {
    font-size: 16px;
}

.home-floating-card span {
    margin-top: 3px;
    color: var(--home-muted);
    font-size: 10px;
}

.home-floating-card-one {
    top: 75px;
    left: -10px;
}

.home-floating-card-two {
    right: -20px;
    bottom: 115px;
}

.home-floating-card-three {
    bottom: 30px;
    left: 30px;
}

/* Statistics */

.home-statistics {
    border-top: 1px solid #e3ece8;
    border-bottom: 1px solid #e3ece8;
    background: #ffffff;
}

.home-statistics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.home-statistic {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 25px;
}

.home-statistic:not(:last-child) {
    border-right: 1px solid #e3ece8;
}

.home-statistic strong {
    color: var(--home-orange);
    font-size: 31px;
}

.home-statistic span {
    color: var(--home-muted);
    font-size: 12px;
    line-height: 1.4;
}

/* Common section rules */

.home-section {
    padding: 92px 0;
}

.home-section-heading {
    max-width: 760px;
    margin: 0 auto 48px;
    text-align: center;
}

.home-section-heading h2,
.home-about-copy h2,
.home-founder-content h2,
.home-schedule-copy h2,
.home-faq-introduction h2 {
    margin: 12px 0 17px;
    font-size: clamp(35px, 4.7vw, 53px);
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.home-section-heading > p,
.home-about-copy > p,
.home-founder-content > p,
.home-schedule-copy > p,
.home-faq-introduction > p {
    color: var(--home-muted);
    line-height: 1.75;
}

.home-text-link {
    display: inline-block;
    margin-top: 12px;
    color: var(--home-green);
    font-weight: 800;
    text-decoration: none;
}

/* About */

.home-about {
    background: #ffffff;
}

.home-about-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(0, 1.1fr);
    gap: 75px;
    align-items: center;
}

.home-pillar-grid {
    display: grid;
    gap: 15px;
}

.home-pillar-card {
    position: relative;
    padding: 25px 27px 25px 80px;
    border: 1px solid #dde8e4;
    border-radius: 17px;
    background: #fbfdfc;
}

.home-pillar-card > span {
    position: absolute;
    top: 25px;
    left: 25px;
    display: grid;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    place-items: center;
    color: #ffffff;
    background: var(--home-green);
    font-size: 11px;
    font-weight: 900;
}

.home-pillar-card h3 {
    margin: 0 0 7px;
    font-size: 20px;
}

.home-pillar-card p {
    margin: 0;
    color: var(--home-muted);
    font-size: 13px;
    line-height: 1.65;
}

/* Benefits */

.home-benefits {
    background: var(--home-cream);
}

.home-benefit-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.home-benefit-card {
    padding: 28px;
    border-radius: 19px;
    background: #ffffff;
    box-shadow:
        0 12px 35px rgba(23, 60, 58, 0.07);
}

.home-benefit-icon {
    display: grid;
    width: 45px;
    height: 45px;
    margin-bottom: 26px;
    border-radius: 13px;
    place-items: center;
    color: var(--home-orange);
    background: #fff0e3;
    font-size: 12px;
    font-weight: 900;
}

.home-benefit-card h3 {
    margin: 0 0 12px;
    font-size: 20px;
    line-height: 1.3;
}

.home-benefit-card p {
    margin: 0;
    color: var(--home-muted);
    font-size: 13px;
    line-height: 1.7;
}

/* Programs */

.home-programs {
    background: #ffffff;
}

.home-program-grid {
    display: grid;
    grid-template-columns:
        repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    align-items: stretch;
}

.home-program-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 30px;
    border: 1px solid #dce7e3;
    border-radius: 21px;
    background: #ffffff;
}

.free-program-card {
    background:
        linear-gradient(
            145deg,
            #fffaf4,
            #f8fdfb
        );
}

.recommended-program {
    border: 2px solid var(--home-orange);
    box-shadow:
        0 18px 45px rgba(223, 123, 50, 0.13);
}

.recommended-label {
    position: absolute;
    top: -13px;
    right: 22px;
    padding: 7px 13px;
    border-radius: 999px;
    color: #ffffff;
    background: var(--home-orange);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.home-program-badge {
    color: var(--home-orange);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.home-program-top h3 {
    margin: 11px 0 12px;
    font-size: 25px;
    line-height: 1.2;
}

.home-program-top p {
    min-height: 66px;
    margin: 0;
    color: var(--home-muted);
    font-size: 13px;
    line-height: 1.65;
}

.home-program-card ul {
    display: grid;
    gap: 10px;
    margin: 24px 0;
    padding: 0;
    color: var(--home-text);
    font-size: 13px;
    list-style: none;
}

.home-program-card li::before {
    margin-right: 8px;
    color: var(--home-green);
    content: "✓";
    font-weight: 900;
}

.home-program-price {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 7px 10px;
    margin-top: auto;
    margin-bottom: 20px;
}

.home-program-price del {
    color: #879895;
}

.home-program-price strong {
    color: var(--home-navy);
    font-size: 31px;
}

.home-program-price span {
    color: var(--home-muted);
    font-size: 10px;
}

.home-program-button {
    width: 100%;
    text-align: center;
}

.home-program-button.secondary {
    border: 1px solid var(--home-green);
    color: var(--home-green);
    background: #ffffff;
    box-shadow: none;
}

/* Founder */

.home-founder {
    background: var(--home-mint);
}

.home-founder-grid {
    display: grid;
    grid-template-columns:
        minmax(320px, 0.8fr)
        minmax(0, 1.2fr);
    gap: 75px;
    align-items: center;
}

.home-founder-image {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    min-height: 470px;
    overflow: hidden;
    border-radius: 30px;
}

.home-founder-background {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            150deg,
            #f2cfad,
            #cde5dc
        );
}

.home-founder-image img {
    position: relative;
    z-index: 2;
    width: 100%;
    max-height: 455px;
    object-fit: contain;
    object-position: center bottom;
}

.home-founder-subtitle {
    color: var(--home-green) !important;
    font-weight: 800;
}

.home-founder-values {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 25px;
}

.home-founder-values span {
    padding: 9px 12px;
    border-radius: 999px;
    color: var(--home-green);
    background: #ffffff;
    font-size: 11px;
    font-weight: 800;
}

/* Why choose */

.home-why {
    color: #ffffff;
    background: var(--home-navy);
}

.light-heading h2 {
    color: #ffffff;
}

.home-why .home-section-label {
    color: #f0a66d;
}

.home-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 17px;
}

.home-why-grid article {
    padding: 27px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
}

.home-why-grid article > span {
    color: #f3a56a;
    font-size: 11px;
    font-weight: 900;
}

.home-why-grid h3 {
    margin: 22px 0 10px;
    color: #ffffff;
    font-size: 20px;
}

.home-why-grid p {
    margin: 0;
    color: rgba(255, 255, 255, 0.67);
    font-size: 13px;
    line-height: 1.7;
}

/* Schedule */

.home-schedule {
    background: #ffffff;
}

.home-schedule-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(0, 1.1fr);
    gap: 70px;
    align-items: center;
}

.home-schedule-cards {
    display: grid;
    gap: 17px;
}

.home-time-card {
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 27px;
    border-radius: 18px;
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            var(--home-green),
            var(--home-green-dark)
        );
    box-shadow:
        0 15px 40px rgba(23, 60, 58, 0.15);
}

.home-time-card:nth-child(2) {
    background:
        linear-gradient(
            135deg,
            var(--home-navy),
            #285c58
        );
}

.time-icon {
    display: grid;
    flex-shrink: 0;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    place-items: center;
    color: var(--home-navy);
    background: #f4ba8b;
    font-size: 25px;
}

.home-time-card small,
.home-time-card strong {
    display: block;
}

.home-time-card small {
    margin-bottom: 6px;
    color: rgba(255, 255, 255, 0.67);
    text-transform: uppercase;
}

.home-time-card strong {
    font-size: 20px;
    letter-spacing: 0.03em;
}

/* Audience */

.home-audience {
    background: var(--home-cream);
}

.home-audience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 17px;
}

.home-audience-grid article {
    padding: 27px;
    border-top: 4px solid var(--home-orange);
    border-radius: 15px;
    background: #ffffff;
}

.home-audience-grid strong {
    font-size: 18px;
}

.home-audience-grid p {
    margin-bottom: 0;
    color: var(--home-muted);
    font-size: 13px;
    line-height: 1.65;
}

/* FAQ */

.home-faq {
    background: #ffffff;
}

.home-faq-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 0.8fr)
        minmax(0, 1.2fr);
    gap: 75px;
    align-items: start;
}

.home-faq-introduction {
    position: sticky;
    top: 30px;
}

.home-faq-list {
    border-top: 1px solid #dce7e3;
}

.home-faq-list details {
    border-bottom: 1px solid #dce7e3;
}

.home-faq-list summary {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 0;
    cursor: pointer;
    color: var(--home-navy);
    font-size: 16px;
    font-weight: 800;
    list-style: none;
}

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

.home-faq-list summary span {
    color: var(--home-orange);
    font-size: 22px;
}

.home-faq-list details[open] summary span {
    transform: rotate(45deg);
}

.home-faq-list details p {
    margin: -5px 0 24px;
    padding-right: 40px;
    color: var(--home-muted);
    font-size: 14px;
    line-height: 1.7;
}

/* Final CTA */

.home-final-cta {
    padding: 80px 0;
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            #173c3a,
            #246356
        );
}

.home-final-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.home-final-cta-inner > div:first-child {
    max-width: 720px;
}

.home-final-cta span {
    color: #a9d7cc;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.home-final-cta h2 {
    margin: 11px 0;
    font-size: clamp(35px, 4.5vw, 52px);
    line-height: 1.08;
}

.home-final-cta p {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
}

.home-final-actions {
    display: flex;
    flex-shrink: 0;
    flex-direction: column;
    gap: 11px;
}

.home-light-button {
    color: var(--home-navy);
    background: #ffffff;
}

/* Tablet */

@media (max-width: 1050px) {
    .home-hero-grid {
        grid-template-columns: 1fr;
    }

    .home-hero-copy {
        max-width: 800px;
    }

    .home-hero-visual {
        max-width: 600px;
        margin: 0 auto;
    }

    .home-benefit-grid,
    .home-audience-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .home-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

/* Small tablet */

@media (max-width: 820px) {
    .home-about-grid,
    .home-founder-grid,
    .home-schedule-grid,
    .home-faq-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .home-faq-introduction {
        position: static;
    }

    .home-statistics-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .home-statistic:nth-child(2) {
        border-right: 0;
    }

    .home-statistic:nth-child(-n + 2) {
        border-bottom: 1px solid #e3ece8;
    }

    .home-final-cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .home-final-actions {
        flex-direction: row;
    }
}

/* Mobile */

@media (max-width: 620px) {
    .home-container {
        width: calc(100% - 28px);
    }

    .home-hero {
        min-height: auto;
        padding: 55px 0 65px;
    }

    .home-hero-copy h1 {
        font-size: 46px;
    }

    .home-hero-description {
        font-size: 17px;
    }

    .home-hero-actions,
    .home-primary-button,
    .home-secondary-button {
        width: 100%;
    }

    .home-hero-visual {
        min-height: 440px;
    }

    .home-image-circle {
        width: 330px;
        height: 330px;
    }

    .home-instructor-image {
        max-height: 420px;
    }

    .home-floating-card {
        padding: 9px 11px;
    }

    .home-floating-card-one {
        top: 70px;
        left: 0;
    }

    .home-floating-card-two {
        right: 0;
        bottom: 90px;
    }

    .home-floating-card-three {
        bottom: 18px;
        left: 10px;
    }

    .home-section {
        padding: 68px 0;
    }

    .home-statistics-grid,
    .home-benefit-grid,
    .home-why-grid,
    .home-audience-grid {
        grid-template-columns: 1fr;
    }

    .home-statistic {
        border-right: 0 !important;
        border-bottom: 1px solid #e3ece8;
    }

    .home-statistic:last-child {
        border-bottom: 0;
    }

    .home-program-top p {
        min-height: auto;
    }

    .home-founder-image {
        min-height: 370px;
    }

    .home-time-card {
        align-items: flex-start;
    }

    .home-time-card strong {
        font-size: 16px;
    }

    .home-final-actions {
        width: 100%;
        flex-direction: column;
    }

    .home-final-actions a {
        width: 100%;
    }

}
/* ========================================
   Production homepage illustrations
======================================== */

/* Hero artwork */

.home-hero-art-panel {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 460px;
}

.home-hero-art {
    display: block;
    width: 100%;
    height: auto;
    border: 1px solid rgba(23, 60, 58, 0.08);
    border-radius: 32px;
    object-fit: cover;
    box-shadow:
        0 28px 70px rgba(23, 60, 58, 0.15);
}

.home-hero-art-panel .home-floating-card-one {
    top: 45px;
    left: -25px;
}

.home-hero-art-panel .home-floating-card-two {
    right: -24px;
    bottom: 90px;
}

.home-hero-art-panel .home-floating-card-three {
    bottom: 20px;
    left: 30px;
}

/* Program card artwork */

.home-program-image {
    position: relative;
    aspect-ratio: 4 / 3;
    margin-bottom: 24px;
    overflow: hidden;
    border-radius: 15px;
    background: #f7eee5;
}

.home-program-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.home-program-card:hover .home-program-image img {
    transform: scale(1.025);
}

/* Mindful living section */

.home-mindful {
    background:
        linear-gradient(
            135deg,
            #fff9f2 0%,
            #edf7f3 100%
        );
}

.home-mindful-grid {
    display: grid;
    grid-template-columns:
        minmax(320px, 0.8fr)
        minmax(0, 1.2fr);
    gap: 75px;
    align-items: center;
}

.home-mindful-image {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    min-height: 520px;
    overflow: hidden;
    border-radius: 30px;
    background:
        linear-gradient(
            145deg,
            #f6d5b9,
            #dcece5
        );
    box-shadow:
        0 20px 55px rgba(23, 60, 58, 0.11);
}

.home-mindful-image img {
    display: block;
    width: 100%;
    height: 100%;
    max-height: 560px;
    object-fit: cover;
    object-position: center;
}

.home-mindful-content h2 {
    margin: 12px 0 18px;
    font-size: clamp(35px, 4.7vw, 53px);
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.home-mindful-content > p {
    color: var(--home-muted);
    line-height: 1.75;
}

.home-mindful-points {
    display: grid;
    gap: 13px;
    margin: 28px 0 18px;
}

.home-mindful-points div {
    padding: 17px 19px;
    border-left: 4px solid var(--home-orange);
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.82);
}

.home-mindful-points strong,
.home-mindful-points span {
    display: block;
}

.home-mindful-points strong {
    margin-bottom: 4px;
    color: var(--home-navy);
}

.home-mindful-points span {
    color: var(--home-muted);
    font-size: 13px;
    line-height: 1.55;
}

/* Community section */

.home-community {
    background: var(--home-mint);
}

.home-community-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 0.85fr)
        minmax(420px, 1.15fr);
    gap: 65px;
    align-items: center;
}

.home-community-content h2 {
    margin: 12px 0 18px;
    font-size: clamp(35px, 4.7vw, 53px);
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.home-community-content > p {
    color: var(--home-muted);
    line-height: 1.75;
}

.home-community-content ul {
    display: grid;
    gap: 11px;
    margin: 25px 0 30px;
    padding: 0;
    list-style: none;
}

.home-community-content li {
    color: var(--home-text);
}

.home-community-content li::before {
    margin-right: 10px;
    color: var(--home-green);
    content: "✓";
    font-weight: 900;
}

.home-community-image {
    overflow: hidden;
    border-radius: 28px;
    background: #f4ddd0;
    box-shadow:
        0 22px 60px rgba(23, 60, 58, 0.13);
}

.home-community-image img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.4s ease;
}

.home-community-image:hover img {
    transform: scale(1.02);
}

/* Tablet */

@media (max-width: 900px) {
    .home-mindful-grid,
    .home-community-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .home-mindful-image {
        max-width: 600px;
        margin-inline: auto;
    }

    .home-community-content {
        order: 2;
    }

    .home-community-image {
        order: 1;
    }
}

/* Mobile */

@media (max-width: 620px) {
    .home-hero-art-panel {
        min-height: 360px;
    }

    .home-hero-art {
        border-radius: 20px;
    }

    .home-hero-art-panel .home-floating-card-one {
        top: 25px;
        left: -5px;
    }

    .home-hero-art-panel .home-floating-card-two {
        right: -4px;
        bottom: 65px;
    }

    .home-hero-art-panel .home-floating-card-three {
        bottom: 8px;
        left: 10px;
    }

    .home-program-image {
        margin-bottom: 20px;
    }

    .home-mindful-image {
        min-height: 410px;
        border-radius: 22px;
    }

    .home-community-image {
        border-radius: 20px;
    }
}

.home-program-image {
    aspect-ratio: 4 / 3;
    margin-bottom: 24px;
    overflow: hidden;
    border-radius: 16px;
    background: #f7eee5;
}

.home-program-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.home-program-card:hover .home-program-image img {
    transform: scale(1.025);
}

@media (max-width: 620px) {
    .home-program-image {
        margin-bottom: 20px;
        border-radius: 14px;
    }
}