:root {
  --ink: #1c2a20;
  --forest: #17472b;
  --leaf: #2e7d3a;
  --leaf-soft: #e4f0e2;
  --mango: #e8912d;
  --mango-deep: #c9721a;
  --cream: #faf6e9;
  --paper: #ffffff;
  --line: #e3ddc9;
  --muted: #5c6b5f;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(23, 71, 43, 0.1);
  --display: "Bricolage Grotesque", sans-serif;
  --body: "Inter", sans-serif;
  --bangla: "Hind Siliguri", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  font-size: 16px;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none !important;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

h1,
h2,
h3,
h4 {
  font-family: var(--display);
  line-height: 1.15;
  color: var(--forest);
}

.bn {
  font-family: var(--bangla);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mango-deep);
  margin-bottom: 14px;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--mango) 0 5px,
    transparent 5px 9px
  );
}

section {
  padding: 84px 0;
}

.section-head {
  max-width: 720px;
  margin-bottom: 44px;
}

.section-head h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  margin-bottom: 12px;
}

.section-head p {
  color: var(--muted);
  font-size: 17px;
}

/* stitch divider */
.stitch {
  height: 0;
  border-top: 2px dashed rgba(232, 145, 45, 0.55);
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
}

.stitch::after {
  content: "◆";
  position: absolute;
  left: 50%;
  top: -11px;
  transform: translateX(-50%);
  color: var(--mango);
  background: var(--cream);
  padding: 0 10px;
  font-size: 11px;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 246, 233, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s;
}

nav.scrolled {
  box-shadow: 0 4px 20px rgba(23, 71, 43, 0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--forest);
  display: flex;
  justify-content: center;
  color: #fff;
  font-family: var(--display);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: -0.02em;
  gap: 4px;
  align-items: center;
  gap: 4px;
}

.brand-mark span {
  color: var(--mango);
}

.brand-text {
  line-height: 1.15;
}

.brand-text strong {
  display: block;
  font-family: var(--display);
  font-size: 15px;
  font-weight: 800;
  color: var(--forest);
}

.brand-text small {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 26px;
  align-items: center;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  opacity: 0.85;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--leaf);
  opacity: 1;
}

.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: var(--body);
  transition:
    transform 0.15s,
    box-shadow 0.2s,
    background 0.2s;
}

.btn:focus-visible {
  outline: 3px solid var(--mango);
  outline-offset: 2px;
}

.btn-primary {
  background: var(--mango);
  color: #fff;
  box-shadow: 0 6px 18px rgba(232, 145, 45, 0.35);
}

.btn-primary:hover {
  background: var(--mango-deep);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--forest);
  border: 2px solid var(--forest);
}

.btn-ghost:hover {
  background: var(--forest);
  color: #fff;
}

.nav-cta {
  padding: 10px 20px;
  font-size: 13.5px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  color: var(--forest);
  cursor: pointer;
}

/* HERO */
.hero {
    position: relative;
    padding: 0;
    margin-top: 68px;
    background: #17472b;
}


.hero-bg {
  width: 100%;
  height: min(62vw, 860px);
  object-fit: contain;
  object-position: center;
}

.hero-panel {
  background: var(--forest);
  color: #fff;
  position: relative;
}

.hero-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: repeating-linear-gradient(
    90deg,
    var(--mango) 0 26px,
    #fff0 26px 40px
  );
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 48px;
  padding: 52px 20px 56px;
  align-items: center;
}

.hero-title-bn {
  font-family: var(--bangla);
  font-weight: 700;
  color: #ffd89a;
  font-size: clamp(17px, 2.4vw, 22px);
  margin-bottom: 8px;
}

.hero h1 {
  color: #fff;
  font-size: clamp(30px, 4.6vw, 50px);
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.hero h1 em {
  font-style: normal;
  color: var(--mango);
}


.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 18px 0 26px;
}

.meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 13.5px;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-org {
  margin-top: 26px;
  font-size: 13px;
  color: #cfe0d3;
}

.hero-org b {
  color: #fff;
}

/* countdown */
.countdown {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  padding: 26px;
}

.countdown h3 {
  color: #ffd89a;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 18px;
  text-align: center;
}

.count-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.count-cell {
  background: var(--cream);
  border-radius: 12px;
  padding: 16px 6px;
  text-align: center;
  border-bottom: 4px solid var(--mango);
}

