.blog-index__hero {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: #1b1b1b;
}

.blog-index__hero-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.blog-index__hero-track::-webkit-scrollbar {
  display: none;
}

.blog-index__hero-slide {
  position: relative;
  flex: 0 0 100%;
  min-height: 360px;
  scroll-snap-align: start;
}

.blog-index__hero-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.blog-index__hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.25) 0%,
    rgba(0, 0, 0, 0.45) 100%
  );
}

.blog-index__hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px;
  color: #ffffff;
  gap: 18px;
}

.blog-index__hero-title {
  margin: 0;
  font-family: "Metal", "Circe", "Tahoma", "Arial", sans-serif;
  font-size: 34px;
  line-height: 1.08;
}

.blog-index__hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 10px;
  background: #ffffff;
  color: #0f0f0f;
  font-size: 12px;
  text-decoration: none;
  font-weight: 600;
  font-family: "Circe", "Tahoma", "Arial", sans-serif;
}

.blog-index__hero-controls {
  position: absolute;
  right: 22px;
  bottom: 22px;
  display: inline-flex;
  gap: 8px;
  z-index: 2;
}

.blog-index__hero-control {
  width: 44px;
  height: 32px;
  border: none;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.7);
  color: #0f0f0f;
}

.blog-index__hero-control.is-primary {
  background: #2b5cff;
  color: #ffffff;
}

.blog-index__hero-control:disabled {
  background: rgba(255, 255, 255, 0.35);
  color: rgba(15, 15, 15, 0.4);
  cursor: default;
}
