/* ═══════════════════════════════════════════════════════════
   CHURCH EVENTS SECTION — style.css
   Mobile-first, modern, warm & inviting
═══════════════════════════════════════════════════════════ */

/* ── CSS Variables ── */
:root {
  --gold:        #C9A84C;
  --gold-light:  #F0D080;
  --gold-dark:   #9E7A2A;
  --navy:        #1A2640;
  --navy-light:  #243353;
  --cream:       #FDF8F2;
  --white:       #FFFFFF;
  --text-dark:   #1C1C2E;
  --text-mid:    #4A4A68;
  --text-soft:   #7A7A96;
  --border:      #E8E4DC;
  --shadow-sm:   0 2px 8px rgba(0,0,0,0.07);
  --shadow-md:   0 6px 24px rgba(0,0,0,0.12);
  --shadow-lg:   0 16px 48px rgba(0,0,0,0.18);
  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   20px;
  --transition:  0.25s ease;
  --font-body:   'Inter', system-ui, sans-serif;
  --font-display:'Playfair Display', Georgia, serif;
}

/* ── Skeleton Loaders ── */
@keyframes shimmer {
  0%   { background-position: -600px 0; }
  100% { background-position:  600px 0; }
}

.skeleton-featured,
.skeleton-card {
  background: linear-gradient(90deg, #ece9e2 25%, #f5f2ec 50%, #ece9e2 75%);
  background-size: 600px 100%;
  animation: shimmer 1.4s infinite linear;
  border-radius: var(--radius-lg);
}

.skeleton-featured {
  min-height: 360px;
  width: 100%;
}

.skeleton-featured--sm {
  min-height: 300px;
}

.skeleton-card {
  height: 320px;
  border-radius: var(--radius-md);
}

/* placeholder image inside card */
.event-card__image--placeholder,
.event-card__image-placeholder {
  width: 100%;
  height: 100%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--border);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-dark);
  -webkit-font-smoothing: antialiased;
}

img { display: block; width: 100%; }
button { cursor: pointer; font-family: var(--font-body); border: none; background: none; }
iframe { border: none; width: 100%; }

/* ── Utility ── */
.hidden { display: none !important; }


/* ═══════════════════════════════════════════════════════════
   SECTION SHELL
═══════════════════════════════════════════════════════════ */
#events-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px 80px;
}

/* ── Section Header ── */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.6;
}


/* ═══════════════════════════════════════════════════════════
   BADGES & TAGS
═══════════════════════════════════════════════════════════ */
.event-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.event-badge--special  { background: rgba(201,168,76,0.2);  color: #7A5A00; border: 1px solid rgba(201,168,76,0.4); }
.event-badge--conference{ background: rgba(99,102,241,0.15); color: #4338CA; border: 1px solid rgba(99,102,241,0.3); }
.event-badge--youth    { background: rgba(249,115,22,0.15);  color: #C2410C; border: 1px solid rgba(249,115,22,0.3); }
.event-badge--adults   { background: rgba(20,184,166,0.15);  color: #0F766E; border: 1px solid rgba(20,184,166,0.3); }
.event-badge--kids     { background: rgba(236,72,153,0.15);  color: #BE185D; border: 1px solid rgba(236,72,153,0.3); }
.event-badge--outreach { background: rgba(34,197,94,0.15);   color: #15803D; border: 1px solid rgba(34,197,94,0.3); }

.event-tag {
  display: inline-block;
  padding: 3px 9px;
  border-radius: 100px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.event-tag--new       { background: var(--navy);  color: var(--white); }
.event-tag--recurring { background: rgba(255,255,255,0.85); color: var(--text-dark); }


/* ═══════════════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn--primary {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(201,168,76,0.35);
}
.btn--primary:hover {
  background: var(--gold-dark);
  box-shadow: 0 6px 20px rgba(201,168,76,0.45);
  transform: translateY(-1px);
}

.btn--ghost {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--border);
}
.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
  background: rgba(201,168,76,0.06);
}

.btn--lg { padding: 14px 32px; font-size: 1rem; }

.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  color: var(--text-soft);
  transition: all var(--transition);
  flex-shrink: 0;
}
.btn-icon:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
  background: rgba(201,168,76,0.08);
}


/* ═══════════════════════════════════════════════════════════
   FEATURED EVENTS
═══════════════════════════════════════════════════════════ */
.featured-events {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .featured-events {
    grid-template-columns: 3fr 2fr;
  }
}

.featured-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}

.featured-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.featured-card--secondary {
  min-height: 300px;
}

.featured-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
}

.featured-card:hover .featured-card__bg {
  transform: scale(1.04);
}

.featured-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 16, 40, 0.92) 0%,
    rgba(10, 16, 40, 0.55) 50%,
    rgba(10, 16, 40, 0.1) 100%
  );
}

.featured-card__content {
  position: relative;
  z-index: 1;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.featured-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  color: var(--white);
  line-height: 1.2;
}

.featured-card__meta,
.featured-card__location {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.82);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.featured-card__meta i,
.featured-card__location i {
  color: var(--gold-light);
}

.featured-card__desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.55;
  max-width: 480px;
}

.featured-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}


