/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jun 11 2026 | 14:16:36 */
/* =============================================
   Custom CSS+JS > Add CSS
   Single Centro Cultural - plantilla v3
   ============================================= */

/* ── Ocultar hasta que cargue ── */
body.single-centro-cultural #primary article {
  opacity: 0;
  transition: opacity 0.4s ease;
  min-height: 50vh;
}

body.single-centro-cultural #primary article::before {
  content: '';
  display: block;
  width: 36px;
  height: 36px;
  border: 3px solid #E8DBD0;
  border-top-color: #0097B2;
  border-radius: 50%;
  animation: cc-single-spin 0.8s linear infinite;
  margin: 25vh auto 0;
}

body.single-centro-cultural #primary article.cc-single-loaded {
  opacity: 1;
  min-height: auto;
}

body.single-centro-cultural #primary article.cc-single-loaded::before {
  display: none;
}

@keyframes cc-single-spin {
  to { transform: rotate(360deg); }
}

/* Ocultar header nativo y extras */
body.single-centro-cultural .entry-header,
body.single-centro-cultural .entry-meta,
body.single-centro-cultural .post-navigation,
body.single-centro-cultural .comments-area {
  display: none !important;
}

/* Full width sin padding del tema */
body.single-centro-cultural .ast-container {
  max-width: 100% !important;
  padding: 0 !important;
}

body.single-centro-cultural #primary {
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

body.single-centro-cultural .ast-article-single {
  padding: 0 !important;
  margin: 0 !important;
}

/* ── Fondo rosa full width ── */
.cc-sg-fondo {
  background: #EBDCD4;
  padding: 48px 32px 72px;
  box-sizing: border-box;
  font-family: 'Open Sauce One', 'Open Sans', sans-serif;
}

/* Contenido centrado con aire a los costados */
.cc-sg-inner {
  max-width: 1140px;
  margin: 0 auto;
}

/* ── Logo del centro centrado ── */
.cc-sg-logo {
  text-align: center;
  margin-bottom: 44px;
}

.cc-sg-logo img {
  max-height: 110px;
  max-width: 360px;
  width: auto;
  height: auto;
  display: inline-block;
  box-shadow: none !important;
}

.cc-sg-nombre {
  text-align: center;
  font-family: 'Lovelo', 'Open Sans', sans-serif;
  font-weight: 900;
  font-size: 26px;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0 0 44px;
}

/* ── Contenido 2 columnas ── */
.cc-sg-content {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: start;
}

/* ── Galeria izquierda ── */
.cc-sg-main-img {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 14px;
}

.cc-sg-main-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 1 / 1;
  box-shadow: none !important;
}

.cc-sg-thumbs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cc-sg-thumb {
  flex: 0 0 auto;
  width: 90px;
  height: 70px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.65;
  transition: opacity 0.25s ease, transform 0.25s ease;
  border: 2px solid transparent;
}

.cc-sg-thumb:hover {
  opacity: 0.9;
  transform: scale(1.05);
}

.cc-sg-thumb.cc-thumb-active {
  opacity: 1;
  border-color: #0097B2;
}

.cc-sg-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  box-shadow: none !important;
}

/* ── Columna derecha: info ── */

/* Titulos de seccion: Lovelo gris */
.cc-sg-titulo-seccion {
  font-family: 'Lovelo', 'Open Sans', sans-serif;
  font-weight: 900;
  font-size: 22px;
  color: #ABA8AC;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0 0 18px;
}

/* 1. Datos del espacio: texto gris claro */
.cc-sg-datos {
  margin-bottom: 32px;
}

.cc-sg-field {
  font-size: 15px;
  line-height: 1.7;
  color: #ABA8AC;
  margin-bottom: 4px;
}

.cc-sg-field strong {
  color: #ABA8AC;
  font-weight: 600;
}

.cc-sg-link {
  color: #0097B2 !important;
  text-decoration: none !important;
}

.cc-sg-link:hover {
  text-decoration: underline !important;
}

/* 2. Actividades y horario destacados */
.cc-sg-destacado {
  font-family: 'Lovelo', 'Open Sans', sans-serif;
  font-weight: 900;
  font-size: 15px;
  color: #1A1A1A;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.7;
  margin-bottom: 40px;
}

/* 3. Quienes somos: resena */
.cc-sg-resena {
  font-size: 15px;
  line-height: 1.8;
  color: #888888;
  text-align: justify;
}

.cc-sg-resena p {
  margin-bottom: 1em;
}

/* Quitar sombras de Astra en imagenes */
body.single-centro-cultural .cc-sg-fondo img,
body.single-centro-cultural .cc-cat-band img {
  box-shadow: none !important;
  -webkit-box-shadow: none !important;
}

/* ── Responsive ── */

/* Tablet */
@media (max-width: 1024px) {
  .cc-sg-content {
    gap: 32px;
  }
}

/* Tablet vertical / mobile grande */
@media (max-width: 768px) {
  .cc-sg-fondo {
    padding: 32px 24px 48px;
  }

  .cc-sg-content {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .cc-sg-logo {
    margin-bottom: 28px;
  }

  .cc-sg-logo img {
    max-height: 90px;
    max-width: 280px;
  }

  .cc-sg-thumb {
    width: 75px;
    height: 58px;
  }

  .cc-sg-titulo-seccion {
    font-size: 19px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .cc-sg-fondo {
    padding: 24px 16px 40px;
  }

  .cc-sg-thumb {
    width: 62px;
    height: 48px;
  }

  .cc-sg-resena {
    text-align: left;
  }
}