/* ===== Wrapper ===== */
.banner-wrap {
    width: 100%;
    max-width: 872px;
}

/* ===== Banner ===== */
.banner {
    position: relative;
    height: 200px;
    border-radius: 22px;
    overflow: hidden;
    box-shadow:
            0 4px 6px rgba(0, 0, 0, 0.06),
            0 16px 48px rgba(0, 0, 0, 0.18);
}

/* ===== Background image ===== */
.banner-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.banner-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    display: block;
    transition: transform 0.6s ease;
}

.banner-wrap:hover .banner-bg img {
    transform: scale(1.04);
}

/* Dark overlay: left heavy, fades to semi-transparent right */
.banner-bg-overlay {
    position: absolute;
    inset: 0;
    background:
            linear-gradient(
                    to right,
                    rgba(18, 10, 6, 0.90) 0%,
                    rgba(18, 10, 6, 0.78) 38%,
                    rgba(18, 10, 6, 0.55) 65%,
                    rgba(18, 10, 6, 0.38) 100%
            );
}

/* Subtle warm accent glow */
.banner-bg-glow {
    position: absolute;
    inset: 0;
    background:
            radial-gradient(ellipse 55% 100% at 0% 100%, rgba(232, 65, 62, 0.12) 0%, transparent 70%),
            radial-gradient(ellipse 40% 70% at 100% 0%, rgba(255, 180, 60, 0.07) 0%, transparent 60%);
    pointer-events: none;
}

/* ===== Content row ===== */
.banner-content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0 44px;
    gap: 0;
}

/* Left block: eyebrow + title */
.banner-left {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 370px;
}

/* Divider */
.banner-divider {
    flex: 0 0 1px;
    align-self: stretch;
    margin: 28px 36px;
    background: rgba(255, 255, 255, 0.14);
}

/* Right block: text + button */
.banner-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
}

/* ===== Eyebrow ===== */
.banner-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: #e8413e;
}

.banner-eyebrow::before {
    content: '';
    display: block;
    width: 18px;
    height: 2px;
    background: #e8413e;
    border-radius: 2px;
    flex-shrink: 0;
}

/* ===== Title ===== */
.banner-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.93);
    letter-spacing: -0.15px;
}

.banner-title-accent {
    color: #ffffff;
    font-weight: 800;
}

/* ===== Body text ===== */
.banner-text {
    font-size: 12.5px;
    font-weight: 400;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.55);
}

/* ===== Button ===== */
.banner-btn {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: #e8413e;
    color: #ffffff;
    border: none;
    border-radius: 9999px;
    padding: 11px 22px;
    font-family: 'Open Sans', sans-serif;
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: 0.15px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.15s ease;
}

.banner-btn:hover {
    background: #d4302d;
}

.banner-btn:active {
    transform: scale(0.97);
}

.btn-arrow {
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.banner-btn:hover .btn-arrow {
    transform: translateX(3px);
}
