/* MyFirstEvent — Static homepage layout
   Template: custom-home-page.php
-------------------------------------------------- */

:root {
  --mfe-red: #e11d2e;
  --mfe-red-dark: #c41524;
  --mfe-ink: #0f172a;
  --mfe-muted: #64748b;
  --mfe-line: #e2e8f0;
  --mfe-bg: #ffffff;
  --mfe-soft: #f4f6f8;
  --mfe-soft-2: #eef1f4;
  --mfe-radius: 16px;
  --mfe-shadow: 0 10px 28px rgba(15, 23, 42, 0.07);
  --mfe-shadow-hover: 0 16px 36px rgba(15, 23, 42, 0.12);
  --mfe-max: 1180px;
  --mfe-font: "Outfit", "Trebuchet MS", sans-serif;
}

/* Full-width within HitMag (body class + :has fallback) */
body.page-template-custom-home-page #secondary.widget-area,
.site-content:has(.mfe-home) #secondary.widget-area {
  display: none !important;
}

/* Full-width content only — do NOT touch header/footer .hm-container */
body.page-template-custom-home-page .site-content .hm-container,
body.page-template-custom-home-page-php .site-content .hm-container,
.site-content:has(.mfe-home) .hm-container {
  max-width: 100% !important;
  width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

body.page-template-custom-home-page,
body.page-template-custom-home-page-php {
  overflow-x: hidden;
}

body.page-template-custom-home-page .site-content,
body.page-template-custom-home-page-php .site-content {
  max-width: 100% !important;
  width: 100% !important;
  overflow-x: hidden;
}

#primary.content-area.mfe-home-wrap {
  float: none !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  box-sizing: border-box;
}

.mfe-home {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
  background:
    radial-gradient(1200px 420px at 10% -10%, rgba(225, 29, 46, 0.06), transparent 55%),
    radial-gradient(900px 380px at 90% 8%, rgba(15, 23, 42, 0.04), transparent 50%),
    var(--mfe-bg);
  color: var(--mfe-ink);
  font-family: var(--mfe-font);
}

.mfe-home *,
.mfe-home *::before,
.mfe-home *::after {
  box-sizing: border-box;
}

.mfe-home a {
  text-decoration: none;
  color: inherit;
}

.mfe-home__sections {
  max-width: var(--mfe-max);
  margin: 0 auto;
  padding: 0 16px 56px;
  width: 100%;
}

.mfe-section {
  padding: 48px 0 12px;
}

.mfe-section--last {
  padding-bottom: 24px;
}

.mfe-section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.mfe-section__intro {
  max-width: 36rem;
}

.mfe-section__eyebrow {
  margin: 0 0 6px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mfe-red);
}

.mfe-section__title {
  margin: 0;
  font-size: clamp(1.45rem, 2.4vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--mfe-ink);
  line-height: 1.15;
}

.mfe-section__sub {
  margin: 8px 0 0;
  font-size: 0.98rem;
  line-height: 1.45;
  color: var(--mfe-muted);
}

.mfe-section__link {
  color: var(--mfe-red) !important;
  font-size: 0.95rem;
  font-weight: 600;
  white-space: nowrap;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.mfe-section__link:hover {
  border-bottom-color: var(--mfe-red);
  text-decoration: none;
}

/* ---------- Hero ---------- */
.mfe-hero {
  position: relative;
  min-height: min(78vh, 640px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
}

.mfe-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.mfe-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.72) 100%);
}

.mfe-hero__inner {
  position: relative;
  z-index: 1;
  width: min(920px, calc(100% - 32px));
  margin: 48px auto;
  text-align: center;
}

