.offer-grid .offer-card {
  grid-column: span var(--offer-desktop, 6) !important;
  height: 100%;
}

.offer-card-surface {
  display: flex;
  flex: 1;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--offer-radius-tl, 24px) var(--offer-radius-tr, 24px) var(--offer-radius-br, 24px) var(--offer-radius-bl, 24px);
  background: var(--mint, #d4ede8);
}

.offer-grid .offer-card:nth-child(4n + 2) .offer-card-surface {
  background: #d9e8ea;
}

.offer-grid .offer-card:nth-child(4n + 3) .offer-card-surface {
  background: #eaf1f4;
}

.offer-grid .offer-card:nth-child(4n + 4) .offer-card-surface {
  background: #e4edf7;
}

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

.offer-grid .offer-card .card-media {
  border-radius: 0;
}

.offer-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: clamp(20px, 2.4vw, 30px);
}

.offer-grid .offer-card .card-meta {
  margin-top: 0;
}

.offer-grid .offer-card .card-desc {
  margin-bottom: 0;
}

.offer-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 24px;
}

.offer-grid .offer-card .offer-card-price {
  display: block;
  margin: 0;
  color: var(--navy);
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 800;
  line-height: 1.25;
}

.offer-card-action {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 11px 17px;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  transition: background .25s var(--ease), transform .25s var(--ease);
}

.offer-card-action:hover {
  background: var(--navy-deep);
  transform: translateY(-2px);
}

.offer-card-action svg {
  transition: transform .25s var(--ease);
}

.offer-card-action:hover svg {
  transform: translateX(4px);
}

.offer-card-action.is-disabled {
  cursor: default;
  opacity: .55;
}

@media (max-width: 992px) {
  .offer-grid .offer-card {
    grid-column: span var(--offer-tablet, 12) !important;
  }
}

@media (max-width: 600px) {
  .offer-listing-section {
    padding-right: 28px;
    padding-left: 28px;
  }

  .grid.offer-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 28px;
  }

  .offer-grid .offer-card {
    grid-column: span var(--offer-mobile, 6) !important;
  }

  .offer-card-body {
    padding: 20px;
  }

  .offer-card-footer {
    gap: 12px;
  }

  .offer-grid .offer-card .offer-card-price {
    font-size: 22px;
  }
}

/* truwhy-offer-responsive:start */
.offer-grid .offer-card {
  height: var(--offer-desktop-card-height, 100%);
}

.offer-grid .offer-card .card-media {
  height: var(--offer-desktop-media-height, auto);
  aspect-ratio: var(--offer-desktop-media-aspect, 4 / 3);
}

.offer-card-body {
  padding-top: var(--offer-desktop-pad-top, 28px);
  padding-right: var(--offer-desktop-pad-right, 28px);
  padding-bottom: var(--offer-desktop-pad-bottom, 28px);
  padding-left: var(--offer-desktop-pad-left, 28px);
  text-align: var(--offer-desktop-content-align, left);
}

.offer-card-footer {
  grid-template-columns: var(--offer-desktop-footer-columns, minmax(0, 1fr) auto);
  gap: var(--offer-desktop-footer-gap, 16px);
  padding-top: var(--offer-desktop-footer-top, 24px);
}

.offer-grid .offer-card .offer-card-price {
  justify-self: var(--offer-desktop-price-justify, start);
  text-align: var(--offer-desktop-price-align, left);
}

.offer-card-action {
  justify-self: var(--offer-desktop-button-justify, end);
}

.offer-card-details {
  align-self: var(--offer-desktop-details-align, start);
}

@media (max-width: 992px) {
  .offer-grid .offer-card {
    height: var(--offer-tablet-card-height, 100%);
  }

  .offer-grid .offer-card .card-media {
    height: var(--offer-tablet-media-height, auto);
    aspect-ratio: var(--offer-tablet-media-aspect, 4 / 3);
  }

  .offer-card-body {
    padding-top: var(--offer-tablet-pad-top, 24px);
    padding-right: var(--offer-tablet-pad-right, 24px);
    padding-bottom: var(--offer-tablet-pad-bottom, 24px);
    padding-left: var(--offer-tablet-pad-left, 24px);
    text-align: var(--offer-tablet-content-align, left);
  }

  .offer-card-footer {
    grid-template-columns: var(--offer-tablet-footer-columns, minmax(0, 1fr) auto);
    gap: var(--offer-tablet-footer-gap, 16px);
    padding-top: var(--offer-tablet-footer-top, 24px);
  }

  .offer-grid .offer-card .offer-card-price {
    justify-self: var(--offer-tablet-price-justify, start);
    text-align: var(--offer-tablet-price-align, left);
  }

  .offer-card-action {
    justify-self: var(--offer-tablet-button-justify, end);
  }

  .offer-card-details {
    align-self: var(--offer-tablet-details-align, start);
  }
}

@media (max-width: 600px) {
  .offer-grid .offer-card {
    height: var(--offer-mobile-card-height, 100%);
  }

  .offer-grid .offer-card .card-media {
    height: var(--offer-mobile-media-height, auto);
    aspect-ratio: var(--offer-mobile-media-aspect, 4 / 3);
  }

  .offer-card-body {
    padding-top: var(--offer-mobile-pad-top, 20px);
    padding-right: var(--offer-mobile-pad-right, 20px);
    padding-bottom: var(--offer-mobile-pad-bottom, 20px);
    padding-left: var(--offer-mobile-pad-left, 20px);
    text-align: var(--offer-mobile-content-align, left);
  }

  .offer-card-footer {
    grid-template-columns: var(--offer-mobile-footer-columns, minmax(0, 1fr) auto);
    gap: var(--offer-mobile-footer-gap, 12px);
    padding-top: var(--offer-mobile-footer-top, 24px);
  }

  .offer-grid .offer-card .offer-card-price {
    justify-self: var(--offer-mobile-price-justify, center);
    text-align: var(--offer-mobile-price-align, center);
  }

  .offer-card-action {
    justify-self: var(--offer-mobile-button-justify, center);
  }

  .offer-card-details {
    align-self: var(--offer-mobile-details-align, start);
  }
}
/* truwhy-offer-responsive:end */
