﻿.heal-nation-hero {
    background: #ffffff;
    padding: 30px 40px;
}

.hero-card {
    max-width: 1400px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: #fff;
    padding: 40px;
    box-shadow: -7px 0px 10px 0px rgba(0, 0, 0, 0.5);
    /* ❌ REMOVE fixed height */
    height: auto;
}

/* LEFT IMAGE */
.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

    .hero-image img {
        width: 200px;
        max-width: 100%;
        height: auto;
        box-shadow: 9px 7px 10px 0px rgba(0, 0, 0, 0.5);
    }

/* RIGHT CONTENT */
.hero-content {
    flex: 1;
    text-align: center;
}

/* TEXT */
.hero-title {
    font-size: 44px !important;
    font-family: "Oswald", sans-serif !important;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #111;
    text-shadow: 0px 0px 25px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
    text-shadow: 0px 0px 25px rgba(0, 0, 0, 0.3);
}

.hero-date {
    font-size: 18px;
    font-weight: 600;
    text-shadow: 0px 0px 25px rgba(0, 0, 0, 0.3);
}

    .hero-date a {
        color: #111;
        text-decoration: none;
    }

/* =========================
   TABLET (768px)
========================= */
@media (max-width: 768px) {
    .hero-card {
        flex-direction: column;
        padding: 30px;
        gap: 25px;
    }

    .hero-image img {
        width: 160px;
    }

    .hero-title {
        font-size: 30px;
    }
}

/* =========================
   MOBILE SMALL (480px)
========================= */
@media (max-width: 480px) {
    .heal-nation-hero {
        padding: 40px 15px;
    }

    .hero-card {
        padding: 20px;
    }

    .hero-title {
        font-size: 24px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .hero-date {
        font-size: 16px;
    }

    .hero-image img {
        width: 140px;
    }
}
