/* ═══════════════════════════════════════════
   HOMEPAGE CSS — La Familia
   Basado en el diseño objetivo
═══════════════════════════════════════════ */

/* ── VARIABLES ── */
:root {
  --lf-azul:   #23255D;
  --lf-azul-d: #13184a;
  --lf-rojo:   #F11E52;
  --lf-rojo-d: #c8002f;
  --lf-crema:  #faf7f2;
  --lf-gris:   #f5f5f5;
}

/* ── HERO ── */
.lf-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.lf-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
  z-index: 0;
  transform: scale(1.04);
  animation: lf-zoom 18s ease-in-out infinite alternate;
}
@keyframes lf-zoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.1); }
}
.lf-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.3) 40%,
    rgba(35,37,93,0.75) 100%
  );
  z-index: 1;
}

/* Logo centrado en hero */
.lf-hero__logo-center {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.lf-hero__logo-center img {
  height: 90px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}
.lf-hero__logo-center span {
  font-family: 'Jost', sans-serif;
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
}

/* Contenido principal hero */
.lf-hero__content {
  position: relative;
  z-index: 2;
  text-align: left;
  max-width: 1200px;
  width: 100%;
  padding: 0 80px;
  margin-top: 60px;
}
.lf-hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 700;
  color: white;
  line-height: 1.05;
  margin-bottom: 16px;
  text-shadow: 2px 2px 20px rgba(0,0,0,0.3);
}
.lf-hero__title em {
  font-family: 'Dancing Script', cursive;
  font-style: normal;
  font-weight: 700;
  color: var(--lf-rojo);
  font-size: 1.15em;
}

/* Divisor */
.lf-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px 0 20px;
}
.lf-divider span:not(.lf-divider__heart) {
  display: block;
  width: 60px;
  height: 1px;
  background: rgba(255,255,255,0.4);
  flex-shrink: 0;
}
.lf-divider--center { justify-content: center; }
.lf-divider--center span:not(.lf-divider__heart) {
  background: var(--lf-rojo);
  opacity: 0.5;
}
.lf-divider__heart {
  color: var(--lf-rojo);
  font-size: 1rem;
}

.lf-hero__desc {
  font-family: 'Jost', sans-serif;
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 460px;
}

.lf-hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

/* Scroll indicator */
.lf-hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-family: 'Jost', sans-serif;
  font-size: 0.55rem;
  letter-spacing: 0.25em;
  animation: lf-bounce 2.5s ease-in-out infinite;
}
@keyframes lf-bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(6px); }
}
.lf-hero__scroll-mouse {
  width: 22px;
  height: 34px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 12px;
  position: relative;
}
.lf-hero__scroll-mouse::after {
  content: '';
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 6px;
  background: rgba(255,255,255,0.6);
  border-radius: 2px;
  animation: lf-scroll 2s ease-in-out infinite;
}
@keyframes lf-scroll {
  0%,100% { top: 5px; opacity: 1; }
  80%     { top: 14px; opacity: 0; }
}

/* ── BOTONES ── */
.lf-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 100px;
  padding: 13px 28px;
  text-decoration: none;
  transition: all 0.28s;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.lf-btn--rojo {
  background: var(--lf-rojo);
  color: white;
  box-shadow: 0 6px 24px rgba(241,30,82,0.3);
}
.lf-btn--rojo:hover {
  background: var(--lf-rojo-d);
  transform: translateY(-2px);
  color: white;
  box-shadow: 0 12px 32px rgba(241,30,82,0.4);
}
.lf-btn--rojo-sm {
  background: var(--lf-rojo);
  color: white;
  font-size: 0.65rem;
  padding: 10px 22px;
}
.lf-btn--rojo-sm:hover { background: var(--lf-rojo-d); color: white; }
.lf-btn--rojo-outline {
  background: transparent;
  color: var(--lf-rojo);
  border: 1.5px solid var(--lf-rojo);
}
.lf-btn--rojo-outline:hover { background: var(--lf-rojo); color: white; }
.lf-btn--ghost {
  background: rgba(255,255,255,0.1);
  color: white;
  border: 1.5px solid rgba(255,255,255,0.45);
  backdrop-filter: blur(4px);
}
.lf-btn--ghost:hover { background: white; color: var(--lf-azul); border-color: white; }
.lf-btn--azul {
  background: var(--lf-azul);
  color: white;
  box-shadow: 0 6px 20px rgba(35,37,93,0.2);
}
.lf-btn--azul:hover { background: var(--lf-azul-d); color: white; transform: translateY(-2px); }
.lf-btn--azul-sm {
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255,255,255,0.5);
  font-size: 0.65rem;
  padding: 9px 20px;
}
.lf-btn--azul-sm:hover { background: white; color: var(--lf-azul); border-color: white; }
.lf-btn--azul-outline {
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255,255,255,0.5);
}
.lf-btn--azul-outline:hover { background: white; color: var(--lf-azul); }
.lf-btn--blanco {
  background: white;
  color: var(--lf-azul);
}
.lf-btn--blanco:hover { background: var(--lf-crema); color: var(--lf-azul); }
.lf-btn--wa {
  background: #25D366;
  color: white;
  box-shadow: 0 6px 20px rgba(37,211,102,0.3);
}
.lf-btn--wa:hover { background: #1ebe5d; color: white; transform: translateY(-2px); }

/* ── SECCIONES ── */
.lf-section { padding: 80px 80px; }
.lf-section__head { text-align: center; margin-bottom: 48px; }
.lf-section__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  font-weight: 700;
  color: var(--lf-azul);
  margin-bottom: 12px;
}
.lf-text-center { text-align: center; }

