.home-top-row {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 32px 32px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 32px;
}
.home-hero {
  flex: 0 1 520px;
  min-width: 0;
  margin: 0;
  padding: 0;
}
.home-hero__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #ffffff;
  border: 1px solid #282828;
  overflow: hidden;
}
.home-hero__slide {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  box-sizing: border-box;
}
.home-hero__slide.is-active {
  display: flex;
}
.home-hero__image {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.home-hero__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 64px;
  padding: 0;
  background: transparent;
  border: none;
  color: #282828;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.85;
  transition: opacity 0.2s ease;
  z-index: 2;
}
.home-hero__nav:hover,
.home-hero__nav:focus {
  opacity: 1;
  outline: none;
}
.home-hero__nav svg {
  width: 24px;
  height: 40px;
  display: block;
}
.home-hero__nav--prev { left: 12px; }
.home-hero__nav--next { right: 12px; }
.home-events {
  flex: 0 1 520px;
  min-width: 0;
  margin: 0;
  padding: 0;
}
.home-event {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 24px 0;
  text-decoration: none;
  color: inherit;
}
.home-event:first-of-type {
  padding-top: 0;
}
.home-event__thumb {
  width: 160px;
  height: auto;
  flex-shrink: 0;
}
.home-event__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 0;
}
.home-event__title {
  font-family: 'ThatThatNewPixel', Arial, sans-serif;
  font-size: 22px;
  line-height: 1.1;
  color: #282828;
  text-transform: uppercase;
}
.home-event__date {
  font-family: 'ThatThatNewPixel', Arial, sans-serif;
  font-size: 17px;
  line-height: 1.1;
  color: #888888;
}
.home-event__desc {
  font-family: 'ThatThatNewPixel', Arial, sans-serif;
  font-size: 14px;
  line-height: 1.35;
  color: #999999;
  text-transform: uppercase;
  margin-top: 8px;
}
.home-section-label {
  font-family: 'ThatThatNewPixel', Arial, sans-serif;
  font-size: 22px;
  font-weight: normal;
  line-height: 1.1;
  text-transform: uppercase;
  color: #282828;
  margin-bottom: 24px;
}
.home-news {
  text-align: center;
  padding: 0 32px 60px;
}
.home-news a {
  font-family: 'ThatThatNewPixel', Arial, sans-serif;
  font-size: 18px;
  color: #6CB1D2;
  text-decoration: none;
}
.home-tagline {
  font-family: 'ThatThatNewPixel', Arial, sans-serif;
  font-size: 22px;
  font-weight: normal;
  line-height: 1.1;
  text-align: center;
  color: #282828;
  max-width: 600px;
  margin: 0 auto;
  padding: 32px 32px 0;
}
@media (max-width: 900px) {
  .home-top-row {
    flex-direction: column;
    padding: 32px 24px 32px;
    gap: 24px;
  }
  .home-hero,
  .home-events {
    flex: 1 1 auto;
    width: 100%;
    max-width: 800px;
  }
}
@media (max-width: 600px) {
  .home-hero__slide {
    padding: 10px;
  }
  .home-hero__nav {
    width: 36px;
    height: 52px;
  }
  .home-hero__nav svg {
    width: 18px;
    height: 30px;
  }
  .home-hero__nav--prev { left: 6px; }
  .home-hero__nav--next { right: 6px; }
  .home-tagline {
    font-size: 16px;
    padding: 24px 24px 0;
  }
  .home-event {
    gap: 14px;
    padding: 16px 0;
  }
  .home-event__thumb {
    width: 120px;
    height: auto;
  }
  .home-event__title {
    font-size: 16px;
  }
  .home-event__date {
    font-size: 14px;
  }
  .home-event__desc {
    font-size: 11px;
    margin-top: 6px;
  }
  .home-news {
    padding: 0 24px 40px;
  }
  .home-news a {
    font-size: 16px;
  }
}
