.offer-shell-v2{
  display:grid;
  gap:28px;
  padding:36px;
  border-radius:36px;
  background:linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.9));
  border:1px solid rgba(12,61,54,.08);
  box-shadow:0 28px 60px rgba(9,26,23,.08);
}

.offer-shell-v2__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
}

.offer-shell-v2__stats{
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
}

.offer-stat-pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  min-height:50px;
  padding:0 18px;
  border-radius:999px;
  background:rgba(12,61,54,.05);
  border:1px solid rgba(12,61,54,.06);
  color:var(--green-1);
  font-weight:800;
}

.offer-stat-pill i{
  color:var(--gold);
}

.offer-next-term-badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  min-height:48px;
  padding:0 18px;
  border-radius:999px;
  background:rgba(224,192,122,.12);
  border:1px solid rgba(224,192,122,.24);
  color:var(--green-1);
  font-weight:700;
}

.offer-next-term-badge i{
  color:var(--gold);
}

.offer-view-switch{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px;
  border-radius:999px;
  background:rgba(12,61,54,.06);
  border:1px solid rgba(12,61,54,.08);
}

.offer-view-switch__btn{
  min-height:48px;
  padding:0 24px;
  border:0;
  border-radius:999px;
  background:transparent;
  color:rgba(30,31,29,.72);
  font-weight:800;
  cursor:pointer;
  transition:.22s ease;
}

.offer-view-switch__btn.is-active{
  background:var(--green-1);
  color:var(--white);
  box-shadow:0 12px 24px rgba(12,61,54,.18);
}

.offer-panel{
  display:none;
}

.offer-panel.is-active{
  display:block;
}

.offer-toolbar-v2{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
  margin-bottom:18px;
}

.offer-search-v2{
  position:relative;
  flex:1 1 420px;
  min-width:280px;
}

.offer-search-v2 i{
  position:absolute;
  left:18px;
  top:50%;
  transform:translateY(-50%);
  color:rgba(30,31,29,.45);
}

.offer-search-v2 input{
  width:100%;
  min-height:58px;
  padding:0 18px 0 50px;
  border-radius:20px;
  border:1px solid rgba(12,61,54,.10);
  background:#fff;
  color:var(--green-1);
  box-shadow:0 8px 20px rgba(9,26,23,.04);
  outline:none;
}

.offer-search-v2 input:focus{
  border-color:rgba(12,61,54,.24);
  box-shadow:0 12px 28px rgba(9,26,23,.08);
}

.offer-toolbar-v2__right{
  display:flex;
  align-items:end;
  gap:12px;
  flex-wrap:wrap;
}

.offer-select-v2{
  display:grid;
  gap:6px;
}

.offer-select-v2 span{
  font-size:.8rem;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.06em;
  color:rgba(30,31,29,.54);
}

.offer-select-v2 select{
  min-height:58px;
  min-width:200px;
  padding:0 18px;
  border-radius:18px;
  border:1px solid rgba(12,61,54,.10);
  background:#fff;
  color:var(--green-1);
  font-weight:700;
  outline:none;
}

.offer-results-v2{
  display:flex;
  align-items:center;
  gap:8px;
  margin-bottom:20px;
  color:rgba(30,31,29,.72);
  font-weight:700;
}

.offer-results-v2 strong{
  color:var(--green-1);
  font-size:1.05rem;
}

.offer-grid-v2{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:22px;
}

.offer-card-v2{
  display:grid;
  grid-template-rows:auto 1fr;
  border-radius:28px;
  overflow:hidden;
  background:#fff;
  border:1px solid rgba(12,61,54,.08);
  box-shadow:0 16px 30px rgba(9,26,23,.06);
  transition:.22s ease;
}

.offer-card-v2:hover{
  transform:translateY(-3px);
  box-shadow:0 22px 38px rgba(9,26,23,.1);
}

.offer-card-v2__media{
  display:block;
  aspect-ratio:16/11;
  background:rgba(12,61,54,.04);
}