.mfe-hero__brand {
  margin: 0 0 12px;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.mfe-hero__title {
  margin: 0 auto 28px;
  max-width: 18ch;
  font-size: clamp(1.45rem, 3.4vw, 2.35rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.mfe-hero__search {
  display: flex;
  align-items: center;
  gap: 0;
  background: #fff;
  border-radius: 999px;
  padding: 6px 6px 6px 18px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
  max-width: 720px;
  margin: 0 auto 28px;
}

.mfe-hero__search-icon {
  display: flex;
  color: #9ca3af;
  margin-right: 8px;
}

.mfe-hero__search-icon svg {
  width: 20px;
  height: 20px;
}

.mfe-hero__search input {
  flex: 1;
  border: 0;
  outline: none;
  font-size: 0.98rem;
  color: var(--mfe-ink);
  background: transparent;
  min-width: 0;
  padding: 10px 8px;
}

.mfe-hero__search button {
  border: 0;
  background: var(--mfe-red);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 999px;
  padding: 12px 22px;
  cursor: pointer;
  transition: background 0.15s ease;
}

.mfe-hero__search button:hover {
  background: var(--mfe-red-dark);
}

.mfe-hero__cats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.mfe-hero__cat {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--mfe-ink) !important;
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
  transition: transform 0.15s ease;
}

.mfe-hero__cat:hover {
  transform: translateY(-2px);
}

.mfe-hero__cat-icon {
  display: flex;
  color: var(--mfe-red);
}

.mfe-hero__cat-icon svg,
.mfe-cat-card__icon svg {
  width: 18px;
  height: 18px;
}

/* ---------- Artists ---------- */
.mfe-artists {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 16px;
}

.mfe-artist {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.mfe-artist img {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--mfe-shadow);
}

.mfe-artist span {
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.25;
}

/* ---------- Category cards ---------- */
.mfe-cat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.mfe-cat-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--mfe-line);
  border-radius: var(--mfe-radius);
  padding: 16px 18px;
  box-shadow: var(--mfe-shadow);
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.mfe-cat-card:hover {
  border-color: #fecaca;
  transform: translateY(-2px);
}

.mfe-cat-card__label {
  font-weight: 600;
  font-size: 0.98rem;
}

/* ---------- Countries ---------- */
.mfe-countries {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(100px, 1fr);
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 6px;
  scrollbar-width: thin;
}

.mfe-country {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 96px;
}

.mfe-country__flag {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--mfe-soft);
  border: 1px solid var(--mfe-line);
  display: grid;
  place-items: center;
  font-size: 2rem;
  box-shadow: var(--mfe-shadow);
}

.mfe-country__name {
  font-size: 0.9rem;
  font-weight: 600;
}

/* ---------- Cities ---------- */
.mfe-cities {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.mfe-city {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 120px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  color: #fff !important;
}

.mfe-city::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.72) 100%);
}

.mfe-city__name {
  position: relative;
  z-index: 1;
  padding: 14px;
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
}

.mfe-cities .mfe-city:last-child {
  grid-column: span 2;
}

/* ---------- Top Countries (event blocks) ---------- */
.mfe-top-countries {
  position: relative;
}

.mfe-top-countries .mfe-country-block {
  margin-bottom: 36px;
}

.mfe-top-countries .mfe-country-block:last-child {
  margin-bottom: 0;
}

.mfe-country-block__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.mfe-country-block__title {
  margin: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 10px;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--mfe-ink);
}

.mfe-country-block__flag {
  font-size: 1.4rem;
  line-height: 1;
}

.mfe-country-block__name {
  letter-spacing: -0.02em;
}

.mfe-country-block__label {
  display: inline-flex;
  align-items: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--mfe-muted);
}

.mfe-country-block__label::before {
  content: "·";
  margin-right: 8px;
  color: var(--mfe-line);
}

.mfe-country-block__link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--mfe-red) !important;
  white-space: nowrap;
}

.mfe-country-block__link:hover {
  text-decoration: underline;
}

.mfe-events--country {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* ---------- Event cards ---------- */
.mfe-events {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.mfe-event-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-width: 0;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--mfe-radius);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--mfe-shadow);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.mfe-event-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--mfe-shadow-hover);
  border-color: rgba(225, 29, 46, 0.22);
}

.mfe-event-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(145deg, #1f2937, #0f172a);
}

.mfe-event-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.mfe-event-card:hover .mfe-event-card__media img {
  transform: scale(1.05);
}

.mfe-event-card__media-fallback {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(225, 29, 46, 0.35), transparent 45%),
    linear-gradient(160deg, rgba(15, 23, 42, 0.15), rgba(15, 23, 42, 0.55));
  pointer-events: none;
  mix-blend-mode: multiply;
}

.mfe-event-card__datechip {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 1;
  min-width: 48px;
  padding: 7px 8px 6px;
  border-radius: 12px;
  text-align: center;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
  line-height: 1;
}

.mfe-event-card__datechip strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--mfe-ink);
}

.mfe-event-card__datechip em {
  display: block;
  margin-top: 3px;
  font-style: normal;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--mfe-red);
}

.mfe-event-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 14px 14px 15px;
}

.mfe-event-card__title {
  margin: 0 0 10px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--mfe-ink);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.6em;
}

.mfe-event-card__venue,
.mfe-event-card__date {
  margin: 0 0 6px;
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 0.82rem;
  line-height: 1.35;
  color: var(--mfe-muted);
}

