/* =========================================================
   Kentucky State — site stylesheet (vanilla CSS, no framework)
   Palette lives in index.html's :root (--bluegrass, --gold,
   --terracotta, --ivory, --paper, --ink, --ink-soft, --slate)
   ========================================================= */

*{ box-sizing:border-box; }

a{ color:inherit; }

/* ---------- shared section heading (h2) ----------
   Every section h2 (Discover by Category / Events & Festivals /
   Five Regions, One Kentucky / Stay Connected) carries this class
   so font, size and weight stay identical across the page; each
   section only layers on its own spacing/color needs. */
.section-heading{
  margin:0;
  font-family:"Instrument Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size:clamp(28px, 3.2vw, 42px);
  font-weight:700;
  letter-spacing:-0.01em;
  line-height:1.08;
  color:var(--bluegrass);
}

/* lands anchor-linked sections below the fixed header instead of
   directly under it */
.scroll-anchor{
  scroll-margin-top:84px;
}

/* small uppercase eyebrow label used above several section headings */
.kicker{
  display:inline-block;
  margin:0 0 14px;
  font-size:12px;
  font-weight:700;
  letter-spacing:0.16em;
  text-transform:uppercase;
}
.kicker--gold{ color:var(--gold); }
.kicker--terracotta{ color:var(--terracotta); }
.kicker--bluegrass{ color:var(--gold); }

/* ---------- shared buttons / icons ---------- */
.btn-primary{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:11px 24px;
  background:var(--bluegrass);
  color:var(--ivory);
  font-size:13px;
  font-weight:600;
  letter-spacing:0.04em;
  text-transform:uppercase;
  text-decoration:none;
  border:none;
  border-radius:999px;
  cursor:pointer;
  transition:background 0.25s ease, transform 0.25s ease;
}
.btn-primary:hover{
  background:#0a5c98;
  transform:translateY(-1px);
}

.btn-outline{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:13px 30px;
  background:transparent;
  color:var(--bluegrass);
  border:1.5px solid var(--bluegrass);
  border-radius:999px;
  font-size:13px;
  font-weight:600;
  letter-spacing:0.04em;
  text-transform:uppercase;
  text-decoration:none;
  cursor:pointer;
  transition:background 0.25s ease, color 0.25s ease;
}
.btn-outline:hover{
  background:var(--bluegrass);
  color:var(--ivory);
}

.icon-sm{ width:22px; height:22px; }
.icon-xs{ width:17px; height:17px; }