.count-cell b {
  display: block;
  font-family: var(--display);
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 800;
  color: var(--forest);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.count-cell span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mango-deep);
}

.count-note {
  text-align: center;
  margin-top: 14px;
  font-size: 12.5px;
  color: #cfe0d3;
}

/* STATS */
.stats {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

.stat {
  padding: 30px 14px;
  text-align: center;
  border-left: 1px dashed var(--line);
}

.stat:first-child {
  border-left: none;
}

.stat b {
  display: block;
  font-family: var(--display);
  font-size: clamp(19px, 2.2vw, 26px);
  font-weight: 800;
  color: var(--forest);
}

.stat span {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
}

/* ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 56px;
  align-items: start;
}

.about-photo {
  position: relative;
}

.about-photo img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-photo::after {
  content: "রাজশাহী ২০২৬";
  font-family: var(--bangla);
  position: absolute;
  bottom: -16px;
  right: -10px;
  background: var(--mango);
  color: #fff;
  font-weight: 700;
  padding: 9px 20px;
  border-radius: 999px;
  font-size: 15px;
  box-shadow: 0 8px 20px rgba(201, 114, 26, 0.4);
}

.about-copy p {
  margin-bottom: 16px;
  color: #33413a;
}

.about-copy p:first-of-type {
  font-size: 18.5px;
  color: var(--ink);
}

.about-list {
  list-style: none;
  margin-top: 22px;
  display: grid;
  gap: 11px;
}

.about-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
}

.about-list li::before {
  content: "◆";
  color: var(--mango);
  font-size: 10px;
  margin-top: 6px;
}

.sector-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 26px;
}

.sector-chip {
  background: var(--leaf-soft);
  border: 1px solid #cfe3cb;
  color: var(--forest);
  border-radius: 999px;
  padding: 7px 15px;
  font-size: 13px;
  font-weight: 600;
}

/* SESSIONS */
.sessions {
  background: var(--forest);
  color: #e9f2ea;
}

.sessions .section-head h2 {
  color: #fff;
}

.sessions .section-head p {
  color: #bcd3c1;
}

.sessions .eyebrow {
  color: var(--mango);
}

.timeline {
  position: relative;
  max-width: 860px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 104px;
  top: 8px;
  bottom: 8px;
  border-left: 2px dashed rgba(232, 145, 45, 0.5);
}

.slot {
  display: grid;
  grid-template-columns: 88px 32px 1fr;
  gap: 0 16px;
  padding: 15px 0;
  align-items: start;
}

.slot-time {
  font-family: var(--display);
  font-weight: 700;
  font-size: 14px;
  color: #ffd89a;
  text-align: right;
  padding-top: 4px;
  font-variant-numeric: tabular-nums;
}

.slot-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--mango);
  border: 3px solid var(--forest);
  box-shadow: 0 0 0 2px var(--mango);
  margin: 8px auto 0;
  position: relative;
  z-index: 1;
}

.slot-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 16px 20px;
  transition: background 0.2s;
}

.slot-card:hover {
  background: rgba(255, 255, 255, 0.09);
}

.slot-card h4 {
  color: #fff;
  font-size: 16.5px;
  margin-bottom: 4px;
}

.slot-card p {
  font-size: 13.8px;
  color: #bcd3c1;
  margin-bottom: 6px;
}

.slot-lead {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mango);
  background: rgba(232, 145, 45, 0.12);
  border-radius: 6px;
  padding: 3px 9px;
}

.slot.break .slot-card {
  background: rgba(232, 145, 45, 0.14);
  border-color: rgba(232, 145, 45, 0.4);
  text-align: center;
}

.slot.break h4 {
  color: #ffd89a;
}

/* SPEAKERS */
.speaker-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.speaker-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.speaker-photo {
  height: 210px;
  display: grid;
  place-items: center;
  position: relative;
  background: linear-gradient(150deg, var(--leaf-soft), #f3ecd8);
}

.speaker-photo .monogram {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--forest);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-size: 34px;
  font-weight: 800;
  border: 4px solid var(--mango);
}

.speaker-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--mango);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
}

.speaker-tag.green {
  background: var(--leaf);
}

.speaker-body {
  padding: 22px 24px 26px;
}

.speaker-body h3 {
  font-size: 18.5px;
  margin-bottom: 3px;
}

