.yoga-hero-e98699da {
    padding: 120px 0;
    font-family: 'Manrope', sans-serif;
    overflow: hidden;
}

.yoga-hero-e98699da .yh-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 5fr 6fr;
    gap: 8%;
    align-items: start;
}

/* Left Column - Text */
.yoga-hero-e98699da .yh-col-left {
    padding-top: 40px;
    padding-bottom: 40px;
    display: flex;
    flex-direction: column;
}

.yoga-hero-e98699da .yh-overline {
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    font-weight: 500;
}

.yoga-hero-e98699da .yh-overline::before {
    content: '';
    display: inline-block;
    width: 40px;
    height: 1px;
    margin-right: 15px;
}

.yoga-hero-e98699da .yh-heading {
    font-family: 'Noto Serif', serif;
    font-size: 3.5rem;
    line-height: 1.15;
    font-weight: 400;
    margin: 0 0 40px 0;
    letter-spacing: -0.02em;
}

.yoga-hero-e98699da .yh-body {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 50px;
    opacity: 0.85;
    max-width: 90%;
}

.yoga-hero-e98699da .yh-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.yoga-hero-e98699da .yh-btn {
    display: inline-block;
    padding: 16px 36px;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.yoga-hero-e98699da .yh-primary-btn {
    color: #fff;
}

.yoga-hero-e98699da .yh-primary-btn:hover {
    opacity: 0.9;
}

.yoga-hero-e98699da .yh-secondary-btn {
    border-color: currentColor;
    color: inherit;
    background: transparent;
}

.yoga-hero-e98699da .yh-secondary-btn:hover {
    background: rgba(0,0,0,0.05);
}

.yoga-hero-e98699da .yh-footer-meta {
    display: flex;
    flex-direction: column;
    gap: 15px;
    border-top: 1px solid rgba(0,0,0,0.1);
    padding-top: 30px;
}

.yoga-hero-e98699da .yh-text-link {
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.yoga-hero-e98699da .yh-text-link::after {
    content: '→';
    margin-left: 8px;
    font-family: sans-serif;
}

.yoga-hero-e98699da .yh-micro-line {
    font-size: 13px;
    opacity: 0.6;
    font-style: italic;
    font-family: 'Noto Serif', serif;
}

/* Right Column - Images */
.yoga-hero-e98699da .yh-col-right {
    position: relative;
    padding-top: 80px; /* offset to lower the image */
}

.yoga-hero-e98699da .yh-main-image-wrap {
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
}

.yoga-hero-e98699da .yh-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.yoga-hero-e98699da .yh-secondary-visual {
    position: absolute;
    bottom: -60px;
    left: -100px;
    width: 250px;
    background: inherit;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.yoga-hero-e98699da .yh-sec-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 4/5;
}

.yoga-hero-e98699da .yh-caption {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.5;
    opacity: 0.7;
    padding-left: 15px;
    border-left: 1px solid currentColor;
}

/* Responsive */
@media (max-width: 1024px) {
    .yoga-hero-e98699da .yh-container {
        grid-template-columns: 1fr 1fr;
        gap: 5%;
        padding: 0 30px;
    }
    
    .yoga-hero-e98699da .yh-heading {
        font-size: 2.8rem;
    }
    
    .yoga-hero-e98699da .yh-col-right {
        padding-top: 40px;
    }
    
    .yoga-hero-e98699da .yh-secondary-visual {
        left: -40px;
        bottom: -40px;
        width: 180px;
    }
}

@media (max-width: 767px) {
    .yoga-hero-e98699da {
        padding: 60px 0;
    }

    .yoga-hero-e98699da .yh-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }
    
    .yoga-hero-e98699da .yh-col-left {
        padding-top: 0;
        padding-bottom: 0;
    }
    
    .yoga-hero-e98699da .yh-col-right {
        padding-top: 0;
    }
    
    .yoga-hero-e98699da .yh-heading {
        font-size: 2.2rem;
        margin-bottom: 25px;
    }
    
    .yoga-hero-e98699da .yh-body {
        max-width: 100%;
        margin-bottom: 30px;
    }
    
    .yoga-hero-e98699da .yh-actions {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }
    
    .yoga-hero-e98699da .yh-btn {
        width: 100%;
        text-align: center;
    }
    
    .yoga-hero-e98699da .yh-secondary-visual {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 20px;
        width: 100%;
    }
    
    .yoga-hero-e98699da .yh-sec-img {
        display: none; /* Hide secondary image on mobile for calm layout */
    }
}