.visually-hidden{
  position:absolute;
  width:1px; height:1px;
  padding:0; margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

/* =========================================================
   Sticky global header — hidden over the hero (which already
   has its own nav), fades in once the hero has scrolled past,
   and gains a solid backdrop once the page has scrolled further.
   ========================================================= */
.site-header{
  position:fixed;
  top:0; left:0; right:0;
  z-index:60;
  opacity:0;
  transform:translateY(-10px);
  pointer-events:none;
  background:rgba(253,251,247,0);
  transition:opacity 0.3s ease, transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}
.site-header.is-visible{
  opacity:1;
  transform:translateY(0);
  pointer-events:auto;
}
.site-header.is-solid{
  background:rgba(253,251,247,0.94);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  box-shadow:0 1px 0 rgba(17,17,15,0.07);
}

.site-header__inner{
  max-width:1400px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding:16px 40px;
}

.site-header__logo{
  font-size:16px;
  font-weight:600;
  color:var(--bluegrass);
  text-decoration:none;
  white-space:nowrap;
  display:flex;
  align-items:center;
}
.site-header__logo img{
  display:block;
  height:34px;
  width:auto;
}
.site-header__logo span{
  font-family:"Cormorant Garamond", serif;
  font-style:italic;
  font-weight:500;
  color:var(--ink-soft);
}

.site-header__nav{
  display:flex;
  align-items:center;
  gap:30px;
}
.site-header__nav a{
  position:relative;
  font-size:13.5px;
  color:var(--ink);
  text-decoration:none;
  opacity:0.75;
  transition:opacity 0.2s ease;
}
.site-header__nav a::after{
  content:"";
  position:absolute;
  left:0; right:100%;
  bottom:-4px;
  height:1px;
  background:var(--gold);
  transition:right 0.25s ease;
}
.site-header__nav a:hover{ opacity:1; }
.site-header__nav a:hover::after{ right:0; }

.site-header__actions{
  display:flex;
  align-items:center;
  gap:16px;
}

.site-header__toggle{
  display:none;
  align-items:center;
  justify-content:center;
  width:40px;
  height:40px;
  padding:0;
  background:transparent;
  border:1px solid rgba(17,17,15,0.15);
  border-radius:50%;
  color:var(--ink);
  cursor:pointer;
}

.site-header__mobile-panel{
  display:none;
  flex-direction:column;
  gap:2px;
  padding:6px 20px 20px;
  background:rgba(253,251,247,0.98);
  backdrop-filter:blur(10px);
}
.site-header__mobile-panel.is-open{ display:flex; }
.site-header__mobile-panel a{
  padding:12px 4px;
  font-size:14.5px;
  color:var(--ink);
  text-decoration:none;
  border-bottom:1px solid rgba(17,17,15,0.08);
}
.site-header__mobile-panel a.btn-primary{
  margin-top:10px;
  border-bottom:none;
  text-align:center;
  justify-content:center;
}

@media (max-width:900px){
  .site-header__nav{ display:none; }
  .site-header__toggle{ display:inline-flex; }
  .site-header__inner{ padding:14px 20px; }
}

/* =========================================================
   Category slider (Section 2)
   ========================================================= */
#slider{
  margin:0;
  background-color:#000;
  color:#FFF;
  height:100vh;
  height:100svh;
  width:100%;
  overflow:hidden;
  position:relative;
  display:flex;
  flex-direction:column;
}

/* heading block, sits above the carousel in normal flow so it never gets
   covered by the (edge-to-edge) slide photos. Top padding is generous
   because the fixed site header is already visible by the time this
   section scrolls into view, and would otherwise overlap the heading. A
   kicker label above the h2 (matching the Events/Regions sections) keeps
   that top padding from reading as dead space. */
.slider-head{
  width:100%;
  max-width:1280px;
  margin:0 auto;
  padding:35px 40px 22px;
  flex:0 0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:40px;
}
.slider-head__text{
  flex:1 1 480px;
  min-width:0;
}
.slider-head .kicker{
  margin-bottom:12px;
}
.slider-heading{
  color:var(--ivory);
}
.slider-head__copy{
  margin:14px 0 0;
  max-width:420px;
  font-size:15px;
  line-height:1.55;
  color:var(--ink-soft);
}

/* decorative Kentucky-shaped badge that fills the right side of the
   heading row, so the section doesn't open on a wide empty ivory band */
.slider-head__art{
  position:relative;
  flex:0 0 auto;
  width:clamp(200px, 22vw, 320px);
}
.slider-head__art::before{
  content:"";
  position:absolute;
  inset:-25%;
  background:radial-gradient(circle, rgba(0,63,110,0.10), rgba(0,63,110,0) 68%);
  z-index:0;
}
.slider-head__art img{
  position:relative;
  z-index:1;
  display:block;
  width:100%;
  height:auto;
  filter:drop-shadow(0 16px 26px rgba(0,32,56,0.22));
}

@media (max-width: 900px){
  .slider-head__art{ display:none; }
}

/* everything below the heading — the actual photo carousel — takes the
   remaining height and becomes the positioning context for the slides */
.slider-stage{
  position:relative;
  flex:1 1 auto;
  min-height:0;
  overflow:hidden;
}

#slider .list{
  width:100%;
  height:100%;
  position:absolute;
  inset:0 0 0 0;
}

/* Each slide sits stacked on top of the others and only becomes visible
   once JS adds the "active" class to it (see the Slider script in
   index.html). */
#slider .list .item{
  position:absolute;
  inset:0;
  opacity:0;
  visibility:hidden;
  z-index:0;
  transition:opacity 0.6s ease;
}
#slider .list .item.active{
  opacity:1;
  visibility:visible;
  z-index:1;
}