.speaker-role {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--mango-deep);
  margin-bottom: 10px;
}

.speaker-body p {
  font-size: 14px;
  color: var(--muted);
}

.speaker-note {
  margin-top: 26px;
  font-size: 13.5px;
  color: var(--muted);
  background: var(--paper);
  border: 1px dashed var(--line);
  border-radius: 10px;
  padding: 14px 18px;
}

/* REGISTER */
.register {
  background: linear-gradient(180deg, #fdf8e6, var(--cream));
}

.reg-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  align-items: start;
}

.reg-info h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  margin-bottom: 14px;
}

.reg-info p {
  color: var(--muted);
  margin-bottom: 20px;
}

.reg-points {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-top: 8px;
}

.reg-points li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  font-weight: 500;
}

.reg-points li b {
  color: var(--forest);
}

.reg-points li::before {
  content: "✓";
  flex: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--leaf-soft);
  color: var(--leaf);
  font-weight: 800;
  display: grid;
  place-items: center;
  font-size: 13px;
  margin-top: 1px;
}

.reg-card {
  background: var(--paper);
  border-radius: 18px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  padding: 34px;
}

.reg-card h3 {
  font-size: 21px;
  margin-bottom: 4px;
}

.reg-card > p {
  font-size: 13.5px;
  color: var(--muted);
  margin-bottom: 22px;
}

.field {
  margin-bottom: 16px;
}

.field label {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 6px;
}

.field input,
.field select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 9px;
  font-family: var(--body);
  font-size: 15px;
  background: #fffdf6;
  color: var(--ink);
  transition: border 0.2s;
}

.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--mango);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.reg-card .btn {
  width: 100%;
  margin-top: 6px;
}

.reg-fineprint {
  font-size: 12px;
  color: var(--muted);
  margin-top: 14px;
  text-align: center;
}

.reg-success {
  display: none;
  text-align: center;
  padding: 34px 10px;
}

.reg-success .tick {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--leaf-soft);
  color: var(--leaf);
  display: grid;
  place-items: center;
  font-size: 30px;
  margin: 0 auto 18px;
  font-weight: 800;
}

.reg-success h3 {
  margin-bottom: 8px;
}

.reg-success p {
  color: var(--muted);
  font-size: 14.5px;
}

/* PARTNERS */
.partner-tiers {
  display: grid;
  gap: 40px;
}

.tier-label {
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mango-deep);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.tier-label::after {
  content: "";
  flex: 1;
  border-top: 2px dashed var(--line);
}

.org-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.org-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  text-align: center;
  box-shadow: var(--shadow);
  min-height: 242px;
}

.org-logo {
  font-family: var(--display);
  font-weight: 800;
  font-size: 22px;
  margin-bottom: 6px;
}

.org-card small {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mango-deep);
  margin-bottom: 8px;
}

.org-card p {
  font-size: 13.5px;
  color: var(--muted);
}

.logo-bida {
  color: #b3282d;
}

.logo-swiss {
  color: #12416f;
}

.logo-swiss span {
  color: #5a8cbf;
  font-weight: 600;
}

.logo-wm {
  color: #2b2b2b;
}

.logo-wm span {
  color: #f07d16;
}

.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.sponsor-slot {
  aspect-ratio: 4/3;
  border: 2px dashed #d8c9a2;
  border-radius: 12px;
  display: grid;
  place-items: center;
  text-align: center;
  color: #a89a6f;
  background: rgba(255, 255, 255, 0.5);
  padding: 10px;
  transition:
    border-color 0.2s,
    background 0.2s;
  cursor: pointer;
  text-decoration: none;
}

.sponsor-slot:hover {
  border-color: var(--mango);
  background: #fff;
}

.sponsor-slot b {
  display: block;
  font-family: var(--display);
  font-size: 13.5px;
  color: var(--mango-deep);
}

.sponsor-slot span {
  font-size: 11px;
  font-weight: 600;
}

.sponsor-cta {
  margin-top: 18px;
  font-size: 13.5px;
  color: var(--muted);
}

.sponsor-cta a {
  color: var(--mango-deep);
  font-weight: 700;
}

/* VENUE */
.venue {
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.venue-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 44px;
  align-items: start;
}

.venue-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.venue-photos img {
  border-radius: 12px;
  object-fit: cover;
  width: 100%;
  height: 100%;
  box-shadow: var(--shadow);
}