/* ═══════════════════════════════════════════════════════════
   EVENTS TOOLBAR
═══════════════════════════════════════════════════════════ */
.events-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

/* Filter Tabs */
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-tab {
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-mid);
  background: var(--white);
  border: 1.5px solid var(--border);
  transition: all var(--transition);
}

.filter-tab:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}

.filter-tab.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* View Toggle */
.view-toggle {
  display: flex;
  gap: 4px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 3px;
}

.view-btn {
  width: 34px;
  height: 34px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--text-soft);
  transition: all var(--transition);
}

.view-btn:hover { color: var(--navy); background: var(--cream); }
.view-btn.active { background: var(--navy); color: var(--white); }


/* ═══════════════════════════════════════════════════════════
   EVENTS GRID — Card View
═══════════════════════════════════════════════════════════ */
.events-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  transition: opacity 0.2s ease;
}

@media (min-width: 600px) {
  .events-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 960px) {
  .events-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ── Event Card ── */
.event-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
  animation: cardFadeIn 0.35s ease both;
}

.event-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

@keyframes cardFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.event-card__image-wrap {
  position: relative;
  height: 180px;
  overflow: hidden;
  flex-shrink: 0;
}

.event-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.event-card:hover .event-card__image {
  transform: scale(1.06);
}

.event-card__image-wrap .event-badge {
  position: absolute;
  top: 12px;
  left: 12px;
}

.event-card__image-wrap .event-tag {
  position: absolute;
  top: 12px;
  right: 12px;
}

.event-card__body {
  display: flex;
  gap: 14px;
  padding: 18px;
  flex: 1;
}

.event-card__date-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  min-width: 44px;
  padding-top: 2px;
}

.event-card__month {
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--gold-dark);
  text-transform: uppercase;
  line-height: 1;
}

.event-card__day {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-top: 2px;
}

.event-card__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.event-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
}

.event-card__meta {
  font-size: 0.75rem;
  color: var(--text-soft);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
}

.event-card__meta i {
  color: var(--gold-dark);
}

.event-card__desc {
  font-size: 0.84rem;
  color: var(--text-mid);
  line-height: 1.5;
  flex: 1;
}

.event-card__footer {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
}

.event-card__footer .btn--outline {
  flex: 1;
  justify-content: center;
  font-size: 0.8rem;
  padding: 8px 14px;
}


/* ── List View ── */
.events-grid.list-view {
  grid-template-columns: 1fr;
  gap: 12px;
}

.events-grid.list-view .event-card {
  flex-direction: row;
  max-height: 130px;
}

.events-grid.list-view .event-card__image-wrap {
  width: 140px;
  height: 130px;
  flex-shrink: 0;
  border-radius: 0;
}

.events-grid.list-view .event-card__image-wrap .event-tag { display: none; }

.events-grid.list-view .event-card__body {
  padding: 14px 16px;
  overflow: hidden;
}

.events-grid.list-view .event-card__desc {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 480px) {
  .events-grid.list-view .event-card { flex-direction: column; max-height: none; }
  .events-grid.list-view .event-card__image-wrap { width: 100%; height: 160px; }
}


/* ═══════════════════════════════════════════════════════════
   CALENDAR VIEW
═══════════════════════════════════════════════════════════ */
.calendar-view {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  margin-bottom: 20px;
}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: var(--navy);
}

.cal-month-label {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--white);
  font-weight: 600;
}

.cal-nav {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.75);
  border: 1px solid rgba(255,255,255,0.2);
  transition: all var(--transition);
  font-size: 0.85rem;
}

.cal-nav:hover {
  background: rgba(255,255,255,0.15);
  color: var(--white);
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  border-bottom: 1px solid var(--border);
}

.cal-day-header {
  padding: 10px 4px;
  text-align: center;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-soft);
  background: var(--cream);
  border-bottom: 1px solid var(--border);
}

.cal-day {
  min-height: 60px;
  padding: 6px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  transition: background var(--transition);
  cursor: default;
}

.cal-day:nth-child(7n) { border-right: none; }

.cal-day--empty { background: var(--cream); opacity: 0.5; }

.cal-day--has-event {
  background: rgba(201, 168, 76, 0.05);
  cursor: pointer;
}

.cal-day--has-event:hover { background: rgba(201, 168, 76, 0.12); }

.cal-day--selected { background: rgba(26, 38, 64, 0.07) !important; }

.cal-day__num {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-mid);
  line-height: 1;
}

.cal-day--has-event .cal-day__num { color: var(--navy); font-weight: 700; }

