.hero-title {
  font-family: var(--font-headline);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #d7d7d7;
  font-size: clamp(1.5rem, 7.5vw, 3.5rem);
  text-shadow: 2px 2px 4px rgba(0,0,0,0.55);
}

.image-hero {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(rgba(0,0,0,0) 0%, rgba(0,0,0,0.83));
}

.hero-topic {
  color: gold;
}

.btn-read {
  border: 2px solid #fff;
  color: #fff;
  padding: 10px 30px;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
}

.hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: flex-end;
}

.hero-content {
  max-width: 800px;
  margin-left: 5%;
  padding-bottom: 100px;
}

.hero-label {
  color: var(--bk-primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.btn-read:hover {
  background: #fff;
  color: #000;
}