/* ── PRODUCTOS ── */
.lf-productos { background: var(--lf-crema); }

/* Sobreescribir WooCommerce */
.lf-productos ul.products {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 24px !important;
  padding: 0 !important;
  margin: 0 auto !important;
  list-style: none !important;
  float: none !important;
  max-width: 1100px;
}
.lf-productos ul.products::before,
.lf-productos ul.products::after { display: none !important; }

.lf-productos ul.products li.product {
  background: white !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  box-shadow: 0 4px 24px rgba(35,37,93,0.07) !important;
  border: none !important;
  margin: 0 !important;
  padding: 0 !important;
  float: none !important;
  width: auto !important;
  display: flex !important;
  flex-direction: column !important;
  transition: transform 0.35s ease, box-shadow 0.35s ease !important;
  text-align: center !important;
}
.lf-productos ul.products li.product:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 20px 52px rgba(35,37,93,0.13) !important;
}
.lf-productos ul.products li.product a.woocommerce-loop-product__link {
  display: block !important;
  overflow: hidden !important;
  line-height: 0 !important;
}
.lf-productos ul.products li.product img {
  width: 100% !important;
  height: 200px !important;
  object-fit: cover !important;
  object-position: center !important;
  margin: 0 !important;
  display: block !important;
  transition: transform 0.5s ease !important;
}
.lf-productos ul.products li.product:hover img { transform: scale(1.05) !important; }

.lf-productos ul.products li.product .woocommerce-loop-product__title {
  font-family: 'Playfair Display', serif !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  color: var(--lf-azul) !important;
  padding: 14px 16px 4px !important;
  margin: 0 !important;
  line-height: 1.3 !important;
  text-align: center !important;
}
.lf-productos ul.products li.product .woocommerce-product-details__short-description,
.lf-productos ul.products li.product .star-rating {
  display: none !important;
}
.lf-productos ul.products li.product .price {
  font-family: 'Jost', sans-serif !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  color: var(--lf-azul) !important;
  padding: 2px 16px 8px !important;
  display: block !important;
  margin: 0 !important;
  text-align: center !important;
}
.lf-productos ul.products li.product .button,
.lf-productos ul.products li.product a.button {
  display: block !important;
  width: fit-content !important;
  margin: 4px auto 16px !important;
  font-family: 'Jost', sans-serif !important;
  font-size: 0.6rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  color: var(--lf-azul) !important;
  background: transparent !important;
  border: 1.5px solid var(--lf-azul) !important;
  border-radius: 100px !important;
  padding: 8px 20px !important;
  transition: all 0.25s !important;
  box-shadow: none !important;
  text-align: center !important;
  line-height: 1.4 !important;
  text-decoration: none !important;
}
.lf-productos ul.products li.product .button:hover,
.lf-productos ul.products li.product a.button:hover {
  background: var(--lf-rojo) !important;
  border-color: var(--lf-rojo) !important;
  color: white !important;
}