.offer-card-v2__media img,
.offer-card-v2__placeholder{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.offer-card-v2__placeholder{
  display:grid;
  place-items:center;
  color:rgba(12,61,54,.34);
  font-size:2rem;
}

.offer-card-v2__body{
  display:grid;
  gap:16px;
  padding:22px;
}

.offer-card-v2__top{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}

.badge{
  display:inline-flex;
  align-items:center;
  min-height:32px;
  padding:0 12px;
  border-radius:999px;
  background:rgba(224,192,122,.14);
  border:1px solid rgba(224,192,122,.2);
  color:var(--gold);
  font-size:.76rem;
  font-weight:800;
}

.badge--soft{
  background:rgba(12,61,54,.07);
  border-color:rgba(12,61,54,.08);
  color:var(--green-1);
}

.offer-card-v2 h3{
  font-family:var(--font-serif);
  font-size:2rem;
  line-height:1.04;
  color:var(--green-1);
}

.offer-card-v2 h3 a{
  color:inherit;
}

.offer-card-v2__meta{
  display:flex;
  flex-wrap:wrap;
  gap:12px 14px;
  color:rgba(30,31,29,.72);
  font-size:.92rem;
}

.offer-card-v2__meta span{
  display:inline-flex;
  align-items:center;
  gap:8px;
}

.offer-card-v2__meta i{
  color:var(--green-1);
}

.offer-card-v2__meta .price{
  font-weight:800;
  color:var(--green-1);
}

.offer-card-v2__status{
  display:grid;
  gap:6px;
}

.offer-card-v2__status-main{
  font-weight:800;
  color:var(--green-1);
}

.offer-card-v2__status-sub{
  color:rgba(30,31,29,.68);
  min-height:22px;
}

.offer-card-v2__actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  padding-top:2px;
}

.offer-btn-primary-v2,
.offer-btn-secondary-v2,
.offer-btn-ghost-v2{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:52px;
  padding:0 20px;
  border-radius:999px;
  font-weight:800;
  transition:.22s ease;
}

.offer-btn-primary-v2{
  background:var(--gold);
  color:var(--green-1);
  box-shadow:0 14px 28px rgba(224,192,122,.18);
}

.offer-btn-primary-v2:hover{
  transform:translateY(-1px);
  background:var(--gold-2);
}

.offer-btn-secondary-v2{
  background:var(--green-1);
  color:var(--white);
}

.offer-btn-secondary-v2:hover{
  transform:translateY(-1px);
  background:#11594d;
}

.offer-btn-ghost-v2{
  border:1px solid rgba(12,61,54,.12);
  color:var(--green-1);
  background:#fff;
}

.offer-btn-ghost-v2:hover{
  background:rgba(12,61,54,.04);
}

.offer-load-more-wrap{
  display:flex;
  justify-content:center;
  margin-top:24px;
}

.offer-load-more{
  min-height:52px;
  padding:0 24px;
  border-radius:999px;
  border:1px solid rgba(12,61,54,.12);
  background:#fff;
  color:var(--green-1);
  font-weight:800;
  cursor:pointer;
  transition:.22s ease;
}

.offer-load-more:hover{
  transform:translateY(-1px);
  background:rgba(12,61,54,.04);
}

.offer-toolbar-v2--calendar{
  margin-bottom:14px;
}

.offer-month-rail{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:18px;
}

.offer-month-pill{
  min-height:46px;
  padding:0 18px;
  border:1px solid rgba(12,61,54,.10);
  border-radius:999px;
  background:#fff;
  color:rgba(30,31,29,.74);
  font-weight:800;
  cursor:pointer;
  transition:.2s ease;
}

.offer-month-pill:hover{
  border-color:rgba(12,61,54,.2);
  transform:translateY(-1px);
}

.offer-month-pill.is-active{
  background:var(--green-1);
  color:var(--white);
  border-color:transparent;
  box-shadow:0 10px 20px rgba(12,61,54,.14);
}

.offer-agenda-v2{
  display:grid;
  gap:20px;
}

.offer-month-block{
  display:grid;
  gap:16px;
  padding:24px;
  border-radius:30px;
  background:linear-gradient(180deg, rgba(255,255,255,.9), rgba(255,255,255,.82));
  border:1px solid rgba(12,61,54,.08);
  box-shadow:0 18px 36px rgba(9,26,23,.05);
}

.offer-month-block__header{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
  padding-bottom:12px;
  border-bottom:1px solid rgba(12,61,54,.08);
}

.offer-month-block__header h3{
  font-family:var(--font-serif);
  font-size:2.15rem;
  color:var(--green-1);
  line-height:1.02;
}

.offer-month-block__header span{
  font-weight:800;
  color:rgba(30,31,29,.64);
}

.offer-month-block__list{
  display:grid;
  gap:16px;
}

.offer-agenda-item{
  display:grid;
  grid-template-columns:110px 110px minmax(0,1fr) auto;
  gap:18px;
  align-items:center;
  padding:18px;
  border-radius:24px;
  background:#fff;
  border:1px solid rgba(12,61,54,.08);
  box-shadow:0 10px 20px rgba(9,26,23,.04);
  transition:.22s ease;
}

.offer-agenda-item:hover{
  transform:translateY(-2px);
  box-shadow:0 16px 30px rgba(9,26,23,.08);
}

.offer-agenda-item__date{
  display:grid;
  gap:2px;
  align-content:center;
  justify-items:center;
  min-height:120px;
  border-radius:24px;
  text-align:center;
  padding:16px 10px;
}