.venue-photos .wide {
  grid-column: 1/-1;
}

.venue-facts {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
}

.venue-facts h3 {
  font-size: 22px;
  margin-bottom: 4px;
}

.venue-facts .bn {
  color: var(--mango-deep);
  font-weight: 600;
  font-size: 14.5px;
  margin-bottom: 16px;
}

.venue-facts > p {
  font-size: 14.5px;
  color: var(--muted);
  margin-bottom: 20px;
}

.fact-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin-bottom: 24px;
}

.fact-table td {
  padding: 10px 4px;
  border-bottom: 1px dashed var(--line);
  vertical-align: top;
}

.fact-table td:first-child {
  font-weight: 700;
  color: var(--forest);
  width: 44%;
}

.venue-dist {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
}

.venue-dist div {
  flex: 1;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 5px;
  text-align: center;
}

.venue-dist b {
  display: block;
  font-family: var(--display);
  font-size: 19px;
  color: var(--forest);
}

.venue-dist span {
  font-size: 11.5px;
  color: var(--muted);
  font-weight: 600;
}

.dir-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: 100%;
  justify-content: center;
}

/* FOOTER */
footer {
  background: var(--ink);
  color: #aebcb1;
  padding: 50px 0 34px;
  font-size: 13.5px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-bottom: 30px;
}

.footer-brand strong {
  display: block;
  font-family: var(--display);
  color: #fff;
  font-size: 17px;
  margin-bottom: 6px;
}

.footer-brand .bn {
  color: var(--mango);
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 22px;
  list-style: none;
  flex-wrap: wrap;
}

.footer-links a {
  text-decoration: none;
  font-weight: 600;
  color: #cdd8d0;
}

.footer-links a:hover {
  color: var(--mango);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 12.5px;
}

.footer-bottom .wm {
  color: #fff;
  font-weight: 700;
}

.footer-bottom .wm span {
  color: #f07d16;
}

/* reveal */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn {
    transition: none;
  }
}

@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .about-grid,
  .reg-grid,
  .venue-grid {
    grid-template-columns: 1fr;
  }

  .speaker-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .stat:nth-child(4) {
    border-left: none;
  }

  .stat {
    border-top: 1px dashed var(--line);
  }

  .stat:nth-child(-n + 3) {
    border-top: none;
  }

  .sponsor-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .org-grid {
    grid-template-columns: 1fr;
  }

  .about-photo {
    max-width: 440px;
  }
}

@media (max-width: 720px) {
  .nav-links {
    position: fixed;
    top: 68px;
    right: 0;
    left: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 22px;
    gap: 18px;
    border-bottom: 1px solid var(--line);
    display: none;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  .speaker-grid {
    grid-template-columns: 1fr;
  }

  .timeline::before {
    left: 78px;
  }

  .slot {
    grid-template-columns: 64px 28px 1fr;
    gap: 0 10px;
  }

  .slot-time {
    font-size: 12.5px;
  }

  .sponsor-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  section {
    padding: 64px 0;
  }
}





/* ===========================
   Image Gallery Popup
=========================== */

.gallery-lightbox{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.92);
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:99999;
    opacity:0;
    visibility:hidden;
    transition:.3s;
}

.gallery-lightbox.active{
    opacity:1;
    visibility:visible;
}

.gallery-lightbox img{
    max-width:90%;
    max-height:85vh;
    border-radius:12px;
    box-shadow:0 20px 60px rgba(0,0,0,.5);
}

.gallery-close{
    position:absolute;
    top:20px;
    right:35px;
    color:#fff;
    font-size:42px;
    cursor:pointer;
    user-select:none;
}

.gallery-arrow{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    background:rgba(255,255,255,.15);
    border:none;
    color:#fff;
    width:55px;
    height:55px;
    border-radius:50%;
    cursor:pointer;
    font-size:28px;
    transition:.25s;
}

.gallery-arrow:hover{
    background:rgba(255,255,255,.3);
}

.gallery-prev{
    left:25px;
}

.gallery-next{
    right:25px;
}

.gallery-img{
    cursor:pointer;
}

@media(max-width:768px){

.gallery-arrow{
    width:45px;
    height:45px;
    font-size:22px;
}

.gallery-close{
    right:20px;
    font-size:34px;
}

}