h1 {
  font-weight: 700;
}

label {
  font-weight: 500;
  display: block;
  margin-bottom: 6px;
}

.slider-container {
  width: 100%;
}

#yearSlider {
  width: 100%;
  display: block;
}

.slider-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 4px;
  font-size: 0.85rem;
  color: #555;
}

.page-heading {
  display: none;
}

.hero {
  padding: 80px 0 60px;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  color: #1a2e2e;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: #555;
  font-weight: 400;
  margin-bottom: 1.5rem;
}

.hero-meta {
  font-size: 0.95rem;
  color: #777;
}

.side-by-side {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin: 3rem 0;

  img, iframe {
    flex: 2;
    min-width: 0;
  }

  .side-text {
    flex: 1;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
  }
}

.side-by-side.reverse {
  flex-direction: col-reverse;
}


.station-feature {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 20px;
}

.station-feature img {
    width: 50%;
    object-fit: cover;
}

.station-info {
    flex: 1;
}

.station-name {
    font-style: italic;
    margin-bottom: 8px;
}

.station-volume {
    font-size: 1rem;
}

.station-feature-stacked {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
}

.station-feature-stacked img {
    width: 100%;
    object-fit: cover;
}

.station-info-stacked {
    margin-top: 16px;
    padding-left: 4px;
}

.station-info-stacked .station-name {
    font-style: italic;
    margin-bottom: 4px;
}

.station-info-stacked .station-volume {
    font-size: 1rem;
}

