/* ===================================================================
   File: related-offers.css
   =================================================================== */

/* =========================
   RELATED POSTS
========================= */

.ll-related {
  margin-top: 20px;
  padding: 16px;
  border: 1px solid #d7dee8;
  border-radius: 12px;
  background: #fff;
}

.ll-related__heading {
  margin: 0 0 14px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  color: #0f172a;
}

.ll-related-offers {
  margin-top: 44px;
}

.ll-carousel {
  width: 100%;
}

.ll-carousel__track {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.ll-carousel__card {
  min-width: 0;
}

.ll-carousel__link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.ll-carousel__media {
  margin-bottom: 10px;
  overflow: hidden;
  border-radius: 12px;
}

.ll-carousel__image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.ll-carousel__title {
  margin: 8px 0 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
  color: #0f172a;
}

@media (min-width: 700px) {
  .ll-carousel__track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1200px) {
  .ll-carousel__track {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}