.mfe-event-card__venue span,
.mfe-event-card__date span {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.mfe-event-card__icon {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  margin-top: 2px;
  opacity: 0.75;
  color: var(--mfe-red);
}

.mfe-event-card__foot {
  margin-top: auto;
  padding-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-top: 1px solid var(--mfe-line);
}

.mfe-event-card__price {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--mfe-red);
}

.mfe-event-card__price--muted {
  color: var(--mfe-muted);
  font-weight: 600;
}

.mfe-event-card__cta {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--mfe-ink);
  opacity: 0.7;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.mfe-event-card:hover .mfe-event-card__cta {
  opacity: 1;
  color: var(--mfe-red);
}

/* Trending — same simple card grid as Top Countries */
.mfe-trending-events {
  padding-top: 56px;
}

.mfe-events--trending {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* ---------- Lists ---------- */
.mfe-lists {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.mfe-list-col__title {
  margin: 0 0 12px;
  font-size: 1rem;
  font-weight: 700;
}

.mfe-list-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  border: 1px solid var(--mfe-line);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.mfe-list-col li + li {
  border-top: 1px solid var(--mfe-line);
}

.mfe-list-col a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 12px;
  font-size: 0.9rem;
  font-weight: 500;
}

.mfe-list-col a:hover {
  background: var(--mfe-soft);
}

.mfe-list-col__thumb {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: linear-gradient(135deg, #e5e7eb, #cbd5e1);
  flex-shrink: 0;
}

.mfe-list-col__thumb--circle {
  border-radius: 50%;
}

.mfe-list-col__thumb--flag {
  border-radius: 50%;
  background: linear-gradient(135deg, #fecaca, #fda4af);
}

.mfe-list-col__chev {
  margin-left: auto;
  color: #9ca3af;
}

/* ---------- News ---------- */
.mfe-news {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.mfe-news-card {
  border: 1px solid var(--mfe-line);
  border-radius: var(--mfe-radius);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--mfe-shadow);
  display: flex;
  flex-direction: column;
}

.mfe-news-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

.mfe-news-card h3 {
  margin: 0;
  padding: 14px 14px 8px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
}

.mfe-news-card__excerpt {
  margin: 0;
  padding: 0 14px 8px;
  font-size: 0.875rem;
  line-height: 1.45;
  color: var(--mfe-muted);
}

.mfe-news-card__more {
  padding: 0 14px 16px;
  color: var(--mfe-red);
  font-weight: 600;
  font-size: 0.9rem;
}

/* ---------- Why ---------- */
.mfe-why {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.mfe-why__item {
  border: 1px solid var(--mfe-line);
  border-radius: 12px;
  padding: 18px 14px;
  text-align: center;
  background: #fff;
}

.mfe-why__icon {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 1.3rem;
}

.mfe-why__item h3 {
  margin: 0 0 6px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--mfe-ink);
}

.mfe-why__item p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--mfe-muted);
  line-height: 1.4;
}

/* ---------- FAQ ---------- */
.mfe-faq {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mfe-faq__item {
  border: 1px solid var(--mfe-line);
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
}

.mfe-faq__item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  font-weight: 600;
}

.mfe-faq__item summary::-webkit-details-marker {
  display: none;
}

.mfe-faq__qmark {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--mfe-red);
  color: var(--mfe-red);
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  font-weight: 800;
  flex-shrink: 0;
}

.mfe-faq__question {
  flex: 1;
  text-align: left;
}

.mfe-faq__chev {
  color: #9ca3af;
}

