/* ============================================
   Promo Banner Widget - Responsive Styles
   ============================================ */

.promo-banner-wrap {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    background-color: #8B0000;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    min-height: 260px;
    width: 100%;
    box-sizing: border-box;
}

/* ── Left Content Area ── */
.promo-banner-content {
    flex: 0 0 auto;
    max-width: 55%;
    padding: 30px 30px 30px 40px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 2;
    position: relative;
}

.promo-sub-heading {
    font-size: 1.1rem;
    font-weight: 400;
    color: #ffffff;
    margin: 0;
    line-height: 1.4;
    font-style: italic;
    letter-spacing: 0.02em;
}

.promo-main-heading {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ffffff;
    margin: 0;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 0.01em;
}

/* ── CTA Button ── */
.promo-btn {
    display: inline-block;
    background-color: #ffffff;
    color: #8B0000;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 32px;
    border-radius: 50px;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    white-space: nowrap;
    align-self: flex-start;
    margin-top: 6px;
    letter-spacing: 0.02em;
}

.promo-btn:hover {
    background-color: #6a0000;
    color: #ffffff;
    transform: translateY(-2px);
    text-decoration: none;
}

/* ── Right Image Area ── */
.promo-banner-image {
    flex: 0 0 auto;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    max-width: 50%;
    z-index: 1;
    overflow: visible;
}

.promo-banner-image img {
    display: block;
    max-height: 340px;
    width: auto;
    object-fit: contain;
    /* Image floats up above banner */
    margin-bottom: 0;
    margin-top: -40px;
    filter: drop-shadow(0 8px 24px rgba(0,0,0,0.25));
    transition: transform 0.3s ease;
}

.promo-banner-wrap:hover .promo-banner-image img {
    transform: translateY(-4px);
}

/* ============================================
   TABLET — max 1024px
   ============================================ */
@media (max-width: 1024px) {
    .promo-main-heading {
        font-size: 2rem;
    }
    .promo-sub-heading {
        font-size: 1rem;
    }
    .promo-banner-image img {
        max-height: 280px;
    }
}

/* ============================================
   MOBILE — max 768px
   ============================================ */
@media (max-width: 768px) {
    .promo-banner-wrap {
        flex-direction: column;
        align-items: center;
        text-align: center;
        min-height: auto;
        border-radius: 14px;
        padding-bottom: 0;
    }

    .promo-banner-content {
        max-width: 100%;
        padding: 30px 24px 20px;
        align-items: center;
        order: 2;
    }

    .promo-sub-heading {
        font-size: 0.95rem;
    }

    .promo-main-heading {
        font-size: 1.75rem;
    }

    .promo-btn {
        align-self: center;
        padding: 12px 28px;
        font-size: 0.95rem;
    }

    .promo-banner-image {
        max-width: 70%;
        order: 1;
        margin: 0 auto;
    }

    .promo-banner-image img {
        max-height: 200px;
        margin-top: 0;
        margin-bottom: -10px;
    }
}

/* ============================================
   SMALL MOBILE — max 480px
   ============================================ */
@media (max-width: 480px) {
    .promo-banner-content {
        padding: 24px 16px 18px;
    }

    .promo-main-heading {
        font-size: 1.5rem;
    }

    .promo-sub-heading {
        font-size: 0.85rem;
    }

    .promo-btn {
        padding: 10px 24px;
        font-size: 0.9rem;
    }

    .promo-banner-image {
        max-width: 80%;
    }

    .promo-banner-image img {
        max-height: 170px;
    }
}
