.nflm-256-deal-search {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 20px 0 4px;
}
.nflm-256-deal-search__input {
  flex: 1;
  max-width: 420px;
  padding: 11px 16px;
  font-size: 14px;
  border: 1px solid #d0d5dd;
  border-radius: 999px;
  outline: none;
}
.nflm-256-deal-search__input:focus {
  border-color: #a20000;
  box-shadow: 0 0 0 3px rgba(162,0,0,.12);
}
.nflm-256-deal-search__status {
  font-size: 12px;
  color: #667085;
  font-weight: 600;
}
.nflm-256-deal-loop[aria-busy="true"] {
  opacity: .55;
  transition: opacity .15s ease;
}
.nflm-256-deal-loop {
  display: grid;
  gap: 22px;
  margin: 24px 0;
}
.nflm-256-deal-loop--cols-1 { grid-template-columns: 1fr; }
.nflm-256-deal-loop--cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.nflm-256-deal-loop--cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.nflm-256-deal-loop--cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.nflm-256-deals-empty {
  padding: 18px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #fff;
  color: #374151;
}
.nflm-256-deal-card {
  display: flex;
  gap: 16px;
  align-items: stretch;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 22px;
  box-shadow: 0 10px 26px rgba(17,24,39,.08);
  overflow: hidden;
  padding: 14px;
  position: relative;
}
.nflm-256-deal-card--single,
.nflm-256-deal-card--full {
  max-width: 760px;
  margin: 24px auto;
}
.nflm-256-deal-card__media {
  position: relative;
  width: 140px;
  min-width: 140px;
  min-height: 128px;
}
.nflm-256-deal-card__image {
  width: 100%;
  height: 100%;
  min-height: 128px;
  object-fit: cover;
  border-radius: 18px;
  background: #f3f6fb;
  display: block;
}
.nflm-256-deal-card__image--fallback {
  background: linear-gradient(135deg,#f3f6fb,#fff);
}
.nflm-256-deal-card__logo {
  position: absolute;
  right: -12px;
  bottom: -10px;
  width: 58px;
  height: 58px;
  object-fit: contain;
  background: #fff;
  border: 1px solid rgba(11,31,77,.10);
  border-radius: 999px;
  padding: 7px;
  box-shadow: 0 8px 24px rgba(11,31,77,.16);
}
.nflm-256-deal-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  flex: 1;
  min-width: 0;
}
.nflm-256-deal-card__business {
  color: #4b5563;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.2;
  letter-spacing: .01em;
}
.nflm-256-deal-card__headline {
  color: #a20000;
  font-size: 25px;
  font-weight: 800;
  line-height: 1.05;
  margin: 0;
}
.nflm-256-deal-card__subheadline {
  color: #102b5c;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.2;
}
.nflm-256-deal-card__meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 2px;
}
.nflm-256-deal-card__expiration-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 5px 9px;
  border-radius: 999px;
  background: #fff1f1;
  border: 1px solid rgba(162,0,0,.18);
  color: #8f0000;
  font-size: 11px;
  font-weight: 850;
  line-height: 1;
}
.nflm-256-deal-card__meta {
  color: #667085;
  font-size: 12px;
  font-weight: 550;
}
.nflm-256-deal-card__description {
  color: #111827;
  font-size: 14px;
  line-height: 1.45;
  margin-top: 4px;
}
.nflm-256-deal-card__description p { margin: 0 0 8px; }
.nflm-256-deal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}
.nflm-256-deal-action-item {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
}
.nflm-256-deal-card__button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  background: #a20000;
  color: #fff !important;
  border: 1px solid #a20000;
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 750;
  line-height: 1;
  text-decoration: none !important;
  box-shadow: 0 8px 18px rgba(162,0,0,.18);
}
.nflm-256-deal-card__button:hover { filter: brightness(.95); }
.nflm-256-deal-card__button--outline {
  background: #fff;
  color: #a20000 !important;
}
.nflm-256-deal-card__button--blue {
  background: #0b4dc2;
  border-color: #0b4dc2;
}
.nflm-256-deal-card__button--digital {
  background: #111827;
  border-color: #111827;
  box-shadow: 0 8px 18px rgba(17,24,39,.14);
}
.nflm-256-deal-card__button--digital::before {
  content: '↗';
  display: inline-block;
  margin-right: 7px;
  transform: rotate(90deg);
  font-size: 12px;
  line-height: 1;
}
.nflm-256-deal-gate {
  margin-top: 12px;
  padding: 14px;
  background: linear-gradient(135deg,#fff7f7,#ffffff);
  border: 1px solid rgba(162,0,0,.18);
  border-radius: 14px;
}
.nflm-256-deal-gate__eyebrow {
  color: #a20000;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.nflm-256-deal-gate__text {
  color: #374151;
  font-size: 14px;
  margin: 6px 0 12px;
}
.nflm-256-deal-gate__form { margin-top: 12px; }
@media (max-width: 980px) {
  .nflm-256-deal-loop--cols-3,
  .nflm-256-deal-loop--cols-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .nflm-256-deal-loop { grid-template-columns: 1fr !important; }
  .nflm-256-deal-card { gap: 12px; padding: 10px; border-radius: 18px; }
  .nflm-256-deal-card__media { width: 96px; min-width: 96px; min-height: 96px; }
  .nflm-256-deal-card__image { min-height: 96px; border-radius: 14px; }
  .nflm-256-deal-card__logo { width: 44px; height: 44px; right: -8px; bottom: -7px; }
  .nflm-256-deal-card__headline { font-size: 20px; }
}

.nflm-256-deal-signup {
  display: block;
  margin: 10px 0 0;
}
.nflm-256-deal-signup--standalone {
  max-width: 640px;
  padding: 22px;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 28px rgba(17,24,39,.08);
}
.nflm-256-deal-signup--already-member {
  padding: 14px 16px;
  border: 1px solid rgba(22,163,74,.25);
  border-radius: 14px;
  background: #f0fdf4;
  color: #166534;
}
.nflm-256-deal-signup__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.nflm-256-deal-signup__field {
  display: flex;
  flex-direction: column;
  gap: 5px;
  color: #111827;
  font-size: 13px;
  font-weight: 750;
}
.nflm-256-deal-signup__field--full {
  grid-column: 1 / -1;
}
.nflm-256-deal-signup__field em {
  color: #667085;
  font-size: 11px;
  font-style: normal;
  font-weight: 550;
}
.nflm-256-deal-signup input[type="text"],
.nflm-256-deal-signup input[type="email"],
.nflm-256-deal-signup input[type="tel"],
.nflm-256-deal-signup input[type="date"] {
  width: 100%;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid #d0d5dd;
  border-radius: 12px;
  background: #fff;
  color: #111827;
  font-size: 14px;
  outline: none;
}
.nflm-256-deal-signup input:focus {
  border-color: #a20000;
  box-shadow: 0 0 0 3px rgba(162,0,0,.12);
}
.nflm-256-deal-signup__consent {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin: 13px 0;
  color: #374151;
  font-size: 12px;
  line-height: 1.45;
}
.nflm-256-deal-signup__consent input[type="checkbox"] {
  width: 18px !important;
  min-width: 18px !important;
  max-width: 18px !important;
  height: 18px !important;
  min-height: 18px !important;
  padding: 0 !important;
  margin: 2px 0 0 !important;
  flex: 0 0 18px;
  accent-color: #a20000;
}
.nflm-256-deal-signup__button[disabled] {
  opacity: .65;
  cursor: wait;
}
.nflm-256-deal-signup__status {
  min-height: 18px;
  margin-top: 10px;
  color: #667085;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.4;
}
.nflm-256-deal-signup__status[data-status="success"] { color: #166534; }
.nflm-256-deal-signup__status[data-status="error"] { color: #b42318; }
.nflm-256-deal-signup[aria-busy="true"] { opacity: .78; }

@media (max-width: 640px) {
  .nflm-256-deal-signup__grid { grid-template-columns: 1fr; }
}

.nflm-256-deal-action-status {
  display: block;
  min-height: 17px;
  margin-top: 7px;
  font-size: 12px;
  font-weight: 700;
  color: #667085;
  line-height: 1.35;
}
.nflm-256-deal-action-status[data-status="success"] { color: #166534; }
.nflm-256-deal-action-status[data-status="error"] { color: #b42318; }
.nflm-256-deal-action-status[data-status="loading"] { color: #374151; }
.nflm-256-deal-action-status:empty { display: none; min-height: 0; margin-top: 0; }
.nflm-256-deal-card__button--busy {
  opacity: .75;
  cursor: wait;
  pointer-events: none;
}
.nflm-256-deal-toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 99999;
  max-width: 360px;
  padding: 14px 16px;
  border-radius: 14px;
  background: #111827;
  color: #fff;
  box-shadow: 0 18px 48px rgba(17,24,39,.22);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.35;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
}
.nflm-256-deal-toast[data-show="yes"] {
  opacity: 1;
  transform: translateY(0);
}
.nflm-256-deal-toast[data-status="success"] { background: #166534; }
.nflm-256-deal-toast[data-status="error"] { background: #b42318; }

.nflm-256-related-deals {
  margin: 24px 0;
}
.nflm-256-related-deals__track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 4px 2px 14px;
  scroll-snap-type: x proximity;
}
.nflm-256-related-deals__item {
  flex: 0 0 min(760px, 92vw);
  scroll-snap-align: start;
}
.nflm-256-related-deals__item .nflm-256-deal-card {
  max-width: none;
  margin: 0;
}
@media (min-width: 900px) {
  .nflm-256-related-deals__item { flex-basis: min(640px, 48vw); }
}
@media (max-width: 640px) {
  .nflm-256-related-deals__track { gap: 12px; }
  .nflm-256-related-deals__item { flex-basis: 94vw; }
}

.nflm-256-event-perks {
  margin: 28px 0;
}
.nflm-256-event-perks__header {
  max-width: 820px;
  margin-bottom: 18px;
}
.nflm-256-event-perks__eyebrow {
  color: #a20000;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 6px;
}
.nflm-256-event-perks__title {
  margin: 0 0 8px;
  color: #111827;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.08;
}
.nflm-256-event-perks__intro {
  color: #4b5563;
  font-size: 16px;
  line-height: 1.55;
  margin: 0;
}
.nflm-256-event-perks__signup {
  margin-top: 24px;
  padding: 22px;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 28px rgba(17,24,39,.08);
}
.nflm-256-event-perks__signup h3 {
  margin: 0 0 12px;
  color: #111827;
}

.nflm-256-deal-card__coupon-code {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  width: fit-content;
  max-width: 100%;
  margin-top: 6px;
  padding: 8px 9px;
  border: 1px dashed rgba(162, 0, 0, .30);
  border-radius: 12px;
  background: #fff8f8;
}
.nflm-256-deal-card__coupon-code-label {
  color: #667085;
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.nflm-256-deal-card__coupon-code-value {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 4px 8px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(17, 24, 39, .10);
  color: #111827;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .04em;
  line-height: 1;
  white-space: nowrap;
}
.nflm-256-deal-card__coupon-code-copy {
  min-height: 28px;
  padding: 5px 10px;
  border: 1px solid #a20000;
  border-radius: 999px;
  background: #a20000;
  color: #fff;
  font-size: 12px;
  font-weight: 850;
  line-height: 1;
  cursor: pointer;
}
.nflm-256-deal-card__coupon-code-copy:hover { filter: brightness(.95); }
.nflm-256-deal-card__coupon-code-copy[disabled] {
  opacity: .7;
  cursor: wait;
}
.nflm-256-deal-card__coupon-code-status {
  min-height: 14px;
  color: #667085;
  font-size: 11px;
  font-weight: 750;
  line-height: 1.25;
}
.nflm-256-deal-card__coupon-code-status[data-status="success"] { color: #166534; }
.nflm-256-deal-card__coupon-code-status[data-status="error"] { color: #b42318; }
@media (max-width: 640px) {
  .nflm-256-deal-card__coupon-code { width: 100%; }
  .nflm-256-deal-card__coupon-code-value { max-width: 100%; overflow-wrap: anywhere; white-space: normal; }
}

.nflm-256-deal-actions--show_public_actions,
.nflm-256-deal-actions--two_step {
  gap: 10px;
}
.nflm-256-deal-actions__note {
  flex: 0 0 100%;
  width: 100%;
  margin: 0 0 2px;
  padding: 10px 12px;
  border-radius: 12px;
  background: #fff8f8;
  border: 1px solid rgba(162, 0, 0, .12);
  color: #475467;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.35;
}
.nflm-256-deal-card__button--secondary {
  background: #fff;
  border: 1px solid rgba(162, 0, 0, .30);
  color: #a20000 !important;
}
.nflm-256-deal-card__button--secondary:hover {
  background: #fff5f5;
}

/* v1.1.2 backup-link popup for single deal actions */
.nflm-256-deal-link-modal {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .18s ease;
}
.nflm-256-deal-link-modal[data-show="yes"] {
    opacity: 1;
    pointer-events: auto;
}
.nflm-256-deal-link-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .48);
}
.nflm-256-deal-link-modal__panel {
    position: relative;
    width: min(540px, 100%);
    background: #fff;
    color: #071733;
    border-radius: 18px;
    padding: 26px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, .28);
}
.nflm-256-deal-link-modal__x {
    position: absolute;
    top: 10px;
    right: 12px;
    border: 0;
    background: transparent;
    color: #475569;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}
.nflm-256-deal-link-modal__eyebrow {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #b00000;
    margin-bottom: 8px;
}
.nflm-256-deal-link-modal__title {
    margin: 0 34px 10px 0;
    font-size: 24px;
    line-height: 1.15;
}
.nflm-256-deal-link-modal__message {
    margin: 0 0 14px;
    color: #334155;
    line-height: 1.5;
}
.nflm-256-deal-link-modal__url {
    border: 1px dashed #f1a3a3;
    border-radius: 12px;
    padding: 12px;
    margin: 14px 0;
    color: #0f172a;
    background: #fff7f7;
    font-size: 13px;
    line-height: 1.45;
    word-break: break-all;
}
.nflm-256-deal-link-modal__button,
.nflm-256-deal-link-modal__button:visited {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 12px 18px;
    border-radius: 999px;
    background: #b00000;
    color: #fff;
    font-weight: 800;
    text-decoration: none;
    margin-right: 10px;
}
.nflm-256-deal-link-modal__button:hover {
    color: #fff;
    text-decoration: none;
}
.nflm-256-deal-link-modal__close {
    min-height: 44px;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid #cbd5e1;
    background: #fff;
    color: #0f172a;
    cursor: pointer;
    font-weight: 700;
}
.nflm-256-deal-action-status[data-status="warning"] {
    color: #92400e;
}
@media (max-width: 520px) {
    .nflm-256-deal-link-modal__panel {
        padding: 22px;
    }
    .nflm-256-deal-link-modal__button,
    .nflm-256-deal-link-modal__close {
        width: 100%;
        margin: 8px 0 0;
    }
}


/* v1.3 deal taxonomy badges */
.nflm-256-deal-card__categories {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 8px 0 10px;
}
.nflm-256-deal-card__category-badge {
    display: inline-flex;
    align-items: center;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    padding: 4px 9px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .03em;
    text-transform: uppercase;
    color: #334155;
    background: #f8fafc;
}

/* v1.3.3 logged-out / non-member deal teaser shortcode */
.nflm-256-logged-out-deal {
  max-width: 820px;
  margin: 24px auto;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  box-shadow: 0 14px 38px rgba(17,24,39,.09);
  overflow: hidden;
}
.nflm-256-logged-out-deal__preview {
  display: flex;
  gap: 16px;
  padding: 16px;
  align-items: stretch;
}
.nflm-256-logged-out-deal__media {
  position: relative;
  width: 154px;
  min-width: 154px;
  min-height: 144px;
}
.nflm-256-logged-out-deal__image {
  width: 100%;
  height: 100%;
  min-height: 144px;
  object-fit: cover;
  border-radius: 18px;
  background: #f3f6fb;
  display: block;
}
.nflm-256-logged-out-deal__image--fallback {
  background: linear-gradient(135deg,#f3f6fb,#fff);
}
.nflm-256-logged-out-deal__logo {
  position: absolute;
  right: -12px;
  bottom: -10px;
  width: 58px;
  height: 58px;
  object-fit: contain;
  background: #fff;
  border: 1px solid rgba(11,31,77,.10);
  border-radius: 999px;
  padding: 7px;
  box-shadow: 0 8px 24px rgba(11,31,77,.16);
}
.nflm-256-logged-out-deal__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  flex: 1;
  min-width: 0;
}
.nflm-256-logged-out-deal__eyebrow {
  color: #a20000;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .06em;
  line-height: 1;
  text-transform: uppercase;
}
.nflm-256-logged-out-deal__headline {
  color: #a20000;
  font-size: 26px;
  font-weight: 850;
  line-height: 1.05;
  margin: 0;
}
.nflm-256-logged-out-deal__business {
  color: #4b5563;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.2;
}
.nflm-256-logged-out-deal__subheadline {
  color: #102b5c;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.25;
}
.nflm-256-logged-out-deal__categories,
.nflm-256-logged-out-deal__meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 2px;
}
.nflm-256-logged-out-deal__signup-panel {
  padding: 18px;
  border-top: 1px solid #eef2f7;
  background: linear-gradient(135deg,#fff7f7,#ffffff);
}
.nflm-256-logged-out-deal__signup-title {
  margin: 0 0 6px;
  color: #111827;
  font-size: 18px;
  font-weight: 850;
  line-height: 1.15;
}
.nflm-256-logged-out-deal__signup-intro {
  margin: 0 0 12px;
  color: #374151;
  font-size: 14px;
  line-height: 1.4;
}
.nflm-256-deal-signup--logged-out-card {
  margin-top: 0;
}
@media (max-width: 640px) {
  .nflm-256-logged-out-deal { border-radius: 20px; }
  .nflm-256-logged-out-deal__preview { gap: 12px; padding: 12px; }
  .nflm-256-logged-out-deal__media { width: 96px; min-width: 96px; min-height: 96px; }
  .nflm-256-logged-out-deal__image { min-height: 96px; border-radius: 14px; }
  .nflm-256-logged-out-deal__logo { width: 44px; height: 44px; right: -8px; bottom: -7px; }
  .nflm-256-logged-out-deal__headline { font-size: 20px; }
  .nflm-256-logged-out-deal__signup-panel { padding: 14px; }
}


/* v1.3.5 grid/carousel display controls */
.nflm-256-deal-loop--grid {
  display: grid;
}
.nflm-256-deal-carousel {
  position: relative;
  margin: 24px 0;
}
.nflm-256-deal-carousel__controls {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin: 0 0 10px;
}
.nflm-256-deal-carousel__button {
  width: 42px;
  height: 42px;
  border: 1px solid #d7dce5;
  border-radius: 999px;
  background: #fff;
  color: #9f0000;
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 5px 16px rgba(17,24,39,.08);
}
.nflm-256-deal-carousel__button:hover,
.nflm-256-deal-carousel__button:focus-visible {
  border-color: #a20000;
  outline: none;
  box-shadow: 0 0 0 3px rgba(162,0,0,.12);
}
.nflm-256-deal-carousel__button:disabled {
  opacity: .35;
  cursor: default;
}
.nflm-256-deal-loop--carousel {
  display: flex;
  grid-template-columns: none !important;
  gap: 22px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  padding: 4px 3px 16px;
  margin: 0;
}
.nflm-256-deal-loop--carousel > .nflm-256-deal-card {
  flex: 0 0 100%;
  width: 100%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}
@media (min-width: 760px) {
  .nflm-256-deal-loop--carousel.nflm-256-deal-loop--cols-2 > .nflm-256-deal-card {
    flex-basis: calc((100% - 22px) / 2);
  }
  .nflm-256-deal-loop--carousel.nflm-256-deal-loop--cols-3 > .nflm-256-deal-card {
    flex-basis: calc((100% - 44px) / 3);
  }
  .nflm-256-deal-loop--carousel.nflm-256-deal-loop--cols-4 > .nflm-256-deal-card {
    flex-basis: calc((100% - 66px) / 4);
  }
}
@media (max-width: 759px) {
  .nflm-256-deal-loop--carousel > .nflm-256-deal-card {
    flex-basis: min(92vw, 560px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .nflm-256-deal-loop--carousel { scroll-behavior: auto; }
}
.nflm-256-latest-deals {
  margin: 38px 0 12px;
  padding-top: 28px;
  border-top: 1px solid #e5e7eb;
}
.nflm-256-latest-deals__header {
  max-width: 820px;
  margin-bottom: 12px;
}
.nflm-256-latest-deals__title {
  margin: 0 0 8px;
  color: #111827;
  font-size: clamp(25px, 3.5vw, 36px);
  line-height: 1.12;
}
.nflm-256-latest-deals__intro {
  margin: 0;
  color: #4b5563;
  font-size: 15px;
  line-height: 1.55;
}


/* v1.3.7 automatic grid continuation */
.nflm-256-deal-load-more {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin: 26px 0 8px;
}
.nflm-256-deal-load-more[hidden],
.nflm-256-deal-load-more.is-complete {
  display: none !important;
}
.nflm-256-deal-load-more__button {
  min-width: 190px;
  min-height: 46px;
  padding: 12px 24px;
  border: 1px solid #9f0000;
  border-radius: 999px;
  background: #fff;
  color: #8f0000;
  font: inherit;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
  box-shadow: 0 5px 16px rgba(17,24,39,.08);
}
.nflm-256-deal-load-more__button:hover,
.nflm-256-deal-load-more__button:focus-visible {
  background: #9f0000;
  color: #fff;
  outline: none;
  box-shadow: 0 0 0 3px rgba(159,0,0,.14);
}
.nflm-256-deal-load-more__button:disabled {
  opacity: .65;
  cursor: wait;
}
.nflm-256-deal-load-more__status {
  min-height: 1.2em;
  color: #6b7280;
  font-size: 13px;
  text-align: center;
}


/* v1.3.8 compact logged-out member gate */
.nflm-256-deal-signup--logged-out-card .nflm-256-deal-signup__grid,
.nflm-256-deal-signup--event-perk-card .nflm-256-deal-signup__grid {
  align-items: end;
}