#slider .list .item img{
  width:100%;
  height:100%;
  position:absolute;
  object-fit:cover;
}
#slider .list .item .content{
  position:absolute;
  top:20%;
  left:50%;
  width:1200px;
  max-width:90%;
  padding-right:10%;
  box-sizing:border-box;
  color:#FFF;
  text-shadow:0 5px 10px #000;
  opacity:0;
  transform:translate(-50%, 20px);
  transition:opacity 0.6s ease 0.15s, transform 0.6s ease 0.15s;
}
#slider .list .item.active .content{
  opacity:1;
  transform:translate(-50%, 0);
}

/* small category "kicker" badge, sits above the headline — base color is
   bluegrass, with gold/terracotta variants distributed across categories
   so the slider previews the same accent palette used site-wide */
#slider .list .item .type{
  display:inline-block;
  margin:0 0 14px;
  padding:6px 16px;
  font-size:11.5px;
  font-weight:700;
  letter-spacing:0.14em;
  text-transform:uppercase;
  color:#FFF;
  background:var(--bluegrass);
  border-radius:999px;
  text-shadow:none;
}
#slider .list .item .type.type--gold{ background:var(--gold-deep); }
#slider .list .item .type.type--terracotta{ background:var(--terracotta); }
#slider .list .item .type.type--bluegrass{ background:var(--bluegrass); }

#slider .list .item .title{
  margin:0;
  font-size:4.2em;
  font-weight:900;
  line-height:1.05;
}

#slider .list .item .description{
  margin-top:18px;
  max-width:640px;
  line-height:1.5;
}

#slider .list .item .content .details-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-top:24px;
  color:#FFF;
  font-size:14px;
  font-weight:600;
  letter-spacing:0.03em;
  text-decoration:none;
  border-bottom:1px solid rgba(255,255,255,0.5);
  padding-bottom:4px;
  transition:gap 0.25s ease, border-color 0.25s ease;
}
#slider .list .item .content .details-link:hover{
  gap:14px;
  border-color:#FFF;
}

.thumbnail{
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
  max-width: calc(100% - 40px);
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  gap:20px;
}
.thumbnail .item{
  width: 135px;
  height: 170px;
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.thumbnail .item:hover{
  opacity: 0.8;
}
.thumbnail .item.active{
  opacity: 1;
  transform: translateY(-10px);
}
.thumbnail .item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 5px 0 15px rgba(0,0,0,0.5);
}

.nextprevArrows{
  position: absolute;
  bottom: 32px;
  right: max(40px, calc((100% - 1280px) / 2 + 40px));
  z-index: 100;
  display: flex;
  gap:10px;
}
.nextprevArrows button{
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border:none;
  background-color: var(--bluegrass);
  color:#FFF;
  font-weight: bold;
  cursor:pointer;
  transition:0.4s;
}
.nextprevArrows button:hover{
  background-color: #FFF;
  color: var(--bluegrass);
}

/* =========================================================
   Events & Festivals (Section 3) — bluegrass background, per
   request, with an ivory/gold palette laid over it for contrast
   ========================================================= */
.events{
  background:var(--bluegrass);
  color:var(--ivory);
  padding:110px 0;
}
.events__inner{
  max-width:1280px;
  margin:0 auto;
  padding:0 40px;
}
.events__heading{
  color:var(--ivory);
}
.events__head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:32px;
  margin-bottom:48px;
}
.events__copy{
  margin:16px 0 0;
  max-width:520px;
  font-size:15.5px;
  line-height:1.6;
  color:rgba(253,251,247,0.72);
}
.events__controls{
  display:flex;
  gap:10px;
  flex:0 0 auto;
}

