/* =========================================================
   OFFERS SECTION
   ========================================================= */

.offers h2 {
    margin-bottom: 24px;

    font-size: 2rem;
    text-align: left;
}


/* =========================================================
   GRID
   ========================================================= */

.offers-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--na-gap-md);
}


/* =========================================================
   LINK WRAPPER
   ========================================================= */

.offer-link {
    display: block;

    color: inherit;
    text-decoration: none;
}

.offer-link:visited,
.offer-link:hover,
.offer-link:active {
    color: inherit;
    text-decoration: none;
}


/* =========================================================
   OFFER BOX
   ========================================================= */

.offer-box {
    display: flex;
    align-items: center;
    gap: 26px;

    max-width: none;
    margin: 0;

    text-align: left;
}


/* =========================================================
   ICON
   ========================================================= */

.offer-icon {
    flex-shrink: 0;

    color: var(--na-icon-color);

    transform: translateY(4px);
}

.offer-icon svg {
    display: block;

    width: 48px;
    height: 48px;

    fill: currentColor;

    transition: transform var(--na-transition-fast);
}

.offer-link:hover .offer-icon svg {
    transform: scale(1.12);
}


/* =========================================================
   CONTENT
   ========================================================= */

.offer-content {
    display: flex;
    flex-direction: column;
}

.offer-content .na-box-title {
    margin-bottom: 6px;
}


/* =========================================================
   CTA
   ========================================================= */

.offers-cta {
    display: flex;
    justify-content: center;

    margin-top: 22px;
}

.offers button {
    margin-top: 22px;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

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

    .offers h2 {
        text-align: center;
    }

    .offer-box {
        flex-direction: column;
        align-items: center;

        text-align: center;
    }
}