.cal-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.cal-dots {
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
  margin-top: 2px;
}

.calendar-events-list {
  padding: 20px 24px;
  min-height: 80px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cal-hint {
  color: var(--text-soft);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: auto 0;
}

.cal-event-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  animation: cardFadeIn 0.2s ease both;
}

.cal-event-item__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.cal-event-item__info { flex: 1; }
.cal-event-item__name { font-size: 0.9rem; font-weight: 600; color: var(--text-dark); }
.cal-event-item__time { font-size: 0.78rem; color: var(--text-soft); margin-top: 2px; }

.cal-event-item .btn--outline {
  font-size: 0.75rem;
  padding: 6px 14px;
}


/* ═══════════════════════════════════════════════════════════
   NO RESULTS
═══════════════════════════════════════════════════════════ */
.no-results {
  text-align: center;
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.no-results i {
  font-size: 3rem;
  color: var(--border);
}

.no-results p {
  font-size: 1rem;
  color: var(--text-soft);
}


/* ═══════════════════════════════════════════════════════════
   CTA STRIP
═══════════════════════════════════════════════════════════ */
.events-cta-strip {
  margin-top: 56px;
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.cta-strip__text h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 6px;
}

.cta-strip__text p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
}

.cta-strip__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}


/* ═══════════════════════════════════════════════════════════
   MODAL
═══════════════════════════════════════════════════════════ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 14, 30, 0.72);
  backdrop-filter: blur(4px);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 16px;
  animation: overlayIn 0.2s ease;
}

.modal-overlay.open {
  display: flex;
}

@keyframes overlayIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.modal {
  display: none;
  background: var(--white);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 640px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: modalIn 0.28s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  scrollbar-width: thin;
}

.modal.active { display: block; }

@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0)   scale(1); }
}

.modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 10;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0,0,0,0.45);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: background var(--transition);
}

.modal__close:hover { background: rgba(0,0,0,0.7); }

.modal__hero {
  height: 220px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 16px;
  position: relative;
  flex-shrink: 0;
}

.modal__hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.modal__hero .event-badge { position: relative; z-index: 1; }

.modal__body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.modal__title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--navy);
  line-height: 1.2;
}

.modal__meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  font-size: 0.82rem;
  color: var(--text-mid);
}

.modal__meta-row span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.modal__meta-row i { color: var(--gold-dark); }

.modal__desc {
  font-size: 0.93rem;
  color: var(--text-mid);
  line-height: 1.65;
  border-left: 3px solid var(--gold);
  padding-left: 14px;
}

.modal__details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  padding: 16px;
  border: 1px solid var(--border);
}

.modal__detail-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.modal__detail-item > i {
  width: 30px;
  height: 30px;
  background: var(--white);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  font-size: 0.85rem;
  border: 1px solid var(--border);
  flex-shrink: 0;
  margin-top: 1px;
}

.modal__detail-item > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.modal__detail-item strong {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.modal__detail-item span {
  font-size: 0.88rem;
  color: var(--text-dark);
  font-weight: 500;
}

.modal__map {
  border-radius: var(--radius-sm);
  overflow: hidden;
  height: 180px;
  border: 1px solid var(--border);
}

.modal__map iframe { height: 100%; }

.modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 4px;
}

.modal__actions .btn--primary { flex: 1; justify-content: center; }


/* ═══════════════════════════════════════════════════════════
   TOAST
═══════════════════════════════════════════════════════════ */
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--navy);
  color: var(--white);
  padding: 12px 22px;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
  opacity: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  gap: 8px;
  pointer-events: none;
  white-space: nowrap;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}


/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width: 600px) {
  #events-section { padding: 40px 16px 60px; }

  .featured-card { min-height: 300px; }
  .featured-card__content { padding: 20px; }
  .featured-card__actions { flex-direction: column; }
  .featured-card__actions .btn { justify-content: center; }

  .events-toolbar { flex-direction: column; align-items: flex-start; }
  .filter-tabs { gap: 6px; }
  .filter-tab { padding: 6px 13px; font-size: 0.78rem; }

  .events-cta-strip { padding: 28px 22px; flex-direction: column; text-align: center; }
  .cta-strip__actions { width: 100%; flex-direction: column; }
  .cta-strip__actions .btn { justify-content: center; }

  .modal__body { padding: 20px; }
  .modal__title { font-size: 1.3rem; }
  .modal__actions { flex-direction: column; }
  .modal__actions .btn { justify-content: center; }

  .cal-day { min-height: 44px; }
  .cal-day__num { font-size: 0.72rem; }
}

@media (min-width: 600px) and (max-width: 959px) {
  .modal { max-width: 90vw; }
}

/* Scrollbar Styling */
.modal::-webkit-scrollbar { width: 4px; }
.modal::-webkit-scrollbar-track { background: transparent; }
.modal::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