.round-btn{
  width:44px;
  height:44px;
  border-radius:50%;
  border:none;
  font-weight:bold;
  cursor:pointer;
  transition:background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.round-btn--outline{
  background:transparent;
  color:var(--ivory);
  border:1.5px solid rgba(253,251,247,0.4);
}
.round-btn--outline:hover{
  background:var(--ivory);
  color:var(--bluegrass);
  border-color:var(--ivory);
}

.events-track{
  display:flex;
  gap:24px;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  padding-bottom:8px;
}
.no-scrollbar{ scrollbar-width:none; -ms-overflow-style:none; }
.no-scrollbar::-webkit-scrollbar{ display:none; height:0; }

.event-card{
  flex:0 0 auto;
  width:calc((100% - 72px) / 4);
  scroll-snap-align:start;
  background:rgba(253,251,247,0.06);
  border:1px solid rgba(253,251,247,0.14);
  border-radius:18px;
  overflow:hidden;
  transition:transform 0.3s ease, border-color 0.3s ease;
}
.event-card:hover{
  transform:translateY(-4px);
  border-color:rgba(253,251,247,0.3);
}
.event-card__media{
  position:relative;
  height:190px;
}
.event-card__media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.event-card__badge{
  position:absolute;
  top:14px;
  left:14px;
  padding:5px 13px;
  background:var(--gold);
  color:var(--ink);
  font-size:11px;
  font-weight:700;
  letter-spacing:0.06em;
  text-transform:uppercase;
  border-radius:999px;
}
.event-card__body{
  padding:22px 22px 26px;
}
.event-card__location{
  display:block;
  margin-bottom:8px;
  font-size:11.5px;
  font-weight:700;
  letter-spacing:0.1em;
  text-transform:uppercase;
  color:var(--gold);
}
.event-card__title{
  margin:0 0 10px;
  font-size:19px;
  font-weight:700;
  line-height:1.25;
  color:var(--ivory);
}
.event-card__copy{
  margin:0;
  font-size:14px;
  line-height:1.55;
  color:rgba(253,251,247,0.68);
}

.events__cta{
  margin-top:48px;
  text-align:center;
}
.events__cta .btn-outline{
  border-color:rgba(253,251,247,0.5);
  color:var(--ivory);
}
.events__cta .btn-outline:hover{
  background:var(--ivory);
  color:var(--bluegrass);
  border-color:var(--ivory);
}

/* =========================================================
   Interactive Regional Map (Section 4)
   ========================================================= */
.regions{
  background:var(--paper);
  padding:110px 0;
}
.regions__inner{
  max-width:1280px;
  margin:0 auto;
  padding:0 40px;
}
.regions__heading{
  margin-top:0;
}
.regions__intro{
  margin:16px 0 48px;
  max-width:560px;
  font-size:15.5px;
  line-height:1.6;
  color:var(--ink-soft);
}

.regions__grid{
  display:grid;
  grid-template-columns:1.2fr 1fr;
  gap:56px;
  align-items:start;
}

.regions__map-col{ min-width:0; }

.ky-map{
  width:100%;
  height:auto;
  display:block;
}
.ky-region{
  cursor:pointer;
  stroke:var(--paper);
  stroke-width:2.5;
  opacity:0.86;
  transition:opacity 0.25s ease, filter 0.25s ease;
}
.ky-region:hover,
.ky-region:focus{
  opacity:1;
  filter:brightness(1.1);
  outline:none;
}
.ky-region.active{
  opacity:1;
  stroke:var(--gold);
  stroke-width:3.5;
  filter:drop-shadow(0 4px 10px rgba(0,20,40,0.25));
}

.regions__caption{
  margin:14px 4px 0;
  font-size:12.5px;
  color:var(--ink-soft);
  opacity:0.75;
}

.region-panel{
  background:#FFF;
  border-radius:20px;
  padding:32px;
  box-shadow:0 20px 50px -20px rgba(17,17,15,0.18);
  border:1px solid rgba(17,17,15,0.06);
}
.region-panel__image{
  width:100%;
  height:170px;
  object-fit:cover;
  border-radius:12px;
  margin-bottom:22px;
  display:block;
}
.region-panel__name{
  margin:0 0 12px;
  font-size:22px;
  font-weight:700;
  color:var(--bluegrass);
}
.region-panel__desc{
  margin:0 0 22px;
  font-size:14.5px;
  line-height:1.6;
  color:var(--ink-soft);
}
.region-panel__label{
  margin:0 0 10px;
  font-size:11.5px;
  font-weight:700;
  letter-spacing:0.12em;
  text-transform:uppercase;
  color:var(--terracotta);
}
.region-panel__list{
  margin:0 0 24px;
  padding:0;
  list-style:none;
}
.region-panel__list li{
  padding:9px 0;
  font-size:14px;
  color:var(--ink);
  border-top:1px solid rgba(17,17,15,0.08);
}
.region-panel__list li:first-child{ border-top:none; }
.region-panel__link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:13.5px;
  font-weight:600;
  color:var(--bluegrass);
  text-decoration:none;
  border-bottom:1px solid rgba(0,63,110,0.35);
  padding-bottom:3px;
  transition:gap 0.25s ease, border-color 0.25s ease;
}
.region-panel__link:hover{
  gap:13px;
  border-color:var(--bluegrass);
}

