/* =============================================
   SEO LINKS BLOCK — camposonline.com.uy
   Pegar antes del </style> o en tu archivo CSS
   ============================================= */

#seoContainer {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
  font-family: inherit; /* hereda la fuente del sitio */
  box-sizing: border-box;
}

/* Grid de columnas */
.ceoGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

@media (max-width: 992px) {
  .ceoGrid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .ceoGrid {
    grid-template-columns: 1fr;
  }
}

/* Bloque de cada categoría */
.linksCont {
  display: flex;
  flex-direction: column;
}

/* Título de cada columna */
.linksTitle {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #1a1a1a;
  border-bottom: 2px solid #2d6a2d; /* verde acorde al sitio */
  padding-bottom: 0.4rem;
  margin-bottom: 0.75rem;
  background: transparent !important;
}

/* Contenedor de links */
.linksContainer {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

/* Estado colapsado: muestra solo los primeros 5 */
.linksContainer.seeLess .linksBreadcrumbs:nth-child(n+6) {
  display: none;
}

/* Cada fila de link */
.linksBreadcrumbs {
  line-height: 1.4;
}

/* Los links */
.linkSeo {
  font-size: 0.8rem;
  color: #444;
  text-decoration: none;
  transition: color 0.15s ease;
}

.linkSeo:hover {
  color: #2d6a2d;
  text-decoration: underline;
}

/* Botón ver más / ver menos */
.seMoreContainer {
  margin-top: 0.5rem;
}

.seMoreContainer .verMas,
.seMoreContainer .verMenos {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: #2d6a2d;
  cursor: pointer;
  text-decoration: underline;
  user-select: none;
}

.seMoreContainer .verMas:hover,
.seMoreContainer .verMenos:hover {
  color: #1a4a1a;
}

/* Separador visual superior opcional (quitar si no hace falta) */
#seoContainer {
  border-top: 1px solid #e0e0e0;
}
