/* The same seasonal offer layout is shared by all three homepages. */
.offer .offer-grid {
  display: block;
  background: #f2efe6;
  border: 1px solid #e2dfd3;
  border-radius: 22px;
  overflow: hidden;
}
.offer .offer-photo {
  height: clamp(240px, 24vw, 330px);
  min-height: 0;
  border-radius: 0;
}
.offer .offer-photo img { object-position: center 58%; }
.offer .offer-photo > span {
  left: clamp(20px, 3.5vw, 48px);
  right: 20px;
  bottom: 24px;
  padding: 12px 18px;
  border: 1px solid #ffffff50;
  border-radius: 8px;
  background: #123c34;
  color: #fffdf7;
  font-size: 12px;
  letter-spacing: .1em;
}
.offer .offer-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 4.5vw, 64px);
  padding: clamp(28px, 3.5vw, 48px);
  background: transparent;
  border-radius: 0;
}
.offer-intro, .offer-details { min-width: 0; }
.offer .offer-intro > .eyebrow {
  margin: 0 0 12px;
  color: #8d5038;
  font-size: 12px;
  letter-spacing: .1em;
}
.offer .offer-category {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.6;
  color: #485d51;
}
.offer .offer-title {
  margin: 0 0 18px;
  color: #123c34;
  font-size: clamp(30px, 3vw, 43px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -.04em;
  text-wrap: balance;
}
.offer .offer-location {
  margin: 0 0 25px;
  padding-left: 14px;
  border-left: 2px solid #aa6d4b;
  font-size: 15px;
  line-height: 1.65;
}
.offer .offer-lead {
  margin: 0 0 18px;
  color: #123c34;
  font-size: var(--text-body);
  font-weight: 500;
  line-height: 1.75;
}
.offer .offer-description {
  margin: 0;
  font-size: var(--text-body);
  line-height: 1.8;
}
.offer .offer-validity {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 20px;
  padding: 15px 17px;
  background: #e4eadd;
  border: 1px solid #d6dece;
  border-radius: 10px;
  color: #234a3c;
  font-size: 16px;
  line-height: 1.65;
  font-weight: 500;
}
.offer-validity svg { width: 24px; height: 24px; flex: 0 0 24px; }
.offer-validity i { font-style: normal; }
.offer-rates {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}
.offer .offer-rate {
  margin: 0;
  padding: 20px 18px;
  background: #fffdf8;
  border: 1px solid #e1d8c8;
  border-top: 3px solid #ac7857;
  border-radius: 12px;
  font-size: 15px;
  line-height: 1.6;
}
.offer .offer-rate > strong {
  display: block;
  margin-bottom: 16px;
  color: #123c34;
  font-size: 16px;
  font-weight: 650;
}
.offer-rate-prefix, .offer-rate-period { display: block; }
.offer-rate .offer-price {
  display: block;
  margin-block: 2px 4px;
  color: #123c34;
  font-size: clamp(25px, 2.25vw, 32px);
  line-height: 1.35;
  font-weight: 650;
  letter-spacing: -.045em;
  /* Allow the currency to wrap when readers increase text spacing. */
  white-space: normal;
}
.offer-benefits { margin: 0 0 22px; padding: 0; list-style: none; }
.offer-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding-block: 11px;
  border-bottom: 1px solid #dcded2;
  color: #485d51;
  font-size: 16px;
  line-height: 1.7;
}
.offer-benefit-icon { flex: 0 0 25px; text-align: center; }
.offer .offer-urgency {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin: 0 0 18px;
  color: #234a3c;
  font-size: 16px;
  line-height: 1.7;
}
.offer .offer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 54px;
  padding: 16px 20px;
  border: 1px solid #123c34;
  border-radius: 10px;
  background: #123c34;
  color: #fffdf7;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
  gap: 16px;
  transition: background .2s;
}
.offer .offer-cta:hover { background: #245748; }
.offer-cta svg { width: 22px; height: 22px; flex: 0 0 22px; }
@media (max-width: 1000px) {
  .offer .offer-copy { grid-template-columns: minmax(0, 1fr); gap: 30px; }
  .offer .offer-photo { height: clamp(220px, 36vw, 330px); }
  .offer .offer-title { max-width: 650px; font-size: clamp(30px, 4.8vw, 40px); }
  .offer .offer-rate .offer-price { font-size: 32px; }
}
@media (max-width: 540px) {
  .offer .offer-grid { border-radius: 16px; }
  .offer .offer-copy { padding: 28px 22px; gap: 26px; }
  .offer .offer-photo { height: 240px; }
  .offer .offer-photo > span { left: 16px; right: 16px; bottom: 16px; font-size: 11px; padding: 10px 12px; }
  .offer .offer-intro > .eyebrow { font-size: 11px; }
  .offer .offer-title { font-size: clamp(28px, 7vw, 35px); }
  .offer-rates { grid-template-columns: minmax(0, 1fr); }
  .offer .offer-rate { padding: 18px 20px; }
  .offer .offer-rate > strong { margin-bottom: 10px; }
  .offer .offer-validity { padding: 14px; align-items: flex-start; }
  .offer-validity svg { margin-top: 2px; }
}
@media (max-width: 360px) {
  .offer .offer-copy { padding-inline: 18px; }
  .offer .offer-rate { padding-inline: 16px; }
  .offer .offer-title { font-size: 27px; }
  .offer .offer-rate .offer-price { font-size: 29px; }
}
@media (prefers-reduced-motion: reduce) {
  .offer .offer-cta { transition: none; }
}
@media print {
  .offer .offer-grid { overflow: visible; }
  .offer .offer-copy { display: block; padding: 20px; }
  .offer-intro { margin-bottom: 24px; }
  .offer .offer-photo { height: 220px; }
  .offer-rate, .offer-validity, .offer-benefits li, .offer-cta { break-inside: avoid; }
}
