/* =========================================================
   SUBSCRIPTION OFFERS
   Page-specific styles
========================================================= */

.offer-card {
    background: #fff;
    border: 1px solid var(--lib-border, #d9e2ea);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.offer-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.09);
}


/* =========================================================
   OFFER IMAGE
========================================================= */

.offer-img-box {
    width: 100%;
    height: 230px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #f1f5f9;
    border: 1px solid #e9ecef;
}

.offer-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: zoom-in;
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transition: opacity 0.2s ease;
}

.offer-image:hover {
    opacity: 0.94;
}

/* =========================================================
   IMAGE CAPTION
========================================================= */

.offer-img-box + p {
    font-size: 0.72rem;
}


/* =========================================================
   OFFER TITLE
========================================================= */

.offer-title {
    margin: 0;
    color: var(--kv-blue, #0b2545);
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.3;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.offer-card .text-muted {
    color: var(--lib-muted, #5b6570) !important;
    font-size: 0.88rem;
    line-height: 1.65;
}


/* =========================================================
   RATE BOX
========================================================= */

.rate-box {
    margin-top: 15px;
    padding: 14px 16px;
    background: #f5f9fc;
    border: 1px solid #e1e9ef;
    border-radius: 14px;
}


/* =========================================================
   PRICES
========================================================= */

.old-price {
    color: #6c757d;
    font-size: 0.82rem;
    text-decoration: line-through;
    line-height: 1.4;
}

.new-price {
    margin-top: 2px;
    color: #c62828;
    font-size: 1.7rem;
    font-weight: 800;
    line-height: 1.2;
}


/* =========================================================
   DISCOUNT BADGE
========================================================= */

.discount-badge {
    display: inline-block;
    margin-top: 7px;
    padding: 5px 11px;
    background: #198754;
    color: #fff;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1.2;
}


/* =========================================================
   SUBSCRIBE BUTTON
========================================================= */

.subscribe-btn {
    border: 0;
    border-radius: 10px;
    padding: 9px 18px;
    background: var(--kv-blue, #0b2545);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    transition: all 0.2s ease;
}

.subscribe-btn:hover {
    background: #123f68;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(11, 37, 69, 0.2);
}


/* =========================================================
   WHY SUBSCRIBE NOTE
========================================================= */

.school-note {
    padding: 16px 18px;
    background: #fff8e1;
    border: 1px solid #ffe082;
    border-left: 4px solid #f5c542;
    border-radius: 12px;
    color: #495057;
}

.school-note h5 {
    color: var(--kv-blue, #0b2545);
    font-size: 0.95rem;
}

.school-note p {
    font-size: 0.85rem;
    line-height: 1.6;
}


/* =========================================================
   INFORMATION NOTE
========================================================= */

.subscription-offers + .alert {
    font-size: 0.85rem;
    line-height: 1.6;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {

    .offer-card .card-body {
        padding: 18px !important;
    }

    .offer-img-box {
        height: 220px;
    }

    .offer-title {
        font-size: 1.1rem;
    }

    .offer-card .text-muted {
        font-size: 0.82rem;
    }

    .rate-box {
        padding: 13px;
    }

    .new-price {
        font-size: 1.5rem;
    }

    .subscribe-btn {
        width: 100%;
        margin-top: 5px;
    }
}


@media (max-width: 575.98px) {

    .offer-img-box {
        height: 240px;
    }

    .offer-title {
        font-size: 1.05rem;
    }

    .new-price {
        font-size: 1.45rem;
    }

    .discount-badge {
        font-size: 0.68rem;
    }
}