/* ---------------------------------------------------------------------------
   Offer banner on a hotel page, shown when the visitor arrived via a per-hotel
   campaign link.
   --------------------------------------------------------------------------- */

.bravo-deal-banner {
    margin-bottom: 20px;
    padding: 16px 18px;
    border: 1px solid #cfe9e1;
    border-left: 4px solid #0d7c66;
    border-radius: 10px;
    background: linear-gradient(180deg, #f3fbf9 0%, #ffffff 100%);
}

[dir="rtl"] .bravo-deal-banner {
    border-left: 1px solid #cfe9e1;
    border-right: 4px solid #0d7c66;
}

.bravo-deal-banner__main {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.bravo-deal-banner__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #0d7c66;
    color: #fff;
    font-size: 15px;
    line-height: 1;
}

.bravo-deal-banner__text {
    flex: 1 1 auto;
    min-width: 0;
}

.bravo-deal-banner__badge {
    display: inline-block;
    margin-bottom: 6px;
    padding: 3px 9px;
    border-radius: 999px;
    background: rgba(13, 124, 102, .12);
    color: #095c4b;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.bravo-deal-banner__title {
    display: block;
    margin-bottom: 4px;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.35;
    color: #11181c;
}

.bravo-deal-banner__desc {
    margin: 0 0 6px;
    font-size: 14px;
    line-height: 1.55;
    color: #4a5459;
}

.bravo-deal-banner__status {
    margin: 0;
    font-size: 13px;
    font-weight: 600;
    color: #1f7a52;
}

.bravo-deal-banner__meta {
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px solid #e4f0ec;
    display: flex;
    flex-wrap: wrap;
    gap: 6px 18px;
}

.bravo-deal-banner__dates {
    font-size: 12px;
    color: #4a5459;
    white-space: nowrap;
}

.bravo-deal-banner__terms {
    font-size: 11px;
    line-height: 1.5;
    color: #8a9296;
}

@media (max-width: 575px) {
    .bravo-deal-banner__title { font-size: 15px; }
    .bravo-deal-banner__icon { width: 26px; height: 26px; font-size: 13px; }
}
