.promo-callout-slot{
    position: relative;
    margin: 28px 0 34px;
    min-height: 170px;
}

.promo-callout{
    position: absolute;
    inset: 0;
    border-radius: 10px;
    overflow: hidden;
    transition: opacity 0.8s ease, transform 0.8s ease;
    opacity: 1;
    transform: translateY(0);
}

.promo-callout.is-hidden{
    opacity: 0;
    transform: translateY(24px);
    pointer-events: none;
}

.promo-callout.is-visible{
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.promo-callout-inner{
    height: 100%;
    padding: 24px 26px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    border: 1px solid #7a5530;
    border-radius: 10px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02)),
        linear-gradient(135deg, #5a3922 0%, #7a4a26 18%, #4a2e1c 45%, #8a5b2f 72%, #4b2f1d 100%);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.18),
        inset 0 -1px 0 rgba(0,0,0,0.22),
        0 12px 26px rgba(70, 40, 15, 0.24);
    position: relative;
}

.promo-callout-inner::before{
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255,215,140,0.10) 0%, rgba(255,255,255,0.02) 18%, rgba(255,215,140,0.08) 50%, rgba(255,255,255,0.02) 82%, rgba(255,215,140,0.08) 100%);
    pointer-events: none;
}

.promo-callout-kicker{
    position: relative;
    z-index: 1;
    display: inline-block;
    margin-bottom: 10px;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(255, 215, 140, 0.12);
    border: 1px solid rgba(255, 215, 140, 0.22);
    color: #f4d38a;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.9px;
    text-transform: uppercase;
}

.promo-callout-kicker .promo-link {
  text-decoration: none;
  color: #b6caec;
  font-weight: 700;
}

.promo-callout-kicker .promo-link:hover {
  color: #245fe6;
  text-decoration: underline;
}
.promo-callout-text h3{
    position: relative;
    z-index: 1;
    margin: 0 0 10px;
    color: #f7d778;
    font-size: 26px;
    line-height: 1.25;
    font-weight: 800;
    text-shadow: 0 1px 0 rgba(60,30,0,0.35);
}

.promo-callout-text p{
    position: relative;
    z-index: 1;
    margin: 0;
    color: #f5e7bf;
    font-size: 15px;
    line-height: 1.75;
    max-width: 760px;
}

.promo-callout-action{
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
}

.promo-callout-btn{
    display: inline-block;
    text-decoration: none;
    padding: 12px 18px;
    border-radius: 999px;
    background: linear-gradient(180deg, #f2d283 0%, #c99833 55%, #a8741f 100%);
    color: #4a2b08;
    font-weight: 800;
    font-size: 14px;
    border: 1px solid #d3a54a;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.4),
        inset 0 -1px 0 rgba(80,50,0,0.18),
        0 8px 16px rgba(40, 20, 5, 0.22);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.promo-callout-btn:hover{
    transform: translateY(-1px);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.45),
        inset 0 -1px 0 rgba(80,50,0,0.18),
        0 10px 18px rgba(40, 20, 5, 0.28);
}

@media (max-width: 900px){
    .promo-callout-slot{
        min-height: 220px;
    }

    .promo-callout-text h3{
        font-size: 22px;
    }
}

@media (max-width: 640px){
    .promo-callout-slot{
        min-height: 250px;
        margin: 24px 0 28px;
    }

    .promo-callout-inner{
        padding: 18px;
    }

    .promo-callout-text h3{
        font-size: 20px;
    }

    .promo-callout-text p{
        font-size: 14px;
        line-height: 1.65;
    }

    .promo-callout-btn{
        width: 100%;
        text-align: center;
    }
}