.offer-agenda-item__date.is-offline{
  background:linear-gradient(135deg, #0d4139 0%, #166252 100%);
  color:#fff;
}

.offer-agenda-item__date.is-online{
  background:linear-gradient(180deg, rgba(224,192,122,.18), rgba(224,192,122,.08));
  border:1px solid rgba(224,192,122,.35);
  color:var(--green-1);
}

.offer-agenda-item__date-day{
  font-size:2rem;
  font-weight:800;
  line-height:1;
}

.offer-agenda-item__date-month{
  font-size:.78rem;
  font-weight:800;
  letter-spacing:.08em;
}

.offer-agenda-item__date-year{
  font-size:.9rem;
  opacity:.8;
  font-weight:700;
}

.offer-agenda-item__thumb{
  display:block;
  width:110px;
  height:110px;
  border-radius:22px;
  overflow:hidden;
  background:rgba(12,61,54,.05);
}

.offer-agenda-item__thumb img,
.offer-agenda-item__thumb-placeholder{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.offer-agenda-item__thumb-placeholder{
  display:grid;
  place-items:center;
  color:rgba(12,61,54,.34);
  font-size:1.8rem;
}

.offer-agenda-item__content{
  display:grid;
  gap:12px;
}

.offer-agenda-item__content h3{
  font-family:var(--font-serif);
  font-size:2rem;
  line-height:1.02;
  color:var(--green-1);
}

.offer-agenda-item__meta{
  display:flex;
  flex-wrap:wrap;
  gap:16px;
  color:rgba(30,31,29,.72);
}

.offer-agenda-item__meta span{
  display:inline-flex;
  align-items:center;
  gap:8px;
}

.offer-agenda-item__meta i{
  color:var(--green-1);
}

.offer-agenda-item__meta .price{
  font-weight:800;
  color:var(--green-1);
}

.offer-agenda-item__actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.offer-empty-v2{
  min-height:260px;
  display:grid;
  place-items:center;
  text-align:center;
  padding:42px;
  border-radius:28px;
  border:1px dashed rgba(12,61,54,.16);
  background:linear-gradient(180deg, rgba(255,255,255,.76), rgba(255,255,255,.94));
}

.offer-empty-v2__icon{
  width:72px;
  height:72px;
  margin:0 auto 16px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:rgba(12,61,54,.08);
  color:var(--green-1);
  font-size:1.8rem;
}

.offer-empty-v2 h3{
  font-family:var(--font-serif);
  font-size:2rem;
  color:var(--green-1);
  margin-bottom:10px;
}

.offer-empty-v2 p{
  color:rgba(30,31,29,.74);
}

.offer-empty-inline-v2{
  min-height:180px;
  display:grid;
  place-items:center;
  gap:10px;
  text-align:center;
  padding:28px;
  border-radius:24px;
  border:1px dashed rgba(12,61,54,.14);
  background:rgba(255,255,255,.76);
}

@media (max-width: 1200px){
  .offer-grid-v2{
    grid-template-columns:repeat(2, minmax(0,1fr));
  }

  .offer-agenda-item{
    grid-template-columns:110px 100px minmax(0,1fr);
  }

  .offer-agenda-item__actions{
    grid-column:1 / -1;
    justify-content:flex-start;
  }
}

@media (max-width: 980px){
  .offer-shell-v2{
    padding:24px;
    border-radius:28px;
  }

  .offer-grid-v2{
    grid-template-columns:1fr;
  }

  .offer-agenda-item{
    grid-template-columns:92px 92px 1fr;
    gap:14px;
  }

  .offer-agenda-item__date{
    min-height:92px;
    border-radius:20px;
  }

  .offer-agenda-item__date-day{
    font-size:1.55rem;
  }

  .offer-agenda-item__thumb{
    width:92px;
    height:92px;
    border-radius:18px;
  }
}

@media (max-width: 640px){
  .offer-view-switch{
    width:100%;
    justify-content:space-between;
  }

  .offer-view-switch__btn{
    flex:1 1 0;
    padding:0 14px;
  }

  .offer-stat-pill,
  .offer-next-term-badge{
    width:100%;
    justify-content:center;
  }

  .offer-search-v2{
    min-width:100%;
  }

  .offer-toolbar-v2__right,
  .offer-select-v2,
  .offer-select-v2 select{
    width:100%;
  }

  .offer-card-v2 h3,
  .offer-agenda-item__content h3{
    font-size:1.55rem;
  }

  .offer-card-v2__actions,
  .offer-agenda-item__actions{
    width:100%;
  }

  .offer-card-v2__actions .offer-btn-ghost-v2,
  .offer-card-v2__actions .offer-btn-secondary-v2,
  .offer-agenda-item__actions .offer-btn-ghost-v2,
  .offer-agenda-item__actions .offer-btn-primary-v2{
    width:100%;
  }

  .offer-agenda-item{
    grid-template-columns:1fr;
  }

  .offer-agenda-item__thumb{
    width:100%;
    height:180px;
  }

  .offer-month-block__header h3{
    font-size:1.55rem;
  }
}