/* CMD Food Tour – public site styles */
:root {
  --primary: #7a2812;
  --primary-dark: #5c1e0d;
  --secondary: #3d4235;
  --accent: #ff8200;
  --bg: #f3efec;
  --bg-dark: #171511;
  --fg: #171511;
  --fg-alt: #090703;
  --white: #ffffff;
  --tertiary: #e2e1dd;
  --card: #ffffff;
  --success: #1a7a3a;
  --error: #b42318;
  --shadow: 0 10px 40px rgba(23, 21, 17, 0.12);
  --radius: 16px;
  --font: "Segoe UI", system-ui, -apple-system, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Accessible skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1000;
  background: var(--accent);
  color: #fff;
  padding: 0.65rem 1rem;
  border-radius: 0 0 8px 0;
  font-weight: 700;
}

.skip-link:focus {
  left: 0;
}

/* SEO crawler block: readable for bots, visually hidden for users (JS UI is primary) */
.seo-crawler-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

/* Header */
.site-header {
  background: var(--bg-dark);
  color: var(--white);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.logo img {
  height: 64px;
  width: auto;
}

/* Floating marquee text (date + venue) left → right */
.header-marquee {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 1.25rem;
  align-items: center;
  animation: marquee-ltr 28s linear infinite;
  white-space: nowrap;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--header-text-color, #fff);
}

.marquee-sep {
  color: var(--accent);
  opacity: 0.85;
}

@keyframes marquee-ltr {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.header-actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-shrink: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  border: none;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-accent {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(255, 130, 0, 0.35);
}

.btn-accent:hover {
  background: #e67400;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.45);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-lg {
  padding: 1rem 2.2rem;
  font-size: 1.05rem;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, #1a120c 0%, #3a1a10 45%, #7a2812 100%);
  color: var(--hero-text-color, var(--white));
  padding: 4.5rem 0 5.5rem;
  position: relative;
  overflow: hidden;
  cursor: default;
  user-select: none;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.hero-bg.has-image {
  opacity: 1;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 18, 12, 0.82) 0%, rgba(58, 26, 16, 0.75) 45%, rgba(122, 40, 18, 0.72) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 48px;
  background: var(--bg);
  clip-path: ellipse(55% 100% at 50% 100%);
  z-index: 2;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-kicker {
  color: var(--accent);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: 1.05;
  font-weight: 800;
  margin-bottom: 0.35rem;
}

.hero h1 .accent {
  color: var(--accent);
}

.hero .year {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  opacity: 0.95;
  margin-bottom: 1rem;
}

.hero .theme {
  font-size: 1.05rem;
  margin-bottom: 1rem;
  max-width: 36rem;
}

.hero .theme .label {
  color: var(--accent);
  font-weight: 700;
}

.hero .desc {
  opacity: 0.9;
  max-width: 34rem;
  margin-bottom: 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.hero-card h3 {
  color: var(--accent);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.hero-card .info-row {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
  font-size: 0.98rem;
}

.hero-card .info-row strong {
  min-width: 70px;
  color: var(--accent);
}

.hero-deco {
  position: absolute;
  right: -40px;
  top: 20%;
  width: 220px;
  opacity: 0.12;
  pointer-events: none;
}

/* Sections */
section {
  padding: 4rem 0;
}

.section-title {
  text-align: center;
  font-size: clamp(1.6rem, 3.5vw, 2.3rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.section-title .accent {
  color: var(--accent);
}

.section-sub {
  text-align: center;
  color: var(--secondary);
  max-width: 640px;
  margin: 0 auto 2rem;
}

/* Guest register strip */
.guest-section {
  background: var(--white);
}

.guest-panel {
  background: linear-gradient(145deg, #fff 0%, #faf6f2 100%);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2.25rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

/* Urgent tickets CTA */
.tickets-cta-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.15rem;
  max-width: 100%;
}

.tickets-live-ripple,
.tickets-live-dot {
  position: absolute;
  left: 0.55rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  pointer-events: none;
}

.tickets-live-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff1a1a;
  box-shadow: 0 0 0 0 rgba(255, 26, 26, 0.55);
  animation: live-dot-blink 1.1s ease-in-out infinite;
}

.tickets-live-ripple {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 50, 50, 0.85);
  animation: live-ripple 1.6s ease-out infinite;
}

.tickets-cta {
  position: relative;
  z-index: 1;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  min-width: min(100%, 280px);
  padding: 0.95rem 2.4rem 0.95rem 2.65rem;
  border-radius: 999px;
  color: #fff !important;
  text-decoration: none;
  text-align: center;
  font-weight: 800;
  letter-spacing: 0.02em;
  background: linear-gradient(135deg, #ff9a1a 0%, #ff6a00 38%, #ff3b1f 72%, #e1180a 100%);
  background-size: 140% 140%;
  box-shadow:
    0 0 0 0 rgba(255, 90, 20, 0.45),
    0 10px 28px rgba(225, 24, 10, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  animation:
    tickets-pulse 1.5s ease-in-out infinite,
    tickets-nudge 4.5s ease-in-out infinite;
  transition:
    background 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.2s ease,
    filter 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.tickets-cta-main {
  font-size: clamp(0.98rem, 2.6vw, 1.15rem);
  line-height: 1.2;
  text-transform: none;
  text-shadow: 0 1px 2px rgba(90, 10, 0, 0.35);
}

.tickets-cta-sub {
  font-size: clamp(0.78rem, 2vw, 0.88rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.95;
}

.tickets-cta:hover,
.tickets-cta:focus-visible {
  background: linear-gradient(135deg, #ff8a00 0%, #f04a00 40%, #d91408 75%, #b80f08 100%);
  box-shadow:
    0 0 0 6px rgba(255, 70, 20, 0.22),
    0 14px 36px rgba(180, 12, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  filter: saturate(1.08);
  outline: none;
  animation: none;
  transform: scale(1.04);
}

.tickets-cta:active {
  transform: scale(0.98);
  filter: brightness(0.96);
}

@keyframes tickets-pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow:
      0 0 0 0 rgba(255, 90, 20, 0.35),
      0 10px 28px rgba(225, 24, 10, 0.35),
      inset 0 1px 0 rgba(255, 255, 255, 0.28);
  }
  50% {
    transform: scale(1.08);
    box-shadow:
      0 0 0 12px rgba(255, 70, 20, 0.12),
      0 16px 40px rgba(225, 24, 10, 0.5),
      inset 0 1px 0 rgba(255, 255, 255, 0.32);
  }
}

/* Gentle urgency nudge every few seconds (not spammy) */
@keyframes tickets-nudge {
  0%,
  86%,
  100% {
    /* pulse owns transform most of the time; nudge is a tiny secondary bounce via filter/rotate trick */
    filter: brightness(1);
  }
  90% {
    filter: brightness(1.06);
  }
  93% {
    filter: brightness(1);
  }
}

/* Dedicated bounce on a wrapper pseudo via animation-delay alternative:
   use a short rotate+translate on the button sparingly */
@keyframes tickets-bounce-shake {
  0%,
  82%,
  100% {
    translate: 0 0;
  }
  86% {
    translate: 0 -3px;
  }
  89% {
    translate: 1.5px 0;
  }
  92% {
    translate: -1.5px 0;
  }
  95% {
    translate: 0 0;
  }
}

.tickets-cta-wrap {
  animation: tickets-bounce-shake 4.5s ease-in-out infinite;
}

@keyframes live-dot-blink {
  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(255, 26, 26, 0.55);
  }
  50% {
    opacity: 0.45;
    box-shadow: 0 0 8px 2px rgba(255, 40, 40, 0.55);
  }
}

@keyframes live-ripple {
  0% {
    transform: translateY(-50%) scale(1);
    opacity: 0.9;
  }
  100% {
    transform: translateY(-50%) scale(3.4);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tickets-cta,
  .tickets-cta-wrap,
  .tickets-live-dot,
  .tickets-live-ripple {
    animation: none !important;
  }
}

.tickets-cta.is-sold-out {
  background: linear-gradient(135deg, #8a8a8a 0%, #5a5a5a 100%);
  animation: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  cursor: not-allowed;
  filter: grayscale(0.15);
}

.tickets-cta.is-sold-out .tickets-cta-sub {
  display: none;
}

.tickets-cta-wrap:has(.is-sold-out) .tickets-live-dot,
.tickets-cta-wrap:has(.is-sold-out) .tickets-live-ripple {
  display: none;
}

@media (max-width: 560px) {
  .tickets-cta {
    width: 100%;
    min-width: 0;
    padding: 0.9rem 1.4rem 0.9rem 1.9rem;
  }

  .tickets-cta-wrap {
    display: flex;
    width: 100%;
  }
}

.feature-list {
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
}

.feature-list li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 800;
  flex-shrink: 0;
}

.guest-visual img {
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
  max-height: 340px;
}

/* Packages */
.packages-section {
  background: var(--bg-dark);
  color: var(--white);
}

.packages-section .section-title {
  color: var(--white);
}

.packages-section .section-sub {
  color: rgba(255, 255, 255, 0.75);
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.tab-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.88rem;
  transition: background 0.2s, border-color 0.2s;
}

.tab-btn.active,
.tab-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.category-note {
  text-align: center;
  margin-bottom: 1.5rem;
  opacity: 0.85;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.price-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.price-card header {
  background: var(--primary);
  padding: 1.1rem 1.25rem;
  text-align: center;
}

.price-card header h4 {
  font-size: 1rem;
  letter-spacing: 0.04em;
}

.price-card .price {
  text-align: center;
  padding: 1.25rem 1rem 0.5rem;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
}

.price-card .price span {
  font-size: 1rem;
  vertical-align: super;
  margin-right: 2px;
}

.price-card ul {
  list-style: none;
  padding: 0.75rem 1.25rem 1.5rem;
  flex: 1;
}

.price-card ul li {
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.92rem;
  opacity: 0.92;
}

.price-card ul li:last-child {
  border-bottom: none;
}

.price-card .card-cta {
  padding: 0 1.25rem 1.35rem;
  text-align: center;
}

/* Why attend / benefits */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.info-card h3 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1.35rem;
}

.info-card .tagline {
  color: var(--accent);
  font-weight: 800;
  font-style: italic;
  margin-bottom: 1rem;
}

.cta-banner {
  background: linear-gradient(90deg, var(--primary), #a33a18);
  color: white;
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.5;
}

/* Gallery carousel — 3 images visible */
.gallery-section {
  background: var(--white);
}

.gallery-carousel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.75rem;
  align-items: center;
}

.gallery-viewport {
  overflow: hidden;
  border-radius: 16px;
  touch-action: pan-y;
}

.gallery-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.gallery-slide {
  flex: 0 0 calc(100% / 3);
  padding: 0 0.4rem;
  box-sizing: border-box;
}

.gallery-slide img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--shadow);
  background: #eee;
  user-select: none;
  pointer-events: none;
}

.gallery-nav {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--primary);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: background 0.2s, transform 0.15s;
}

.gallery-nav:hover {
  background: var(--accent);
  transform: scale(1.05);
}

.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.gallery-dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  background: #cfc8c0;
  cursor: pointer;
  padding: 0;
}

.gallery-dots button.active {
  background: var(--accent);
  transform: scale(1.2);
}

/* Registration form */
.register-section {
  background: linear-gradient(180deg, #f3efec 0%, #ebe4de 100%);
}

.register-section .container {
  width: min(1140px, 92%);
}

/* Banner/card behind the form — full content width, aligned with fields */
.register-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2.25rem;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}

.register-card #reg-open,
.register-card form {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.register-card h2 {
  text-align: center;
  color: var(--primary);
  margin-bottom: 0.35rem;
}

.register-card .lead {
  text-align: center;
  color: var(--secondary);
  margin-bottom: 1.5rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.25rem;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  align-items: start;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 0; /* prevent selects from stretching the grid unevenly */
  width: 100%;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  font-weight: 600;
  font-size: 0.9rem;
}

.form-group label .req {
  color: var(--error);
}

.form-group input,
.form-group select,
.form-group textarea {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  border: 1.5px solid #d5cfc8;
  border-radius: 10px;
  padding: 0.75rem 0.9rem;
  font: inherit;
  line-height: 1.4;
  background: #faf9f7;
  transition: border-color 0.15s, box-shadow 0.15s;
}

/* Native selects: same visual width as text inputs */
.form-group select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: #faf9f7;
  background-image: linear-gradient(45deg, transparent 50%, #7a2812 50%),
    linear-gradient(135deg, #7a2812 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 3px),
    calc(100% - 12px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 2.25rem;
  cursor: pointer;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 130, 0, 0.15);
  background-color: white;
}

.form-group select:focus {
  background-color: white;
  background-image: linear-gradient(45deg, transparent 50%, #ff8200 50%),
    linear-gradient(135deg, #ff8200 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 3px),
    calc(100% - 12px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.form-actions {
  margin-top: 1.25rem;
  text-align: center;
}

.form-msg {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  display: none;
  text-align: center;
  font-weight: 600;
}

.form-msg.success {
  display: block;
  background: #e8f7ee;
  color: var(--success);
}

.form-msg.error {
  display: block;
  background: #fdecea;
  color: var(--error);
}

.closed-banner {
  text-align: center;
  background: #fdecea;
  color: var(--error);
  font-weight: 800;
  padding: 1.5rem;
  border-radius: var(--radius);
  letter-spacing: 0.04em;
}

/* Footer */
.site-footer {
  background: var(--bg-dark);
  color: var(--footer-text-color, rgba(255, 255, 255, 0.8));
  padding: 2.5rem 0;
  text-align: center;
}

.site-footer .footer-logo {
  height: 56px;
  margin: 0 auto 1rem;
}

.site-footer a {
  color: var(--accent);
  font-weight: 600;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin: 0.75rem 0 1rem;
  flex-wrap: wrap;
}

.footer-copy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.copy-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35em;
  height: 1.35em;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  font-size: 0.85em;
  font-weight: 700;
  line-height: 1;
  opacity: 0.95;
}

/* Closed / utility */
.hidden {
  display: none !important;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-grid,
  .guest-panel,
  .two-col {
    grid-template-columns: 1fr;
  }

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

  .gallery-slide {
    flex-basis: 50%;
  }

  .gallery-slide img {
    height: 180px;
  }
}

@media (max-width: 560px) {
  .hero {
    padding: 3rem 0 4rem;
  }

  .logo img {
    height: 48px;
  }

  .header-marquee {
    order: 3;
    width: 100%;
    flex-basis: 100%;
  }

  .gallery-slide {
    flex-basis: 100%;
  }

  .gallery-slide img {
    height: 200px;
  }

  .gallery-nav {
    width: 38px;
    height: 38px;
  }
}
