/* MP Home Categories - miniatura 16:9 con testo centrale + nome categoria sotto */
.mp-homecats {
  padding: 2.25rem 0 1.25rem;
}
/* intestazione: linea blu unica che sale a gradino sopra il titolo e ridiscende
   (stessa forma di .mp-slider-head in custom.css del tema child) */
.mp-homecats__head {
  --mp-step: 18px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin: 0 0 1.6rem;
}
/* le linee riempiono lo spazio: arrivano ai bordi della griglia a ogni larghezza */
.mp-homecats__rule {
  flex: 1 1 auto;
  height: 2px;
  margin-top: calc(var(--mp-step) - 2px);
  background: #084c95;
  opacity: .9;
}
.mp-homecats__title {
  position: relative;
  flex: 0 1 auto;
  min-width: 0;
  text-align: center;
  color: #084c95;
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: .2px;
  text-transform: uppercase;
  line-height: 1.2;
  margin: 0;
  padding: 3px 1.35rem 0;
}
.mp-homecats__title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: var(--mp-step);
  border: 2px solid #084c95;
  border-bottom: 0;
  border-radius: 9px 9px 0 0;
}
@media (max-width: 575.98px) {
  .mp-homecats__head { margin-bottom: 1.25rem; }
  .mp-homecats__title { font-size: 1.25rem; padding: 3px .8rem 0; }
}

/* --- GRIGLIA DESKTOP: 6 per riga --- */
.mp-homecats__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px 14px;
}

.mp-homecats__item {
  display: block;
  text-decoration: none;
  color: #084c95;
}

/* miniatura rettangolare 16:9 */
.mp-homecats__thumb {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  background: #1c2733;
}
.mp-homecats__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.mp-homecats__item:hover .mp-homecats__img {
  transform: scale(1.06);
}

/* velo per rendere leggibile il testo centrale (solo se presente) */
.mp-homecats__scrim {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.32);
  transition: background 0.3s ease;
}
.mp-homecats__item:hover .mp-homecats__scrim {
  background: rgba(8, 76, 149, 0.42);
}

/* testo centrale sull'immagine */
.mp-homecats__sub {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8px 10px;
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.2;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
  z-index: 2;
}

/* nome categoria sotto la miniatura */
.mp-homecats__name {
  display: block;
  text-align: center;
  margin-top: 0.55rem;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.2;
  color: #084c95;
  /* nomi in DB maiuscoli -> stile frase: tutto minuscolo + iniziale maiuscola */
  text-transform: lowercase;
}
.mp-homecats__name::first-letter {
  text-transform: uppercase;
}
.mp-homecats__item:hover .mp-homecats__name {
  color: #06356b;
}

/* --- TABLET: 4 per riga --- */
@media (max-width: 1199px) {
  .mp-homecats__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* --- MOBILE: griglia 2 colonne --- */
@media (max-width: 767px) {
  .mp-homecats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 10px;
  }
}
