.elementor-7147 .elementor-element.elementor-element-253a140{--display:flex;--margin-top:-19px;--margin-bottom:-19px;--margin-left:0px;--margin-right:-19px;}.elementor-7147 .elementor-element.elementor-element-72b038b{width:100%;max-width:100%;margin:-162px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;}:root{--page-title-display:none;}@media(max-width:767px){.elementor-7147 .elementor-element.elementor-element-253a140{--margin-top:1px;--margin-bottom:1px;--margin-left:1px;--margin-right:1px;}}/* Start custom CSS for html, class: .elementor-element-72b038b *//* Hero */
.noticias-hero {
  background: url("https://tvl.uy/wp-content/uploads/2025/09/vista-del-campo-de-futbol-con-cesped-scaled.jpg") repeat;
  background-size: cover;
  text-align: center;
  padding: 100px 20px;
  color: #fff;
}

.noticias-hero h1 {
  font-size: 47px;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.6); /* 👈 sombra negra suave */
}

/* Contenedor */
.noticias-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 60px 80px;
  background: #fff;
}

/* Card */
.noticia-card {
  background: #fafafa;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  padding: 10px;
  transition: transform .3s ease, box-shadow .3s ease;
}

@media (max-width: 768px) {
  .noticia-card {
    margin-left: -90px; /* 👈 mueve las cards a la izquierda solo en móvil */
  }
}

.noticia-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.noticia-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.noticia-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #222;
}

.noticia-card .date {
  display: block;
  font-size: 14px;
  margin: 8px 0;
  color: #777;
}

.noticia-card p {
  font-size: 15px;
  color: #444;
  line-height: 1.5;
}

.noticia-card .btn {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 8px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  margin-top: 12px;
  transition: background .3s ease;
}

.noticia-card .btn:hover {
  background: #444;
}/* End custom CSS */