/* Banner slide block: image, title, description, button */
.banner-slide {
  width: 100%;
  margin-bottom: 2rem;
}

.banner-slide__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  min-height: 280px;
  padding: 1.5rem;
  background: linear-gradient(135deg, #0d9488 0%, #0f766e 50%, #115e59 100%);
  border-radius: 8px;
  color: #fff;
}

.banner-slide__media {
  flex: 0 0 auto;
  max-width: 45%;
}

.banner-slide__image {
  width: 100%;
  height: auto;
  max-height: 320px;
  object-fit: cover;
  border-radius: 6px;
}

.banner-slide__content {
  flex: 1 1 280px;
}

.banner-slide__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
}

.banner-slide__description {
  margin: 0 0 1rem;
  font-size: 1rem;
  line-height: 1.5;
  opacity: 0.95;
}

.banner-slide__description p:last-child {
  margin-bottom: 0;
}

.banner-slide__button {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  background: #ea1b10;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.2s, transform 0.1s;
}

.banner-slide__button:hover {
  background: #c4160d;
  color: #fff;
  transform: translateY(-1px);
}

@media (max-width: 640px) {
  .banner-slide__media {
    max-width: 100%;
  }

  .banner-slide__inner {
    flex-direction: column;
    text-align: center;
  }
}
