/* =========================================
   OFFERS DETAIL PAGE
   Flat / 2 columns / synced with content.css + our-story.css
========================================= */

:root{
  --cream:#eee9de;
  --cream-2:#e9e3d6;
  --offer-soft:#f2ede3;
  --line:rgba(34,31,28,.16);
  --red:#8b0304;
  --ink:#111;
  --muted:#5e574f;
  --ease:cubic-bezier(.22,.72,.22,1);
  --font-title:'Americana','Americana BT',Georgia,serif;
  --font-body:'Montserrat',Arial,sans-serif;
}

html{scroll-behavior:smooth;}

body{
  background:var(--cream);
}

.offers-hero,
.offers-hero *,
.offers-anchor-nav,
.offers-anchor-nav *,
.offers-detail-page,
.offers-detail-page *,
.offer-booking-modal,
.offer-booking-modal *{
  box-sizing:border-box;
}

.offers-hero img,
.offers-detail-page img{display:block;max-width:100%;}

/* =========================
   HERO
========================= */
.offers-hero{
  position:relative;
  height:75vh;
  min-height:620px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  color:#fff;
  background:#0f0b09;
  font-family:var(--font-body);
}

.offers-hero-media{
  position:absolute;
  inset:0;
  z-index:1;
}

.offers-hero-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transform:scale(1.02);
  filter:saturate(.92) contrast(1.02);
}

.offers-hero::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:2;
  background:linear-gradient(to bottom,rgba(12,10,9,.18) 0%,rgba(12,10,9,.32) 45%,rgba(12,10,9,.58) 100%);
}

.offers-hero-content{
  position:relative;
  z-index:3;
  width:min(820px,calc(100% - 48px));
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:140px 32px 80px;
  text-align:center;
}

.offers-eyebrow{
  display:block;
  margin:0 0 14px;
  color:inherit;
  font-family:var(--font-body);
  font-size:10px;
  line-height:1;
  font-weight:800;
  letter-spacing:.26em;
  text-transform:uppercase;
}

.offers-hero h1,
.offers-detail-head h2,
.offer-card-copy h2,
.offer-modal-panel h2{
  font-family:var(--font-title);
  font-weight:400;
  text-transform:none;
}

.offers-hero h1{
  margin:0;
  color:#f4eadf;
  font-size:30px;
  line-height:1;
  text-shadow:0 6px 34px rgba(0,0,0,.34);
}

.offers-hero p{
  width:min(650px,100%);
  margin:0 auto;
  color:rgba(255,255,255,.88);
  font-family:var(--font-body);
  font-size:14px;
  line-height:1.9;
}

/* =========================
   ANCHOR NAV
========================= */
.offers-anchor-nav{
  position:sticky;
  top:0;
  z-index:30;
  display:flex;
  justify-content:center;
  gap:0;
  overflow-x:auto;
  -webkit-overflow-scrolling:touch;
  scrollbar-width:none;
  width:100%;
  padding:0 max(24px,7vw);
  background:rgba(238,233,222,.96);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  font-family:var(--font-body);
}

.offers-anchor-nav::-webkit-scrollbar{display:none;}

.offers-anchor-nav a{
  flex:0 0 auto;
  padding:18px 30px 16px 0;
  color:var(--ink);
  font-size:11px;
  line-height:1;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
  text-decoration:none;
  white-space:nowrap;
  transition:color .25s ease;
}

.offers-anchor-nav a:hover{color:var(--red);}

/* =========================
   PAGE INTRO + GRID
========================= */
.offers-detail-page{
  padding:96px 0 105px;
  background:var(--cream);
  color:var(--ink);
  font-family:var(--font-body);
}

.offers-detail-head{
  width:min(760px,86vw);
  margin:0 auto 74px;
  text-align:center;
}

.offers-detail-head h2{
  margin:0 0 22px;
  font-size:30px;
  line-height:1.06;
}

.offers-detail-head h2::after{
  content:"";
  display:block;
  width:54px;
  height:1px;
  margin:18px auto 0;
  background:rgba(139,3,4,.35);
}

.offers-detail-head p{
  margin:0 auto;
  color:#1f1a16;
  font-size:15px;
  line-height:2;
  letter-spacing:.01em;
}

.offers-grid{
  width:min(1180px,86vw);
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:58px 34px;
}

/* =========================
   OFFER CARD
========================= */
.offer-card{
  scroll-margin-top:92px;
  display:flex;
  flex-direction:column;
  min-width:0;
  background:var(--offer-soft);
  border:1px solid rgba(34,31,28,.08);
  border-radius:0;
  box-shadow:none;
}

.offer-card-media{
  position:relative;
  width:100%;
  height:320px;
  overflow:hidden;
  background:#d6d0c2;
  border:0;
  border-radius:0;
}

.offer-card-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  transform:scale(1.001);
  transition:transform .9s var(--ease);
}

.offer-card:hover .offer-card-media img{transform:scale(1.035);}

.offer-card-copy{
  flex:1;
  padding:28px 28px 30px;
  color:var(--ink);
}

.offer-card-copy .offers-eyebrow{
  margin-bottom:12px;
  color:var(--red);
}

.offer-card-copy h2{
  min-height:66px;
  margin:0 0 16px;
  font-size:30px;
  line-height:1.06;
  letter-spacing:-.01em;
}

.offer-price{
  display:block;
  margin:0 0 20px;
  color:var(--ink);
  font-size:12px;
  line-height:1.45;
  font-weight:800;
  letter-spacing:.1em;
  text-transform:uppercase;
}

.offer-intro{
  margin:0 0 28px;
  color:#1f1a16;
  font-size:14px;
  line-height:1.85;
  letter-spacing:.01em;
}

.offer-info-table{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  margin:0 0 32px;
  border-top:1px solid var(--line);
  border-left:1px solid var(--line);
}

.offer-info-table.three-col{grid-template-columns:repeat(3,1fr);}
.offer-info-table.four-col{grid-template-columns:repeat(4,1fr);}