.mfe-faq__answer {
  padding: 0 16px 16px 56px;
  color: var(--mfe-muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.mfe-home__edit {
  max-width: var(--mfe-max);
  margin: 0 auto;
  padding: 0 20px 24px;
}

/* ---------- About / disclaimer (pre-footer) ---------- */
.mfe-about {
  padding-top: 24px;
  padding-bottom: 8px;
}

.mfe-about__box {
  border-top: 1px solid var(--mfe-line);
  padding-top: 28px;
}

.mfe-about__title {
  margin: 0 0 12px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--mfe-ink);
}

.mfe-about__text {
  margin: 0;
  max-width: 58rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--mfe-muted);
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .mfe-artists {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .mfe-events,
  .mfe-events--country,
  .mfe-events--trending {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .mfe-lists,
  .mfe-why {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .mfe-news {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .mfe-home__sections {
    padding: 0 14px 40px;
  }

  .mfe-section {
    padding: 32px 0 8px;
  }

  .mfe-section__head {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
  }

  .mfe-section__intro {
    max-width: none;
  }

  .mfe-section__title {
    font-size: 1.28rem;
  }

  .mfe-section__sub {
    font-size: 0.9rem;
  }

  .mfe-hero {
    min-height: auto;
    padding: 36px 0 28px;
  }

  .mfe-hero__inner {
    width: calc(100% - 24px);
    margin: 0 auto;
  }

  .mfe-hero__brand {
    font-size: 1.35rem;
  }

  .mfe-hero__title {
    max-width: none;
    margin-bottom: 18px;
    font-size: clamp(1.2rem, 5.2vw, 1.55rem);
  }

  .mfe-hero__search {
    flex-direction: column;
    border-radius: 16px;
    padding: 10px;
    align-items: stretch;
    margin-bottom: 16px;
  }

  .mfe-hero__search-icon {
    display: none;
  }

  .mfe-hero__search input {
    width: 100%;
    padding: 12px 10px;
    font-size: 16px; /* prevents iOS zoom */
  }

  .mfe-hero__search button {
    width: 100%;
  }

  .mfe-hero__cats {
    gap: 8px;
  }

  .mfe-hero__cat {
    padding: 8px 12px;
    font-size: 0.8rem;
  }

  /* Artists: horizontal swipe row */
  .mfe-artists {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    gap: 14px;
    padding: 2px 2px 10px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .mfe-artists::-webkit-scrollbar {
    display: none;
  }

  .mfe-artist {
    flex: 0 0 74px;
    width: 74px;
    scroll-snap-align: start;
  }

  .mfe-artist img {
    width: 68px;
    height: 68px;
  }

  .mfe-artist span {
    font-size: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .mfe-cat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .mfe-cat-card {
    padding: 12px 14px;
  }

  .mfe-cat-card__label {
    font-size: 0.9rem;
  }

  .mfe-countries {
    display: flex;
    grid-auto-flow: unset;
    grid-auto-columns: unset;
    gap: 12px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 8px;
  }

  .mfe-countries::-webkit-scrollbar {
    display: none;
  }

  .mfe-country {
    flex: 0 0 78px;
    min-width: 78px;
  }

  .mfe-country__flag {
    width: 60px;
    height: 60px;
    font-size: 1.6rem;
  }

  .mfe-country-block__head {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
  }

  .mfe-country-block__title {
    font-size: 1.05rem;
  }

  /* Event cards: 2 columns on phones */
  .mfe-events,
  .mfe-events--country,
  .mfe-events--trending {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .mfe-event-card:hover {
    transform: none;
  }

  .mfe-event-card__media {
    aspect-ratio: 16 / 11;
  }

  .mfe-event-card__datechip {
    left: 8px;
    top: 8px;
    min-width: 40px;
    padding: 5px 6px 4px;
    border-radius: 10px;
  }

  .mfe-event-card__datechip strong {
    font-size: 0.9rem;
  }

  .mfe-event-card__datechip em {
    font-size: 0.6rem;
  }

  .mfe-event-card__body {
    padding: 10px 10px 12px;
  }

  .mfe-event-card__title {
    margin-bottom: 8px;
    font-size: 0.88rem;
    min-height: 0;
    -webkit-line-clamp: 2;
  }

  .mfe-event-card__venue,
  .mfe-event-card__date {
    font-size: 0.72rem;
    margin-bottom: 4px;
  }

  .mfe-event-card__icon {
    width: 12px;
    height: 12px;
    flex-basis: 12px;
  }

  .mfe-event-card__foot {
    padding-top: 8px;
    gap: 6px;
  }

  .mfe-event-card__price {
    font-size: 0.78rem;
  }

  .mfe-event-card__cta {
    font-size: 0.72rem;
  }

  .mfe-trending-events {
    padding-top: 36px;
  }

  .mfe-news,
  .mfe-why,
  .mfe-lists {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .mfe-news-card img {
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
  }

  .mfe-faq__item summary {
    gap: 10px;
  }

  .mfe-about__text {
    font-size: 0.9rem;
  }
}

@media (max-width: 380px) {
  .mfe-home__sections {
    padding: 0 12px 36px;
  }

  .mfe-event-card__cta {
    display: none;
  }

  .mfe-hero__cat span:last-child {
    font-size: 0.76rem;
  }
}

@media (hover: none) {
  .mfe-event-card:hover .mfe-event-card__media img {
    transform: none;
  }
}
