.damirica-category-hero {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 400px;
    background-color: #F5F2EA; /* Canvas-Cream from DESIGN.md */
    display: flex;
    align-items: center;
    overflow: hidden;
}

.damirica-category-hero .hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 65%; /* Extends past horizontal center */
    height: 100%;
    z-index: 1;
}

.damirica-category-hero .hero-image-mask {
    width: 100%;
    height: 100%;
    position: relative;
    -webkit-mask-image: linear-gradient(110deg, black 60%, transparent 85%);
    mask-image: linear-gradient(110deg, black 60%, transparent 85%);
}

/* Fallback for diagonal slash look if mask-image isn't enough */
.damirica-category-hero .hero-image-mask::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to left bottom, #F5F2EA 0%, transparent 40%);
    pointer-events: none;
}

.damirica-category-hero .hero-image-mask img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.damirica-category-hero .hero-content-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    z-index: 2;
    padding: 0 10%;
}

.damirica-category-hero .hero-content {
    width: 40%;
    text-align: left;
}

.damirica-category-hero .hero-heading {
    font-family: 'Playfair Display', serif; /* From DESIGN.md */
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #101E36; /* Visual-Navy from DESIGN.md */
    margin-bottom: 24px;
    line-height: 1.1;
    font-weight: 700;
}

.damirica-category-hero .hero-description {
    font-family: 'Inter', sans-serif; /* From DESIGN.md */
    font-size: 1.1rem;
    color: #101E36;
    max-width: 450px;
    line-height: 1.6;
    opacity: 0.9;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .damirica-category-hero {
        height: 50vh;
    }
    .damirica-category-hero .hero-content {
        width: 45%;
    }
}

@media (max-width: 768px) {
    .damirica-category-hero {
        flex-direction: column;
        height: auto;
        min-height: 500px;
        padding-bottom: 60px;
    }
    .damirica-category-hero .hero-image-wrapper {
        position: relative;
        width: 100%;
        height: 300px;
    }
    .damirica-category-hero .hero-image-mask {
        -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
        mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
    }
    .damirica-category-hero .hero-content-wrapper {
        justify-content: center;
        padding: 40px 20px 0;
    }
    .damirica-category-hero .hero-content {
        width: 100%;
        text-align: center;
    }
    .damirica-category-hero .hero-description {
        margin: 0 auto;
    }
}
