.visually-hidden {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.logos-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 1rem;
}

.logos-label {
  font-weight: bold;
  margin-right: 10px;
  white-space: nowrap;
}

.logos-row {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
  justify-content: center; /* centra horizontalmente */
  flex: 1;
}

.logo-img {
  height: auto;
  max-height: 90px;
  object-fit: contain;
}

/* Responsivo para pantallas pequeñas */
@media (max-width: 768px) {
  .logos-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .logos-label {
    margin-bottom: 10px;
    margin-right: 0;
  }

  .logos-row {
    justify-content: center;
  }
}



.accesible-posts-gallery {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  padding: 20px 0;
}

.accesible-posts-gallery .gallery-item {
  border: 1px solid #ddd;
  padding: 10px;
  background-color: #fff;
  transition: transform 0.2s ease-in-out;
}

.accesible-posts-gallery .gallery-item:hover {
  transform: scale(1.02);
}

.accesible-posts-gallery .gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 4px;
}

.accesible-posts-gallery .gallery-item h3 {
  font-size: 1rem;
  margin-top: 10px;
  color: #222;
  text-align: left;
}

@media (max-width: 768px) {
  .accesible-posts-gallery {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  }
}

@media (max-width: 480px) {
  .accesible-posts-gallery {
    grid-template-columns: 1fr;
  }
}