.offer-info-table div{
  min-width:0;
  padding:15px 14px 14px;
  border-right:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

.offer-info-table span{
  display:block;
  margin:0 0 6px;
  color:var(--red);
  font-size:10px;
  line-height:1.2;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.offer-info-table p{
  margin:0;
  color:#302b27;
  font-size:13px;
  line-height:1.55;
}

.offer-card-copy h3{
  margin:0 0 14px;
  font-family:var(--font-body);
  font-size:12px;
  line-height:1;
  font-weight:800;
  letter-spacing:.14em;
  text-transform:uppercase;
}

.offer-card-copy ul{
  margin:0 0 28px;
  padding:0;
  list-style:none;
}

.offer-card-copy li{
  position:relative;
  margin:0;
  padding:7px 0 7px 18px;
  border-bottom:1px solid rgba(34,31,28,.08);
  color:#1f1a16;
  font-size:14px;
  line-height:1.55;
}

.offer-card-copy li::before{
  content:"";
  position:absolute;
  left:0;
  top:18px;
  width:4px;
  height:4px;
  background:var(--red);
}

.offer-note{
  margin:0 0 26px;
  padding-top:20px;
  border-top:1px solid var(--line);
  color:#1f1a16;
  font-size:14px;
  line-height:1.8;
}

.offer-book-btn,
.offer-submit-btn{
  appearance:none;
  -webkit-appearance:none;
  border-radius:0;
  box-shadow:none;
  cursor:pointer;
  font-family:var(--font-body);
}

.offer-book-btn{
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0 0 7px;
  border:0;
  background:transparent;
  color:var(--ink);
  font-size:11px;
  line-height:1;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.offer-book-btn::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:100%;
  height:1px;
  background:var(--red);
  transition:transform .38s ease;
}

.offer-book-btn:hover::after{transform:scaleX(1.18);}

/* =========================
   MODAL
========================= */
.offer-booking-modal{
  position:fixed;
  inset:0;
  z-index:9999;
  display:none;
  align-items:center;
  justify-content:center;
  padding:24px;
  font-family:var(--font-body);
}

.offer-booking-modal.is-open{display:flex;}

.offer-modal-backdrop{
  position:absolute;
  inset:0;
  background:rgba(17,17,17,.64);
}

.offer-modal-panel{
  position:relative;
  z-index:2;
  width:min(760px,100%);
  max-height:calc(100vh - 48px);
  overflow:auto;
  padding:54px 56px 48px;
  background:var(--cream);
  color:var(--ink);
  border:1px solid var(--line);
  border-radius:0;
  box-shadow:none;
}

.offer-modal-close{
  position:absolute;
  top:18px;
  right:22px;
  width:28px;
  height:28px;
  padding:0;
  border:0;
  background:transparent;
  color:var(--red);
  font-size:26px;
  line-height:1;
  cursor:pointer;
}

.offer-modal-panel h2{
  margin:0 0 14px;
  font-size:30px;
  line-height:1.06;
}

.offer-modal-panel > p{
  margin:0 0 30px;
  color:#1f1a16;
  font-size:14px;
  line-height:1.85;
}

.offer-booking-form label{
  display:block;
  margin:0 0 18px;
  color:#1f1a16;
  font-size:11px;
  line-height:1;
  font-weight:800;
  letter-spacing:.11em;
  text-transform:uppercase;
}

.offer-booking-form input,
.offer-booking-form textarea{
  display:block;
  width:100%;
  margin-top:9px;
  padding:13px 0 12px;
  border:0;
  border-bottom:1px solid var(--line);
  border-radius:0;
  outline:none;
  background:transparent;
  color:var(--ink);
  font-family:var(--font-body);
  font-size:14px;
  line-height:1.4;
  box-shadow:none;
}

.offer-booking-form input:focus,
.offer-booking-form textarea:focus{border-bottom-color:var(--red);}

.offer-form-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:24px;
}

.offer-submit-btn{
  margin-top:8px;
  padding:15px 34px;
  border:1px solid var(--red);
  background:var(--red);
  color:#fff;
  font-size:11px;
  line-height:1;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
  transition:background .28s ease,color .28s ease;
}

.offer-submit-btn:hover{
  background:transparent;
  color:var(--red);
}

.offer-modal-note{
  margin:18px 0 0;
  color:var(--muted);
  font-size:13px;
  line-height:1.7;
}

body.offer-modal-open{overflow:hidden;}

/* =========================
   FADE IN
========================= */
.fadein-up{
  opacity:0;
  transform:translate3d(0,38px,0);
  transition:opacity 1.35s var(--ease),transform 1.35s var(--ease);
  will-change:opacity,transform;
}

.fadein-up.is-visible{
  opacity:1;
  transform:translate3d(0,0,0);
}

/* =========================
   TABLET
========================= */
@media(max-width:980px){
  .offers-anchor-nav{justify-content:flex-start;}

  .offers-grid{
    width:calc(100% - 72px);
    grid-template-columns:1fr;
    gap:66px;
  }

  .offer-card-media{height:380px;}
  .offer-card-copy h2{min-height:0;}

  .offers-detail-head{
    width:calc(100% - 72px);
    margin-bottom:58px;
  }
}

/* =========================
   MOBILE
   True edge-to-edge offer cards + images
========================= */
@media(max-width:560px){

  .offers-hero{
    height:54vh;
    min-height:440px;
  }

  .offers-hero-content{
    width:100%;
    padding:110px 24px 60px;
  }

  .offers-hero h1,
  .offers-detail-head h2,
  .offer-card-copy h2,
  .offer-modal-panel h2{
    font-size:30px;
    line-height:1.08;
  }

  .offers-anchor-nav{
    justify-content:flex-start;
    padding:0 18px;
  }

  .offers-anchor-nav a{
    padding:16px 22px 14px 0;
    font-size:10px;
    letter-spacing:.14em;
  }

  .offers-detail-page{
    width:100vw;
    max-width:100vw;
    margin-left:calc(50% - 50vw);
    margin-right:calc(50% - 50vw);
    padding:60px 0 72px;
    overflow:hidden;
  }

  .offers-detail-head{
    width:100%;
    max-width:100%;
    padding:0 20px;
    margin:0 auto 42px;
    text-align:center;
  }

  .offers-detail-head p,
  .offers-hero p,
  .offer-intro,
  .offer-note{
    font-size:14px;
    line-height:1.92;
  }

  .offers-grid{
    width:100vw;
    max-width:100vw;
    margin-left:calc(50% - 50vw);
    margin-right:calc(50% - 50vw);
    display:grid;
    grid-template-columns:1fr;
    gap:36px;
  }

  .offer-card{
    width:100vw;
    max-width:100vw;
    margin:0;
    border-left:0;
    border-right:0;
    border-radius:0;
    overflow:hidden;
    background:var(--offer-soft);
  }

  .offer-card-media{
    width:100vw;
    max-width:100vw;
    height:260px;
    margin:0;
    overflow:hidden;
  }

  .offer-card-media img{
    width:100vw;
    max-width:100vw;
    height:100%;
    object-fit:cover;
    object-position:center;
    display:block;
  }

  .offer-card-copy{
    width:100%;
    padding:24px 20px 30px;
  }

  .offer-card-copy h2{
    min-height:auto;
    margin-bottom:14px;
  }

  .offer-price{
    margin-bottom:18px;
  }

  .offer-info-table,
  .offer-info-table.three-col,
  .offer-info-table.four-col{
    grid-template-columns:1fr;
  }

  .offer-info-table div{
    padding:14px 14px 13px;
  }

  .offer-card-copy li{
    font-size:13px;
    line-height:1.7;
  }

  .offer-note{
    padding-top:18px;
    margin-bottom:22px;
  }

  .offer-book-btn{
    font-size:10px;
    letter-spacing:.14em;
  }

  .offer-form-grid{
    grid-template-columns:1fr;
    gap:0;
  }

  .offer-modal-panel{
    width:100%;
    max-width:100%;
    padding:46px 22px 34px;
  }

}


/* Inline safety reset: ensures offers works even if external CSS path fails */
.offers-page-inline-safety{display:none!important;}



/* =========================================
   COMPACT OFFER CARDS / DETAIL TOGGLE
   Updated: remove tabs below banner, show details on click only
========================================= */
.offers-anchor-nav{display:none!important;}

.offer-card{
  overflow:hidden;
  transition:transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s ease;
}

.offer-card:hover{
  transform:translateY(-3px);
  box-shadow:0 18px 38px rgba(34,31,28,.07);
  border-color:rgba(139,3,4,.14);
}

.offer-card-copy{
  padding:28px 28px 24px;
}

.offer-intro{
  margin-bottom:18px;
}

.offer-detail-panel{
  display:none;
  padding-top:23px;
  margin-top:18px;
  border-top:1px solid var(--red);
  animation:offerDetailReveal .45s var(--ease) both;
}

.offer-detail-panel.is-open{
  display:block;
}

@keyframes offerDetailReveal{
  from{opacity:0;transform:translate3d(0,12px,0);}
  to{opacity:1;transform:translate3d(0,0,0);}
}

.offer-card-actions{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:34px;
  margin-top:18px;
  padding-top:17px;
  border-top:1px solid var(--red);
}

.offer-detail-btn{
  position:relative;
  appearance:none;
  -webkit-appearance:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:6px;
  padding:0;
  border:0;
  background:transparent;
  color:var(--ink);
  font-family:var(--font-body);
  font-size:11px;
  line-height:1;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
  cursor:pointer;
}

.offer-detail-btn::after{
  content:"↓";
  color:var(--red);
  font-size:12px;
  line-height:1;
  transform:translateY(-1px);
  transition:transform .3s ease;
}

.offer-detail-btn[aria-expanded="true"]::after{
  transform:translateY(-1px) rotate(180deg);
}

.offer-book-btn{
  padding-bottom:0;
}

.offer-book-btn::after{
  display:none;
}

.offer-card-copy h2{
  min-height:0;
  margin-bottom:30px;
}

.offer-price{
  margin-bottom:22px;
}



.offer-share-btn{
  position:relative;
  appearance:none;
  -webkit-appearance:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:7px;
  padding:0;
  border:0;
  background:transparent;
  color:var(--ink);
  font-family:var(--font-body);
  font-size:11px;
  line-height:1;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
  cursor:pointer;
  transition:color .28s ease, opacity .28s ease;
}

.offer-share-btn::after{
  content:"↗";
  color:var(--red);
  font-size:13px;
  line-height:1;
  transform:translateY(-1px);
  transition:transform .3s ease;
}

.offer-share-btn:hover{
  color:var(--red);
}

.offer-share-btn:hover::after{
  transform:translate(2px,-3px);
}

.offer-share-panel{
  display:none;
  grid-template-columns:1fr auto auto;
  align-items:center;
  gap:14px;
  margin-top:18px;
  padding:16px 0 0;
  border-top:1px solid rgba(139,3,4,.28);
  animation:offerDetailReveal .38s var(--ease) both;
}

.offer-share-panel.is-open{
  display:grid;
}

.offer-share-panel p{
  margin:0;
  color:#302b27;
  font-size:12px;
  line-height:1.6;
  letter-spacing:.02em;
}

.offer-share-panel a,
.offer-share-panel button{
  appearance:none;
  -webkit-appearance:none;
  border:0;
  background:transparent;
  color:var(--ink);
  font-family:var(--font-body);
  font-size:10px;
  line-height:1;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
  text-decoration:none;
  cursor:pointer;
  white-space:nowrap;
  transition:color .28s ease;
}

.offer-share-panel a:hover,
.offer-share-panel button:hover{
  color:var(--red);
}

.offer-share-feedback{
  display:none;
  margin-top:10px;
  color:var(--red);
  font-size:11px;
  line-height:1.5;
  font-weight:700;
  letter-spacing:.06em;
  text-transform:uppercase;
}

.offer-share-feedback.is-visible{
  display:block;
}

@media(max-width:560px){
  .offer-card-actions{
    justify-content:space-between;
    gap:18px;
    flex-wrap:wrap;
  }

  .offer-share-panel{
    grid-template-columns:1fr;
    gap:13px;
    padding-top:16px;
  }

  .offer-share-panel a,
  .offer-share-panel button{
    width:100%;
    padding:12px 0;
    border-top:1px solid rgba(34,31,28,.1);
    text-align:left;
  }

  .offer-card:hover{
    transform:none;
    box-shadow:none;
  }
}

/* Desktop share menu fix: always opens Send Email + Copy Link instead of native share */
.offer-card{position:relative;}
.offer-share-panel{
  right:28px;
  bottom:78px;
  z-index:9;
  min-width:250px;
}
.offer-share-panel a,
.offer-share-panel button{
  width:100%;
  text-align:left;
}
.offer-share-panel a::before{content:"✉"; margin-right:10px; color:var(--red);}
.offer-share-panel button::before{content:"⧉"; margin-right:10px; color:var(--red);}
.offer-share-btn[aria-expanded="true"]{color:var(--red);}
.offer-share-btn[aria-expanded="true"]::after{transform:scaleX(1.18);}


/* =========================================================
   FINAL FIX — SMOOTH DETAIL + DESKTOP EMAIL SHARE
   Keeps existing structure, only improves interaction states.
========================================================= */

.offer-detail-panel{
  display:block !important;
  max-height:0;
  overflow:hidden;
  opacity:0;
  padding-top:0;
  margin-top:0;
  border-top:1px solid rgba(139,3,4,0);
  transform:translate3d(0,-6px,0);
  transition:
    max-height .56s cubic-bezier(.22,.72,.22,1),
    opacity .38s ease,
    padding-top .42s cubic-bezier(.22,.72,.22,1),
    margin-top .42s cubic-bezier(.22,.72,.22,1),
    border-color .42s ease,
    transform .48s cubic-bezier(.22,.72,.22,1);
  will-change:max-height,opacity,transform;
  animation:none !important;
}

.offer-detail-panel[hidden]{
  display:block !important;
  max-height:0 !important;
  opacity:0 !important;
  padding-top:0 !important;
  margin-top:0 !important;
  border-top-color:rgba(139,3,4,0) !important;
  pointer-events:none;
}

.offer-detail-panel.is-open{
  opacity:1;
  padding-top:23px;
  margin-top:18px;
  border-top-color:var(--red);
  transform:translate3d(0,0,0);
  pointer-events:auto;
}

.offer-detail-btn span{
  pointer-events:none;
}

.offer-share-panel{
  min-width:260px !important;
}

.offer-share-panel{
  display:none;
}

.offer-share-panel.is-open{
  display:grid;
}

.offer-share-panel a,
.offer-share-panel button{
  cursor:pointer;
}

.offer-share-panel a[href^="mailto:"]{
  pointer-events:auto;
}

.offer-share-panel a::before{
  content:"✉";
  margin-right:10px;
  color:var(--red);
}

.offer-share-panel button::before{
  content:"⧉";
  margin-right:10px;
  color:var(--red);
}

@media(min-width:561px){
  .offer-share-panel{
    grid-template-columns:1fr;
    gap:12px;
    padding:18px 18px 16px;
    background:rgba(242,237,227,.98);
    border:1px solid rgba(139,3,4,.22);
    }

  .offer-share-panel p{
    padding-bottom:10px;
    border-bottom:1px solid rgba(139,3,4,.16);
  }

  .offer-share-panel a,
  .offer-share-panel button{
    padding:4px 0;
  }
}


/* =========================================================
   FINAL SHARE BUTTON STYLE — INLINE / ELEGANT / LIKE REFERENCE
   Updated for attached HTML structure
========================================================= */

.offer-card-actions{
  display:flex !important;
  align-items:center !important;
  justify-content:flex-end !important;
  gap:38px !important;
  margin-top:20px !important;
  padding-top:17px !important;
  border-top:1px solid var(--red) !important;
}

.offer-detail-btn,
.offer-book-btn,
.offer-share-btn{
  min-height:16px !important;
  padding:0 !important;
  border:0 !important;
  background:transparent !important;
  box-shadow:none !important;
  color:var(--ink) !important;
  font-family:var(--font-body) !important;
  font-size:12px !important;
  line-height:1 !important;
  font-weight:600 !important;
  letter-spacing:.13em !important;
  text-transform:uppercase !important;
  text-decoration:none !important;
}

.offer-detail-btn::after{
  content:"↓" !important;
  margin-left:2px !important;
  color:var(--red) !important;
  font-size:12px !important;
  line-height:1 !important;
  transform:translateY(-1px) !important;
  transition:transform .32s var(--ease) !important;
}

.offer-detail-btn[aria-expanded="true"]::after{
  transform:translateY(-1px) rotate(180deg) !important;
}

.offer-book-btn::after{
  display:none !important;
}

.offer-share-btn{
  color:var(--ink) !important;
  transition:color .28s ease !important;
}

.offer-share-btn::after{
  content:"↗" !important;
  margin-left:2px !important;
  color:var(--red) !important;
  font-size:13px !important;
  line-height:1 !important;
  transform:translateY(-1px) !important;
  transition:transform .32s var(--ease) !important;
}

.offer-share-btn:hover,
.offer-share-btn[aria-expanded="true"]{
  color:var(--red) !important;
}

.offer-share-btn:hover::after,
.offer-share-btn[aria-expanded="true"]::after{
  transform:translate(2px,-3px) !important;
}

/* Inline share row — not a dropdown box */
.offer-share-panel{
  position:static !important;
  right:auto !important;
  bottom:auto !important;
  z-index:auto !important;
  min-width:0 !important;
  width:100% !important;
  margin:18px 0 0 !important;
  padding:17px 0 14px !important;
  background:transparent !important;
  border:0 !important;
  border-top:0 !important;
  border-bottom:1px solid rgba(139,3,4,.18) !important;
  box-shadow:none !important;
  display:grid !important;
  grid-template-columns:minmax(0,1fr) auto auto !important;
  align-items:center !important;
  gap:18px !important;
  overflow:hidden !important;
  max-height:0 !important;
  opacity:0 !important;
  transform:translate3d(0,-6px,0) !important;
  pointer-events:none !important;
  transition:
    max-height .42s var(--ease),
    opacity .28s ease,
    transform .34s var(--ease),
    padding-top .32s var(--ease),
    padding-bottom .32s var(--ease) !important;
  animation:none !important;
}

.offer-share-panel[hidden]{
  display:grid !important;
  max-height:0 !important;
  opacity:0 !important;
  padding-top:0 !important;
  padding-bottom:0 !important;
  border-bottom-color:rgba(139,3,4,0) !important;
  pointer-events:none !important;
}

.offer-share-panel.is-open{
  max-height:90px !important;
  opacity:1 !important;
  transform:translate3d(0,0,0) !important;
  pointer-events:auto !important;
}

.offer-share-panel p{
  margin:0 !important;
  padding:0 !important;
  border:0 !important;
  color:#6e665f !important;
  font-size:12px !important;
  line-height:1.55 !important;
  letter-spacing:.01em !important;
  white-space:normal !important;
}

.offer-share-panel a,
.offer-share-panel button{
  appearance:none !important;
  -webkit-appearance:none !important;
  width:auto !important;
  padding:0 !important;
  border:0 !important;
  background:transparent !important;
  color:var(--ink) !important;
  font-family:var(--font-body) !important;
  font-size:10px !important;
  line-height:1 !important;
  font-weight:800 !important;
  letter-spacing:.13em !important;
  text-transform:uppercase !important;
  text-align:left !important;
  text-decoration:none !important;
  white-space:nowrap !important;
  cursor:pointer !important;
  transition:color .28s ease, transform .28s ease !important;
}

.offer-share-panel a:hover,
.offer-share-panel button:hover{
  color:var(--red) !important;
  transform:translateY(-1px) !important;
}

.offer-share-panel a::before{
  content:"✉" !important;
  display:inline-block !important;
  margin-right:9px !important;
  color:var(--red) !important;
  font-size:10px !important;
  transform:translateY(-1px) !important;
}

.offer-share-panel button::before{
  content:"⧉" !important;
  display:inline-block !important;
  margin-right:9px !important;
  color:var(--red) !important;
  font-size:10px !important;
  transform:translateY(-1px) !important;
}

.offer-share-feedback{
  margin-top:9px !important;
  color:var(--red) !important;
  font-size:10px !important;
  line-height:1.5 !important;
  font-weight:800 !important;
  letter-spacing:.12em !important;
  text-transform:uppercase !important;
}

@media(max-width:760px){
  .offer-card-actions{
    justify-content:space-between !important;
    gap:16px !important;
    flex-wrap:wrap !important;
  }

  .offer-share-panel,
  .offer-share-panel.is-open{
    grid-template-columns:1fr !important;
    gap:13px !important;
    max-height:190px !important;
  }

  .offer-share-panel[hidden]{
    max-height:0 !important;
  }

  .offer-share-panel a,
  .offer-share-panel button{
    width:100% !important;
    padding:10px 0 0 !important;
    border-top:1px solid rgba(34,31,28,.09) !important;
  }
}

@media(max-width:420px){
  .offer-card-actions{
    align-items:flex-start !important;
    flex-direction:column !important;
    gap:14px !important;
  }
}


/* =========================================================
   FINAL MOBILE ACTION BUTTONS
   Matches reference: Detail / Book Now / Share Offers in one refined row
========================================================= */
@media(max-width:560px){
  .offer-card-copy{
    padding:24px 22px 84px;
  }

  .offer-card-actions{
    display:flex !important;
    align-items:center !important;
    justify-content:space-between !important;
    flex-wrap:nowrap !important;
    gap:10px !important;
    width:100% !important;
    margin-top:22px !important;
    padding-top:16px !important;
    border-top:1px solid var(--red) !important;
  }

  .offer-detail-btn,
  .offer-book-btn,
  .offer-share-btn{
    flex:0 1 auto !important;
    min-width:0 !important;
    white-space:nowrap !important;
    padding:0 !important;
    border:0 !important;
    background:transparent !important;
    color:var(--ink) !important;
    font-size:10px !important;
    line-height:1 !important;
    font-weight:600 !important;
    letter-spacing:.14em !important;
    text-transform:uppercase !important;
  }

  .offer-detail-btn::after{
    content:"↓" !important;
    margin-left:3px !important;
    color:var(--red) !important;
    font-size:10px !important;
    transform:translateY(-1px) !important;
  }

  .offer-detail-btn[aria-expanded="true"]::after{
    transform:translateY(-1px) rotate(180deg) !important;
  }

  .offer-share-btn{
    color:var(--ink) !important;
  }

  .offer-share-btn::after{
    content:"↗" !important;
    margin-left:4px !important;
    color:var(--red) !important;
    font-size:11px !important;
    transform:translateY(-1px) !important;
  }

  .offer-share-btn[aria-expanded="true"]{
    color:var(--red) !important;
  }

  .offer-book-btn::after{
    display:none !important;
  }

  .offer-share-panel{
    grid-template-columns:1fr !important;
    gap:0 !important;
    width:100% !important;
    min-width:0 !important;
    margin-top:18px !important;
    padding:14px 0 0 !important;
    background:transparent !important;
    border:0 !important;
    border-top:1px solid rgba(139,3,4,.18) !important;
    box-shadow:none !important;
  }

  .offer-share-panel.is-open{
    display:grid !important;
  }

  .offer-share-panel p{
    margin:0 0 8px !important;
    padding:0 !important;
    border:0 !important;
    color:#4d463f !important;
    font-size:12px !important;
    line-height:1.65 !important;
    letter-spacing:.01em !important;
    text-align:left !important;
  }

  .offer-share-panel a,
  .offer-share-panel button{
    width:100% !important;
    padding:12px 0 !important;
    border-top:1px solid rgba(34,31,28,.1) !important;
    text-align:left !important;
    font-size:10px !important;
    letter-spacing:.14em !important;
  }

  .offer-share-feedback{
    margin-top:10px !important;
    font-size:10px !important;
    letter-spacing:.12em !important;
  }
}


/* =========================================================
   FINAL MICRO FIX — MOBILE BUTTONS ONE LINE
   Only adjusts mobile action buttons. No other section affected.
========================================================= */
@media(max-width:560px){
  .offer-card-actions{
    display:flex !important;
    flex-direction:row !important;
    align-items:center !important;
    justify-content:space-between !important;
    flex-wrap:nowrap !important;
    gap:6px !important;
    width:100% !important;
    margin-top:22px !important;
    padding-top:16px !important;
    border-top:1px solid var(--red) !important;
  }

  .offer-detail-btn,
  .offer-book-btn,
  .offer-share-btn{
    flex:0 0 auto !important;
    width:auto !important;
    min-width:auto !important;
    max-width:none !important;
    white-space:nowrap !important;
    padding:0 !important;
    margin:0 !important;
    font-size:11px !important;
    line-height:1 !important;
    letter-spacing:.08em !important;
    text-align:left !important;
  }

  .offer-detail-btn{
    justify-content:flex-start !important;
  }

  .offer-book-btn{
    justify-content:center !important;
  }

  .offer-share-btn{
    justify-content:flex-end !important;
  }

  .offer-detail-btn::after{
    margin-left:3px !important;
    font-size:9px !important;
  }

  .offer-share-btn::after{
    margin-left:3px !important;
    font-size:10px !important;
  }
}

/* =========================================================
   FINAL FIX — OFFERS HERO FADE-IN LIKE CONTACT + DATE PICKER
   Scope: Offers page only. No other components affected.
========================================================= */

/* Hero follows contact.css rhythm: dark base, centered title, soft vertical reveal */
.offers-hero.fadein-up{
  opacity:0;
  transform:translate3d(0,38px,0);
  transition:
    opacity 1.35s var(--ease),
    transform 1.35s var(--ease);
  will-change:opacity,transform;
}

.offers-hero.fadein-up.is-visible{
  opacity:1;
  transform:translate3d(0,0,0);
}

.offers-hero .offers-hero-content.fadein-up{
  opacity:0;
  transform:translate3d(0,30px,0);
  transition:
    opacity 1.35s var(--ease) .18s,
    transform 1.35s var(--ease) .18s;
  will-change:opacity,transform;
}

.offers-hero .offers-hero-content.fadein-up.is-visible{
  opacity:1;
  transform:translate3d(0,0,0);
}

.offers-hero .offers-hero-media img{
  transform:scale(1.02);
  transition:transform 1.8s var(--ease), filter .8s ease;
}

.offers-hero.fadein-up.is-visible .offers-hero-media img{
  transform:scale(1.045);
}

/* Refined date picker fields inside Book Offers popup */
.offer-booking-form input[type="date"]{
  position:relative;
  min-height:45px;
  padding:13px 38px 12px 0;
  color:#1d1714;
  letter-spacing:.01em;
  cursor:pointer;
  color-scheme:light;
}

.offer-booking-form input[type="date"]::-webkit-datetime-edit{
  color:#1d1714;
  font-family:var(--font-body);
  font-size:14px;
  letter-spacing:.01em;
}

.offer-booking-form input[type="date"]::-webkit-datetime-edit-fields-wrapper{
  padding:0;
}

.offer-booking-form input[type="date"]::-webkit-datetime-edit-text{
  color:rgba(139,3,4,.62);
  padding:0 3px;
}

.offer-booking-form input[type="date"]::-webkit-datetime-edit-month-field,
.offer-booking-form input[type="date"]::-webkit-datetime-edit-day-field,
.offer-booking-form input[type="date"]::-webkit-datetime-edit-year-field{
  color:#1d1714;
}

.offer-booking-form input[type="date"]::-webkit-calendar-picker-indicator{
  width:18px;
  height:18px;
  margin:0;
  padding:0;
  cursor:pointer;
  opacity:.82;
  filter:sepia(1) saturate(5) hue-rotate(315deg) brightness(.62);
  transition:opacity .28s ease, transform .28s var(--ease);
}

.offer-booking-form input[type="date"]::-webkit-calendar-picker-indicator:hover{
  opacity:1;
  transform:translateY(-1px);
}

.offer-booking-form label:has(input[type="date"]){
  position:relative;
}

.offer-booking-form label:has(input[type="date"])::after{
  content:"";
  position:absolute;
  right:0;
  bottom:14px;
  width:25px;
  height:25px;
  border:1px solid rgba(139,3,4,.22);
  border-radius:50%;
  background:rgba(139,3,4,.025);
  pointer-events:none;
  transition:border-color .3s ease, background .3s ease;
}

.offer-booking-form label:has(input[type="date"]):focus-within::after{
  border-color:rgba(139,3,4,.52);
  background:rgba(139,3,4,.045);
}

.offer-booking-form input[type="date"]:focus{
  border-bottom-color:var(--red);
}

.offer-booking-form input[type="date"]:invalid,
.offer-booking-form input[type="date"]:placeholder-shown{
  color:rgba(38,33,30,.48);
}

/* Dropdown-like refinement for native calendar popup trigger row */
.offer-form-grid label{
  min-width:0;
}

.offer-modal-panel{
  scrollbar-width:thin;
  scrollbar-color:rgba(139,3,4,.42) rgba(238,233,222,.7);
}

.offer-modal-panel::-webkit-scrollbar{
  width:8px;
}

.offer-modal-panel::-webkit-scrollbar-track{
  background:rgba(238,233,222,.7);
}

.offer-modal-panel::-webkit-scrollbar-thumb{
  background:rgba(139,3,4,.36);
  border-radius:20px;
}

@media(max-width:560px){
  .offers-hero.fadein-up,
  .offers-hero .offers-hero-content.fadein-up{
    transform:translate3d(0,30px,0);
  }

  .offers-hero.fadein-up.is-visible,
  .offers-hero .offers-hero-content.fadein-up.is-visible{
    transform:translate3d(0,0,0);
  }

  .offer-booking-form input[type="date"]{
    min-height:48px;
    padding-right:40px;
    font-size:14px;
  }

  .offer-booking-form label:has(input[type="date"])::after{
    bottom:15px;
    width:27px;
    height:27px;
  }
}

/* =========================================================
   CUSTOM BOOK OFFER CALENDAR PICKER — refined dropdown
   Fixes native date picker issue and matches contact-style tone.
========================================================= */
.offer-date-label{
  position:relative !important;
}

.offer-date-input{
  cursor:pointer !important;
  padding-right:34px !important;
  color:#1d1714 !important;
}

.offer-date-label::after{
  content:"" !important;
  position:absolute !important;
  right:2px !important;
  bottom:14px !important;
  width:14px !important;
  height:14px !important;
  opacity:.86 !important;
  pointer-events:none !important;
  background-repeat:no-repeat !important;
  background-position:center !important;
  background-size:14px 14px !important;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%238b0304' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='5' width='16' height='15' rx='0'/%3E%3Cpath d='M8 3v4M16 3v4M4 10h16'/%3E%3C/svg%3E") !important;
}

.offer-calendar-picker{
  position:absolute;
  z-index:10080;
  width:286px;
  padding:18px 18px 16px;
  background:#f5f0e6;
  border:1px solid rgba(139,3,4,.18);
  box-shadow:0 18px 46px rgba(31,25,20,.18);
  color:#100d0b;
  font-family:var(--font-body);
  opacity:0;
  transform:translate3d(0,8px,0);
  transition:opacity .22s ease, transform .28s cubic-bezier(.22,.72,.22,1);
}

.offer-calendar-picker.is-open{
  opacity:1;
  transform:translate3d(0,0,0);
}

.offer-calendar-head{
  display:grid;
  grid-template-columns:32px 1fr 32px;
  align-items:center;
  gap:8px;
  margin-bottom:16px;
}

.offer-cal-title,
.offer-cal-prev,
.offer-cal-next,
.offer-cal-clear,
.offer-cal-today,
.offer-cal-day{
  appearance:none;
  -webkit-appearance:none;
  border:0;
  border-radius:0;
  background:transparent;
  box-shadow:none;
  font-family:var(--font-body);
  cursor:pointer;
}

.offer-cal-title{
  color:#100d0b;
  font-size:12px;
  line-height:1;
  font-weight:800;
  letter-spacing:.02em;
  text-align:center;
}

.offer-cal-prev,
.offer-cal-next{
  width:32px;
  height:30px;
  color:var(--red,#8b0304);
  font-size:24px;
  line-height:1;
  font-weight:300;
  transition:opacity .25s ease, transform .25s ease;
}

.offer-cal-prev:hover,
.offer-cal-next:hover{
  opacity:.72;
  transform:translateY(-1px);
}

.offer-calendar-week,
.offer-calendar-days{
  display:grid;
  grid-template-columns:repeat(7,1fr);
  gap:6px;
}

.offer-calendar-week{
  margin-bottom:8px;
}

.offer-calendar-week span{
  color:#302b27;
  font-size:10px;
  line-height:1;
  font-weight:800;
  letter-spacing:.12em;
  text-align:center;
  text-transform:uppercase;
}

.offer-cal-day{
  width:100%;
  height:30px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#15100e;
  font-size:12px;
  line-height:1;
  font-weight:500;
  transition:background .22s ease, color .22s ease, opacity .22s ease, transform .22s ease;
}

.offer-cal-day.is-muted{
  color:rgba(21,16,14,.32);
}

.offer-cal-day.is-today{
  outline:1px solid rgba(139,3,4,.28);
  outline-offset:-1px;
}

.offer-cal-day.is-selected,
.offer-cal-day:hover{
  background:var(--red,#8b0304);
  color:#fff;
  transform:translateY(-1px);
}

.offer-calendar-footer{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  margin-top:14px;
  padding-top:13px;
  border-top:1px solid rgba(139,3,4,.14);
}

.offer-cal-clear,
.offer-cal-today{
  color:var(--red,#8b0304);
  font-size:10px;
  line-height:1;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
  transition:opacity .24s ease, transform .24s ease;
}

.offer-cal-clear:hover,
.offer-cal-today:hover{
  opacity:.72;
  transform:translateY(-1px);
}

/* Match Contact hero fade rhythm for offers banner */
.offers-hero.fadein-up,
.offers-hero .offers-hero-content.fadein-up{
  opacity:0;
  transform:translate3d(0,38px,0);
  transition:opacity 1.35s var(--ease,cubic-bezier(.22,.72,.22,1)), transform 1.35s var(--ease,cubic-bezier(.22,.72,.22,1));
  will-change:opacity,transform;
}

.offers-hero.fadein-up.is-visible,
.offers-hero .offers-hero-content.fadein-up.is-visible{
  opacity:1;
  transform:translate3d(0,0,0);
}

@media(max-width:560px){
  .offer-calendar-picker{
    position:fixed;
    left:18px !important;
    right:18px !important;
    top:auto !important;
    bottom:24px !important;
    width:auto;
    max-width:none;
    padding:18px 16px 16px;
  }

  .offer-cal-day{
    height:34px;
  }
}


/* =========================================================
   FINAL MICRO INTERACTION — ACTION BUTTON HOVER
   Detail / Book Now / Share Offers: red hover + gentle icon movement
   No layout or other sections affected.
========================================================= */
.offer-card-actions .offer-detail-btn,
.offer-card-actions .offer-book-btn,
.offer-card-actions .offer-share-btn{
  transition:color .28s ease, opacity .28s ease, transform .28s ease !important;
}

.offer-card-actions .offer-detail-btn:hover,
.offer-card-actions .offer-book-btn:hover,
.offer-card-actions .offer-share-btn:hover,
.offer-card-actions .offer-detail-btn:focus-visible,
.offer-card-actions .offer-book-btn:focus-visible,
.offer-card-actions .offer-share-btn:focus-visible{
  color:var(--red) !important;
}

.offer-card-actions .offer-detail-btn::after,
.offer-card-actions .offer-share-btn::after{
  display:inline-block !important;
  transition:transform .32s cubic-bezier(.22,.72,.22,1), color .28s ease !important;
  will-change:transform;
}

.offer-card-actions .offer-detail-btn:hover::after,
.offer-card-actions .offer-detail-btn:focus-visible::after{
  color:var(--red) !important;
  transform:translate(0,2px) !important;
}

.offer-card-actions .offer-detail-btn[aria-expanded="true"]:hover::after,
.offer-card-actions .offer-detail-btn[aria-expanded="true"]:focus-visible::after{
  transform:translate(0,-2px) rotate(180deg) !important;
}

.offer-card-actions .offer-share-btn:hover::after,
.offer-card-actions .offer-share-btn:focus-visible::after{
  color:var(--red) !important;
  transform:translate(3px,-3px) !important;
}

.offer-card-actions .offer-book-btn:hover,
.offer-card-actions .offer-book-btn:focus-visible{
  transform:translateY(-1px) !important;
}

.offer-card-actions .offer-detail-btn:focus-visible,
.offer-card-actions .offer-book-btn:focus-visible,
.offer-card-actions .offer-share-btn:focus-visible{
  outline:none !important;
}


/* =========================================================
   FINAL TWO OFFERS — OLD CARD LAYOUT / EXTRACTED CONTENT
   Scope: Offers page only. Keeps original card layout and interactions.
========================================================= */
.offers-grid--two-only{
  align-items:start;
}

.offers-grid--two-only .offer-card{
  min-height:100%;
  background:var(--offer-soft);
}

.offers-grid--two-only .offer-card-media{
  height:330px;
}

.offers-grid--two-only .offer-card-copy{
  display:flex;
  flex-direction:column;
}

.offers-grid--two-only .offer-card-copy h2{
  min-height:0 !important;
  margin-bottom:18px !important;
}

.offers-grid--two-only .offer-intro{
  margin-bottom:24px;
}

.offers-grid--two-only .offer-card-actions{
  margin-top:auto !important;
}

.offer-copy-paragraph{
  margin:0 0 18px;
  color:#1f1a16;
  font-size:14px;
  line-height:1.82;
  letter-spacing:.01em;
}

@media(max-width:980px){
  .offers-grid--two-only .offer-card-media{
    height:380px;
  }
}

@media(max-width:560px){
  .offers-grid--two-only .offer-card-media{
    height:260px;
  }

  .offers-grid--two-only .offer-card-copy{
    padding-bottom:30px !important;
  }
}


/* =========================================================
   FINAL REFINEMENT — TWO OFFERS LUXURY TYPOGRAPHY + ICON
   Scope: two extracted offer cards only. No other sections affected.
========================================================= */
.offers-grid--two-only .offer-card-copy{
  padding:32px 32px 30px !important;
}

.offers-grid--two-only .offer-card-copy .offers-eyebrow{
  margin-bottom:14px !important;
  color:var(--red) !important;
  font-size:10px !important;
  letter-spacing:.18em !important;
}

.offers-grid--two-only .offer-card-copy h2{
  min-height:0 !important;
  margin:0 0 18px !important;
  font-size:20px !important;
  line-height:1.24 !important;
  letter-spacing:.005em !important;
  color:#17120f !important;
}

.offers-grid--two-only .offer-price{
  margin:0 0 20px !important;
  font-size:11px !important;
  line-height:1.55 !important;
  letter-spacing:.095em !important;
  color:#342d28 !important;
}

.offers-grid--two-only .offer-intro{
  margin:0 0 24px !important;
  font-size:14px !important;
  line-height:1.86 !important;
  letter-spacing:.006em !important;
  color:#241f1b !important;
}

.offers-grid--two-only .offer-detail-panel{
  margin-top:0;
}

.offers-grid--two-only .offer-detail-panel.is-open{
  padding-top:24px !important;
  margin-top:20px !important;
}

.offers-grid--two-only .offer-detail-panel h3{
  margin-bottom:16px !important;
  color:#211b17 !important;
  font-size:11px !important;
  letter-spacing:.16em !important;
}

.offers-grid--two-only .offer-card-copy ul{
  margin-bottom:26px !important;
}

.offers-grid--two-only .offer-card-copy li{
  padding-top:8px !important;
  padding-bottom:8px !important;
  font-size:14px !important;
  line-height:1.62 !important;
}

.offers-grid--two-only .offer-note{
  margin-top:6px !important;
  margin-bottom:26px !important;
  padding-top:19px !important;
  font-size:13px !important;
  line-height:1.82 !important;
}

.offers-grid--two-only .offer-copy-paragraph{
  margin:0 0 17px !important;
  font-size:14px !important;
  line-height:1.84 !important;
  letter-spacing:.006em !important;
  color:#241f1b !important;
}

.offers-grid--two-only .offer-refined-highlight{
  display:flex !important;
  align-items:flex-start !important;
  gap:12px !important;
  margin:20px 0 20px !important;
  padding:16px 0 !important;
  border-top:1px solid rgba(139,3,4,.18) !important;
  border-bottom:1px solid rgba(139,3,4,.18) !important;
  color:#211b17 !important;
}

.offers-grid--two-only .offer-refined-icon{
  flex:0 0 28px !important;
  width:28px !important;
  height:28px !important;
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  margin-top:2px !important;
  border:1px solid rgba(139,3,4,.24) !important;
  border-radius:50% !important;
  color:var(--red) !important;
  background:rgba(139,3,4,.025) !important;
}

.offers-grid--two-only .offer-refined-icon svg{
  width:15px !important;
  height:15px !important;
  display:block !important;
  fill:none !important;
  stroke:currentColor !important;
  stroke-width:1.45 !important;
  stroke-linecap:round !important;
  stroke-linejoin:round !important;
}

.offers-grid--two-only .offer-card-actions{
  margin-top:auto !important;
  padding-top:18px !important;
  gap:34px !important;
}

@media(max-width:980px){
  .offers-grid--two-only .offer-card-copy{
    padding:30px 30px 30px !important;
  }
}

@media(max-width:560px){
  .offers-grid--two-only .offer-card-copy{
    padding:26px 22px 30px !important;
  }

  .offers-grid--two-only .offer-card-copy h2{
    font-size:20px !important;
    line-height:1.28 !important;
    margin-bottom:16px !important;
  }

  .offers-grid--two-only .offer-intro,
  .offers-grid--two-only .offer-copy-paragraph{
    line-height:1.82 !important;
  }

  .offers-grid--two-only .offer-refined-highlight{
    gap:11px !important;
    padding:15px 0 !important;
  }

  .offers-grid--two-only .offer-refined-icon{
    flex-basis:26px !important;
    width:26px !important;
    height:26px !important;
  }

  .offers-grid--two-only .offer-card-actions{
    gap:8px !important;
  }
}