/* ── FEATURES ── */
.lf-features {
  background: white;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  padding: 52px 80px;
}
.lf-features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}
.lf-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.lf-feature__icon {
  font-size: 2rem;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: #fff5f7;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, transform 0.25s;
}
.lf-feature:hover .lf-feature__icon {
  background: var(--lf-rojo);
  transform: scale(1.08);
}
.lf-feature h4 {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--lf-azul);
  margin-bottom: 6px;
}
.lf-feature p {
  font-size: 0.82rem;
  color: #888;
  line-height: 1.7;
  margin: 0;
}

/* ── BANNERS ── */
.lf-banners {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.lf-banner {
  padding: 48px 40px;
  min-height: 260px;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
}
.lf-banner--azul { background: var(--lf-azul); }
.lf-banner--rojo { background: var(--lf-rojo); }
.lf-banner--dark { background: var(--lf-azul-d); }

.lf-banner__body { position: relative; z-index: 1; }
.lf-banner__tag {
  font-family: 'Jost', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  display: block;
  margin-bottom: 10px;
}
.lf-banner h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  line-height: 1.2;
  margin-bottom: 10px;
}
.lf-banner p {
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
  line-height: 1.6;
}

/* ── HISTORIA ── */
.lf-historia {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  min-height: 360px;
}
.lf-historia__texto {
  padding: 64px 48px;
  background: var(--lf-crema);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.lf-historia__texto h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--lf-azul);
  margin-bottom: 16px;
}
.lf-historia__texto p {
  font-size: 0.9rem;
  color: #888;
  line-height: 1.85;
  margin-bottom: 24px;
}
.lf-historia__imagen {
  background: #f0ece6;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lf-historia__info {
  background: var(--lf-azul);
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}
.lf-info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}
.lf-info-item > span:first-child { font-size: 1.2rem; margin-top: 2px; }
.lf-info-item strong {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 4px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .lf-features__grid { grid-template-columns: repeat(2, 1fr); }
  .lf-banners { grid-template-columns: 1fr; }
  .lf-historia { grid-template-columns: 1fr; }
  .lf-historia__imagen { display: none; }
}
@media (max-width: 768px) {
  .lf-hero__content { padding: 0 24px; }
  .lf-hero__logo-center img { height: 70px; }
  .lf-section { padding: 56px 24px; }
  .lf-features { padding: 40px 24px; }
  .lf-features__grid { grid-template-columns: 1fr; gap: 20px; }
  .lf-productos ul.products {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 480px) {
  .lf-productos ul.products { grid-template-columns: 1fr !important; }
}

/* Banner con imagen de fondo */
.lf-banner[style*="background-image"] {
  background-size: cover !important;
  background-position: center !important;
}
.lf-banner__bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.lf-banner--azul .lf-banner__bg-overlay { background: rgba(35,37,93,0.82); }
.lf-banner--rojo .lf-banner__bg-overlay { background: rgba(241,30,82,0.82); }
.lf-banner--dark .lf-banner__bg-overlay { background: rgba(19,24,74,0.85); }

/* ═══════════════════════════════════════════
   HERO v3 — Badge, overlay controlable, colores texto
═══════════════════════════════════════════ */

/* La opacidad del overlay viene inline desde PHP */
.lf-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,1) 0%,
    rgba(0,0,0,0.6) 40%,
    rgba(35,37,93,1) 100%
  );
  z-index: 1;
  /* Usamos opacity inline para que el slider la controle */
}

/* Badge / insignia sobre el título */
.lf-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 100px;
  padding: 7px 16px;
  margin-bottom: 20px;
  backdrop-filter: blur(6px);
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
}
.lf-hero__badge-icon {
  font-size: 1.1em;
  line-height: 1;
}

/* Botón ghost oscuro (para fotos claras) */
.lf-btn--ghost-dark {
  background: rgba(0,0,0,0.25);
  color: white;
  border: 1.5px solid rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
}
.lf-btn--ghost-dark:hover {
  background: rgba(0,0,0,0.5);
  color: white;
  border-color: rgba(0,0,0,0.8);
}

/* ─── NAV: hover íconos ─── */
.nav-icon {
  position: relative;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.nav-icon:hover {
  color: white !important;
  background: rgba(255,255,255,0.14);
}

/* Efecto ripple sutil en btn-pedir */
.btn-pedir {
  position: relative;
  overflow: hidden;
}
.btn-pedir::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  border-radius: 100px;
  transition: background 0.22s;
}
.btn-pedir:hover::after {
  background: rgba(255,255,255,0.18);
}

