/* RC2.4 — Featured Premium Cards */

.mo-featured-premium {
  position: relative;
  padding: 78px 0 92px;
  background:
    radial-gradient(circle at 6% 0%, rgba(215,25,32,.07), transparent 26%),
    radial-gradient(circle at 94% 8%, rgba(15,23,42,.08), transparent 30%),
    linear-gradient(180deg, #f8fafc 0%, #eef3f8 100%);
  font-family: Inter, Arial, sans-serif;
  overflow: hidden;
}

.mo-featured-premium,
.mo-featured-premium * {
  box-sizing: border-box;
}

.mo-featured-premium__container {
  width: min(1320px, calc(100% - 72px));
  margin: 0 auto;
}

.mo-featured-premium__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 32px;
}

.mo-featured-premium__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: #d71920;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.mo-featured-premium__eyebrow::before {
  content: "";
  width: 26px;
  height: 3px;
  border-radius: 999px;
  background: #d71920;
}

.mo-featured-premium__head h2 {
  margin: 10px 0 8px;
  color: #0f172a;
  font-size: clamp(32px, 3.5vw, 48px);
  line-height: 1.02;
  letter-spacing: -.065em;
  text-transform: uppercase;
}

.mo-featured-premium__head p {
  max-width: 760px;
  margin: 0;
  color: #64748b;
  font-size: 15px;
  line-height: 1.65;
}

.mo-featured-premium__all {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  border: 1px solid #d7e0ed;
  border-radius: 999px;
  padding: 0 20px;
  background: #ffffff;
  color: #0f172a;
  text-decoration: none;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .06em;
  box-shadow: 0 14px 28px rgba(15,23,42,.06);
  transition: transform .2s ease, color .2s ease, border-color .2s ease;
}

.mo-featured-premium__all:hover {
  transform: translateY(-1px);
  color: #d71920;
  border-color: rgba(215,25,32,.42);
}

.mo-featured-premium__empty {
  padding: 30px;
  border: 1px dashed #cbd5e1;
  border-radius: 26px;
  background: #ffffff;
  color: #64748b;
  box-shadow: 0 18px 44px rgba(15,23,42,.07);
}

.mo-featured-premium__empty strong {
  display: block;
  margin-bottom: 8px;
  color: #0f172a;
  font-size: 18px;
}

.mo-featured-premium__empty code {
  background: #f1f5f9;
  color: #334155;
  padding: 3px 7px;
  border-radius: 7px;
}

.mo-featured-premium__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.mo-featured-premium-card {
  min-width: 0;
}

.mo-featured-premium-card a {
  height: 100%;
  min-height: 464px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(219, 228, 239, .96);
  border-radius: 30px;
  background: rgba(255,255,255,.98);
  color: #0f172a;
  text-decoration: none;
  box-shadow: 0 20px 48px rgba(15,23,42,.095);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.mo-featured-premium-card a:hover {
  transform: translateY(-5px);
  border-color: rgba(215,25,32,.38);
  box-shadow: 0 32px 72px rgba(15,23,42,.16);
}

.mo-featured-premium-card__media {
  position: relative;
  height: 244px;
  overflow: hidden;
  background: linear-gradient(135deg, #0f172a, #334155);
}

.mo-featured-premium-card__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform .42s ease, filter .42s ease;
}

.mo-featured-premium-card a:hover .mo-featured-premium-card__media img {
  transform: scale(1.07);
  filter: saturate(1.08) contrast(1.03);
}

.mo-featured-premium-card__no-photo {
  height: 100%;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.74);
  font-weight: 950;
}

.mo-featured-premium-card__media img{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;

    filter:
        brightness(1.04)
        contrast(1.05)
        saturate(1.08);

    transition:
        transform .40s ease,
        filter .40s ease;
}

.mo-featured-premium-card:hover
.mo-featured-premium-card__media img{
    transform:scale(1.04);

    filter:
        brightness(1.07)
        contrast(1.08)
        saturate(1.12);
}

.mo-featured-premium-card__top {
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  z-index: 2;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.mo-featured-premium-card__top span,
.mo-featured-premium-card__seal {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 11px;
  background: rgba(255,255,255,.94);
  color: #0f172a;
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .065em;
  backdrop-filter: blur(8px);
}

.mo-featured-premium-card__seal {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  background: #d71920;
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(215,25,32,.30);
}

.mo-featured-premium-card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.mo-featured-premium-card__main h3 {
  margin: 0;
  color: #0f172a;
  font-size: 18px;
  line-height: 1.18;
  letter-spacing: -.035em;
  font-weight: 950;
}

.mo-featured-premium-card__main h3 span {
  display: block;
  margin-top: 4px;
  color: #334155;
  font-size: 14px;
  font-weight: 850;
}

.mo-featured-premium-card__main p {
  min-height: 40px;
  margin: 10px 0 15px;
  color: #64748b;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 760;
}

.mo-featured-premium-card__specs {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.mo-featured-premium-card__specs span {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 9px;
  background: #f1f5f9;
  color: #475569;
  font-size: 11px;
  font-weight: 850;
}

.mo-featured-premium-card__bottom {
  margin-top: auto;
  padding-top: 17px;
  border-top: 1px solid #edf2f7;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.mo-featured-premium-card__price small {
  display: block;
  color: #94a3b8;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.mo-featured-premium-card__price strong {
  display: block;
  margin-top: 4px;
  color: #d71920;
  font-size: 18px;
  line-height: 1.1;
  font-weight: 950;
}

.mo-featured-premium-card__button {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 14px;
  background: #0f172a;
  color: #ffffff;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .065em;
  white-space: nowrap;
  transition: background .2s ease, transform .2s ease;
}

.mo-featured-premium-card a:hover .mo-featured-premium-card__button {
  background: #d71920;
  transform: translateX(1px);
}

.mo-featured-premium-card__code {
  margin-top: 12px;
  color: #94a3b8;
  font-size: 11px;
  font-weight: 850;
}

@media (max-width: 1180px) {
  .mo-featured-premium__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .mo-featured-premium {
    padding: 54px 0 66px;
  }

  .mo-featured-premium__container {
    width: min(100% - 28px, 1320px);
  }

  .mo-featured-premium__head {
    flex-direction: column;
    align-items: stretch;
  }

  .mo-featured-premium__all {
    width: 100%;
  }

  .mo-featured-premium__grid {
    grid-template-columns: 1fr;
  }

  .mo-featured-premium-card a {
    min-height: auto;
  }

  .mo-featured-premium-card__media {
    height: 220px;
  }
}