/* =========================================================
   Newsletter (Section 5) — full-bleed band, not a floating card
   ========================================================= */
.newsletter{
  position:relative;
  overflow:hidden;
  padding:120px 40px;
  background:linear-gradient(135deg, var(--bluegrass-deep) 0%, var(--bluegrass) 55%, var(--bluegrass-deep) 100%);
  color:var(--ivory);
  text-align:center;
}
.newsletter::before{
  content:"";
  position:absolute;
  top:-30%;
  right:-10%;
  width:60%;
  height:160%;
  background:radial-gradient(circle, rgba(200,155,60,0.16), rgba(200,155,60,0) 70%);
  pointer-events:none;
}
.newsletter::after{
  content:"";
  position:absolute;
  bottom:-40%;
  left:-10%;
  width:50%;
  height:140%;
  background:radial-gradient(circle, rgba(253,251,247,0.08), rgba(253,251,247,0) 70%);
  pointer-events:none;
}
.newsletter__inner{
  position:relative;
  z-index:1;
  max-width:640px;
  margin:0 auto;
}
.newsletter__heading{
  color:var(--ivory);
}
.newsletter__copy{
  margin:18px 0 40px;
  font-size:16px;
  line-height:1.6;
  color:rgba(253,251,247,0.78);
}
.newsletter__form{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  justify-content:center;
}
.newsletter__input{
  flex:1 1 220px;
  min-width:200px;
  padding:15px 20px;
  font-size:14.5px;
  font-family:inherit;
  color:var(--ink);
  background:var(--ivory);
  border:1px solid rgba(253,251,247,0.4);
  border-radius:12px;
  outline:none;
  transition:box-shadow 0.2s ease;
}
.newsletter__input:focus{
  box-shadow:0 0 0 3px rgba(200,155,60,0.45);
}
.newsletter__submit{
  flex:0 0 auto;
  padding:15px 34px;
  background:var(--gold);
  color:var(--ink);
  font-size:13.5px;
  font-weight:700;
  letter-spacing:0.04em;
  text-transform:uppercase;
  border:none;
  border-radius:12px;
  cursor:pointer;
  transition:background 0.25s ease, transform 0.25s ease;
}
.newsletter__submit:hover{
  background:var(--gold-deep);
  transform:translateY(-1px);
}
.newsletter__message{
  min-height:20px;
  margin:18px 0 0;
  font-size:13.5px;
  color:var(--gold);
}

/* =========================================================
   Footer (Section 6)
   ========================================================= */