/* ═══ MAPA DE UBICACIÓN ═══ */
.lf-mapa__wrap {
  display: grid;
  grid-template-columns: 320px 1fr;
}
.lf-mapa__info {
  background: var(--lf-azul, #23255D);
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.lf-mapa__info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-family: 'Jost', sans-serif;
}
.lf-mapa__info-item > span:first-child {
  font-size: 1.3rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.lf-mapa__info-item div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.lf-mapa__info-item strong {
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  font-weight: 700;
}
.lf-mapa__info-item span,
.lf-mapa__info-item a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
  text-decoration: none;
}
.lf-mapa__info-item a:hover { color: white; }
.lf-mapa__frame { overflow: hidden; }
.lf-mapa__frame iframe { display: block; }
.lf-mapa__frame--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e5e7eb;
  color: #9ca3af;
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
}
@media (max-width: 768px) {
  .lf-mapa__wrap { grid-template-columns: 1fr; }
  .lf-mapa__info { padding: 32px 24px; }
}

/* ═══════════════════════════════════
   ENTRADAS / BLOG — estética productos
═══════════════════════════════════ */
.lf-entradas__grid {
  display: grid;
  grid-template-columns: repeat(var(--lf-ent-cols, 3), 1fr);
  gap: 24px;
  width: 100%;
}

/* ── Tarjeta ── */
.lf-entrada-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(35,37,93,0.07);
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  text-align: center;
}
.lf-entrada-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 52px rgba(35,37,93,0.13);
}

/* ── Imagen ── */
.lf-entrada-card__img-wrap {
  display: block;
  overflow: hidden;
  position: relative;
  line-height: 0;
  flex-shrink: 0;
}
.lf-entrada-card__img-wrap img {
  width: 100%;
  height: var(--lf-ent-img, 220px);
  max-height: var(--lf-ent-img, 220px);
  object-fit: var(--lf-ent-fit, cover);
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}
.lf-entrada-card:hover .lf-entrada-card__img-wrap img {
  transform: scale(1.04);
}
.lf-entrada-card__no-img {
  width: 100%;
  height: var(--lf-ent-img, 220px);
  max-height: var(--lf-ent-img, 220px);
  background: #f0ece6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

/* ── Badge de categoría ── */
.lf-entrada-card__cat {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--lf-rojo, #F11E52);
  color: white;
  font-family: 'Jost', sans-serif;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  line-height: 1;
}

/* ── Cuerpo de la tarjeta ── */
.lf-entrada-card__body {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
  align-items: center;
}
.lf-entrada-card__fecha {
  font-family: 'Jost', sans-serif;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(35,37,93,0.35);
  display: block;
  margin-bottom: 8px;
}

/* ── Título ── */
.lf-entrada-card__titulo {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--lf-azul, #23255D);
  line-height: 1.3;
  margin: 0 0 10px;
  padding: 0;
}
.lf-entrada-card__titulo a {
  color: inherit;
  text-decoration: none;
  background-image: linear-gradient(var(--lf-rojo, #F11E52), var(--lf-rojo, #F11E52));
  background-size: 0% 2px;
  background-position: center bottom 0px;
  background-repeat: no-repeat;
  transition: background-size 0.35s ease, color 0.25s ease;
  padding-bottom: 2px;
}
.lf-entrada-card:hover .lf-entrada-card__titulo a {
  background-size: 100% 2px;
  color: var(--lf-rojo, #F11E52);
}

/* ── Botón "Leer más" ── */
.lf-entrada-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: 'Jost', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--lf-azul, #23255D);
  background: transparent;
  border: 1.5px solid var(--lf-azul, #23255D);
  border-radius: 100px;
  padding: 8px 20px;
  text-decoration: none;
  transition: all 0.25s;
  margin-top: auto;
}
.lf-entrada-card__btn:hover,
.lf-entrada-card:hover .lf-entrada-card__btn {
  background: var(--lf-rojo, #F11E52);
  border-color: var(--lf-rojo, #F11E52);
  color: white;
}
.lf-entrada-card__btn svg {
  transition: transform 0.25s;
}
.lf-entrada-card__btn:hover svg {
  transform: translateX(3px);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .lf-entradas__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .lf-entradas__grid { grid-template-columns: 1fr; }
}
