/* ==========================================================================
   Offers Section
   ========================================================================== */

.nf-offers {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(3, 1fr);
    padding: 2rem 0;
}

@media (max-width: 1024px) {
    .nf-offers {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 780px) {
    .nf-offers {
        grid-template-columns: 1fr;
    }
}

.nf-offer-card {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    padding: 1.5rem;
    position: relative;
}

.nf-offer-headline {
    color: var(--main-dark);
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
}

.nf-offer-image {
    margin-bottom: 1rem;
    text-align: center;
}

.nf-offer-image img {
    height: auto;
    max-width: 100%;
}

.nf-offer-content {
    display: flex;
    gap: 1rem;
}

.nf-offer-red-text {
    align-self: flex-start;
    color: var(--red);
    font-size: 1.5rem;
    font-weight: 700;
    text-orientation: mixed;
    transform: rotate(180deg);
    white-space: nowrap;
    writing-mode: vertical-rl;
}

.nf-offer-details {
    flex: 1;
}

.nf-offer-action-title {
    color: var(--main-dark);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 0.75rem 0;
}

.nf-offer-bullets {
    list-style: none;
    margin: 0 0 1rem 0;
    padding: 0;
}

.nf-offer-bullets li {
    font-weight: 600;
    margin-bottom: 0.25rem;
    padding-left: 1.5rem;
    position: relative;
}

.nf-offer-bullets li::before {
    content: "-";
    left: 0.5rem;
    position: absolute;
}

.nf-offer-footnote {
    color: #666;
    font-size: 0.75rem;
    line-height: 1.4;
}
