.homepage-highlights {
  padding: 70px 20px;
  background: #f7f4f2;
}

.homepage-highlights__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.homepage-highlights__heading-wrap {
  text-align: center;
  margin-bottom: 34px;
}

.homepage-highlights__heading {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.1;
  color: #24433f;
}

.homepage-highlights__slider {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
}

.homepage-highlights__viewport {
  overflow: hidden;
  width: 100%;
  min-width: 0;
}

.homepage-highlights__track {
  display: flex;
  transition: transform 0.4s ease;
  will-change: transform;
}

.homepage-highlights__slide {
  min-width: 100%;
  flex: 0 0 100%;
  box-sizing: border-box;
}

.homepage-highlights__card {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 30px;
  align-items: center;
  background: #fff;
  border-radius: 24px;
  padding: 38px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  height:100%;
}

.homepage-highlights__content {
  min-width: 0;
}

.homepage-highlights__type {
  display: inline-block;
  margin-bottom: 18px;
  padding: 8px 16px;
  border-radius: 8px;
  background: #1c8172;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
}

.homepage-highlights__title {
  margin: 0 0 18px;
  color: #1f4f4a;
  font-size: clamp(2rem, 2.8vw, 3.2rem);
  line-height: 1.1;
}

.homepage-highlights__text {
  margin-bottom: 24px;
  color: #4c5a58;
  font-size: 1.15rem;
  line-height: 1.7;
}

.homepage-highlights__text p {
  margin: 0 0 12px;
}

.homepage-highlights__text p:last-child {
  margin-bottom: 0;
}

.homepage-highlights__button {
  display: inline-block;
  padding: 14px 24px;
  border-radius: 10px;
  background: #d9cdc5;
  color: #2d2d2d;
  text-decoration: none;
  font-weight: 700;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.homepage-highlights__button:hover {
  opacity: 0.92;
  transform: translateY(-1px);
  color: #2d2d2d;
}

.homepage-highlights__media {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.homepage-highlights__media img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 360px;
  object-fit: contain;
  border-radius: 18px;
}

.homepage-highlights__arrow {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 0;
  color: #deaa9b !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 72px;
  line-height: 1;
  cursor: pointer;
  background-color: transparent !important;
}

.homepage-highlights__dots {
  display: flex !important;
  justify-content: center !important;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
  padding: 0;
  width: 100%;
}

.homepage-highlights__dot {
  -webkit-appearance: none;
  appearance: none;
  border: 0 !important;
  outline: none;
  padding: 0 !important;
  margin: 0 !important;
  width: 26px;
  height: 4px;
  border-radius: 2px;
  display: block;
  flex: 0 0 auto;
  background: rgba(222,170,155,0.30) !important;
  box-shadow: none !important;
  opacity: 1 !important;
  cursor: pointer;
}

.homepage-highlights__dot.is-active {
  background: #deaa9b !important;
}

@media (max-width: 900px) {
  .homepage-highlights__card {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 28px;
  }

  .homepage-highlights__media {
    order: -1;
    width: 100%;
  }

  .homepage-highlights__media img {
    width: 100%;
    max-width: 100%;
    max-height: 220px;
  }

  .homepage-highlights__title {
    font-size: 2rem;
  }
}

@media (max-width: 640px) {
  .homepage-highlights {
    padding: 50px 16px;
  }

  .homepage-highlights__slider {
    gap: 8px;
  }

  .homepage-highlights__arrow {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
    font-size: 44px;
  }

  .homepage-highlights__card {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 18px;
    border-radius: 18px;
  }

  .homepage-highlights__content,
  .homepage-highlights__media {
    width: 100%;
    min-width: 0;
  }

  .homepage-highlights__media {
    order: -1;
  }

  .homepage-highlights__media img {
    width: 100%;
    max-width: 100%;
    max-height: 160px;
  }

  .homepage-highlights__title {
    font-size: 1.5rem;
    line-height: 1.15;
    margin-bottom: 12px;
  }

  .homepage-highlights__text {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 16px;
  }

  .homepage-highlights__button {
    padding: 12px 20px;
  }
}