.featured-hotels-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.featured-hotels-grid__item {
  margin: 0;
  padding: 0;
}

.hotel-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
  transition: transform .25s ease, box-shadow .25s ease;
}

.hotel-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.hotel-card__media {
  position: relative;
}

.hotel-card__image-link {
  display: block;
}

.hotel-card__image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.hotel-card__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 18px 20px;
}

.hotel-card__stars {
  color: #f5b301;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 1px;
}

.hotel-card__title {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.3;
  font-weight: 700;
}

.hotel-card__title a,
.hotel-card__title-link {
  color: #1f1f1f;
  text-decoration: none;
}

.hotel-card__title a:hover,
.hotel-card__title-link:hover {
  color: #910048;
}

.hotel-card__location {
  font-size: .94rem;
  color: #6f6f6f;
  margin-top: -2px;
}

.hotel-card__excerpt {
  font-size: .93rem;
  line-height: 1.55;
  color: #5f6368;
  margin-top: 2px;
}

.hotel-card__actions {
  margin-top: auto;
  padding-top: 8px;
}

.hotel-card__button,
.hotel-card__actions .readmore a,
.hotel-card__actions .mod-articles-readmore a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 12px;
  background: #910048;
  color: #fff !important;
  text-decoration: none;
  font-weight: 700;
  border: 0;
  transition: background .2s ease, transform .2s ease;
}

.hotel-card__button:hover,
.hotel-card__actions .readmore a:hover,
.hotel-card__actions .mod-articles-readmore a:hover {
  background: #00717F;
  transform: translateY(-1px);
}

.hotel-card__sticker {
  position: absolute;
  z-index: 3;
  background: rgba(255, 255, 255, 0.96);
  color: #1f1f1f;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(0,0,0,0.10);
}

.hotel-card__sticker--top-left {
  top: 12px;
  left: 12px;
}

.hotel-card__sticker--top-right {
  top: 12px;
  right: 12px;
}

.hotel-card__sticker--bottom-left {
  bottom: 12px;
  left: 12px;
}

.hotel-card__sticker--bottom-right {
  bottom: 12px;
  right: 12px;
}

/* ako modul i dalje ispisuje stare mod-articles elemente */
.mod-articles-item.hotel-card .mod-articles-title {
  margin: 0;
}

.mod-articles-item.hotel-card .mod-articles-category,
.mod-articles-item.hotel-card .mod-articles-info {
  display: none;
}

/* heading sekcije ako ga koristiš */
.greece-section-heading,
.section-heading {
  text-align: center;
  margin-bottom: 34px;
}

.greece-section-heading h2,
.section-heading h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.15;
  margin-bottom: 10px;
  color: #1f1f1f;
  font-weight: 700;
}

.greece-section-heading p,
.section-heading p {
  max-width: 700px;
  margin: 0 auto;
  color: #5f6368;
  font-size: 1rem;
}

/* responsive */
@media (max-width: 991.98px) {
  .featured-hotels-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }

  .hotel-card__image {
    height: 220px;
  }
}

@media (max-width: 575.98px) {
  .featured-hotels-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .hotel-card__image {
    height: 220px;
  }

  .hotel-card__body {
    padding: 14px 16px 18px;
  }
}