.site-footer{
  background:var(--ink);
  color:rgba(253,251,247,0.78);
  padding:72px 40px 28px;
}
.site-footer__inner{
  max-width:1280px;
  margin:0 auto;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr 1fr;
  gap:40px;
  padding-bottom:44px;
  border-bottom:1px solid rgba(253,251,247,0.12);
}
.footer-logo{
  font-size:18px;
  font-weight:600;
  color:var(--ivory);
  text-decoration:none;
  display:flex;
  align-items:center;
}
.footer-logo img{
  display:block;
  height:38px;
  width:auto;
}
.footer-logo span{
  font-family:"Cormorant Garamond", serif;
  font-style:italic;
  font-weight:500;
  color:var(--gold);
}
.footer-tagline{
  margin:14px 0 0;
  font-size:13.5px;
  line-height:1.6;
  color:rgba(253,251,247,0.55);
  max-width:230px;
}
.footer-col h3{
  margin:0 0 18px;
  font-size:12px;
  font-weight:700;
  letter-spacing:0.12em;
  text-transform:uppercase;
  color:var(--gold);
}
.footer-col ul{
  margin:0;
  padding:0;
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.footer-col ul a{
  font-size:13.5px;
  color:rgba(253,251,247,0.72);
  text-decoration:none;
  transition:color 0.2s ease;
}
.footer-col ul a:hover{ color:var(--ivory); }

.footer-social{
  display:flex;
  gap:12px;
}
.footer-social a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:38px;
  height:38px;
  border-radius:50%;
  border:1px solid rgba(253,251,247,0.2);
  color:rgba(253,251,247,0.8);
  transition:border-color 0.2s ease, color 0.2s ease;
}
.footer-social a:hover{
  border-color:var(--gold);
  color:var(--gold);
}

.footer-bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding-top:24px;
  font-size:12.5px;
  color:rgba(253,251,247,0.5);
}
.footer-bottom p{ margin:0; }
.footer-legal{
  display:flex;
  gap:20px;
}
.footer-legal a{
  color:rgba(253,251,247,0.5);
  text-decoration:none;
  transition:color 0.2s ease;
}
.footer-legal a:hover{ color:var(--ivory); }

/* ---------- responsive ---------- */

@media screen and (max-width: 900px){
  .slider-head{
    padding:92px 40px 18px;
  }
  #slider .list .item .content{
    max-width: 96%;
    padding-right: 6%;
  }
  #slider .list .item .title{
    font-size: 2.4em;
  }
  #slider .list .item .type{
    font-size: 10.5px;
    padding: 5px 14px;
  }
  .thumbnail .item{
    width: 110px;
    height: 150px;
  }

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

  .footer-grid{
    grid-template-columns:1fr 1fr;
    row-gap:36px;
  }
}

@media screen and (max-width: 720px){
  .events, .regions{ padding:80px 0; }
  .newsletter{ padding:90px 24px; }

  .events__head{
    flex-direction:column;
    align-items:flex-start;
    gap:20px;
  }
  .events__controls{ align-self:flex-end; }

  .footer-bottom{
    flex-direction:column;
    align-items:flex-start;
  }
}

@media screen and (max-width: 640px){
  .slider-head{
    padding:88px 24px 14px;
  }
  .section-heading{
    font-size:clamp(24px, 6vw, 30px);
  }
  #slider .list .item .content{
    top: 10%;
    left: 0;
    right: 0;
    width: auto;
    max-width: none;
    padding: 0 24px;
    transform: translate(0, 20px);
  }
  #slider .list .item.active .content{
    transform: translate(0, 0);
  }
  #slider .list .item .title{
    font-size: 1.7em;
  }
  #slider .list .item .type{
    font-size: 10px;
    padding: 4px 12px;
  }
  #slider .list .item .description{
    font-size: 14px;
    max-width: 100%;
  }
  #slider .list .item .content .details-link{
    font-size: 13px;
    margin-top: 18px;
  }
  .thumbnail{
    gap: 10px;
    bottom: 16px;
  }
  .thumbnail .item{
    width: 72px;
    height: 100px;
  }
  .nextprevArrows{
    bottom: 16px;
    right: 24px;
  }
  .nextprevArrows button{
    width:36px;
    height:36px;
  }

  .events__inner, .regions__inner{ padding:0 24px; }

  .event-card{
    width:100%;
  }

  .newsletter__form{
    flex-direction:column;
    align-items:stretch;
  }
  .newsletter__input{ flex:none; width:100%; }
  .newsletter__submit{ width:100%; }

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

@media screen and (max-width: 420px){
  .thumbnail .item:nth-child(4),
  .thumbnail .item:nth-child(5){
    display:none;
  }
}
