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

.offers {
  margin: 60px auto;
  max-width: 1200px;
  padding: 0 20px;
}

.offers h2 {
  text-align: left;
  font-size: 2rem;
  margin-bottom: 24px;
}


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

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


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

.offer-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

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


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

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

  margin: 0;
  max-width: none;
  text-align: left;
}


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

.offer-icon {
  flex-shrink: 0;
  transform: translateY(4px);
  color: var(--na-icon-color);
}

.offer-icon svg {
  width: 48px;   /* adjust if needed */
  height: 48px;
  display: block;
  transition: transform 0.18s ease;
}

/* For filled SVG icons */
.offer-icon svg path {
  fill: currentColor;
}

.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 WRAPPER
========================= */

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

.offers-cta {
  display: flex;
  justify-content: center;
  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;
  }

}