/* ===== PÁGINA TALLERES - ATMAIA CUSTOM ===== */

/* Contenedor principal de seguridad */
.atmaia-workshops-wrapper .breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.95rem;
  color: var(--muted);
}

.atmaia-workshops-wrapper .breadcrumb .crumb {
  text-decoration: none;
}

.atmaia-workshops-wrapper .breadcrumb .crumb:hover {
  text-decoration: underline;
}

.atmaia-workshops-wrapper .breadcrumb .current {
  color: var(--text);
}

/* Grid de talleres */
.atmaia-workshops-wrapper .workshops-grid {
  display: grid;
  gap: 22px;
}

/* Tarjeta de taller */
.atmaia-workshops-wrapper .workshop-card {
  background: var(--bg-contrast);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 0;
  transition: transform 0.25s ease, box-shadow 0.3s ease;
}

.atmaia-workshops-wrapper .workshop-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.atmaia-workshops-wrapper .workshop-card .cover {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.atmaia-workshops-wrapper .workshop-card .cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.atmaia-workshops-wrapper .workshop-card .badge {
  position: absolute;
  left: 12px;
  bottom: 12px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.9rem;
}

.atmaia-workshops-wrapper .workshop-card .content {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.atmaia-workshops-wrapper .workshop-card .title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  margin: 0.2rem 0;
}

.atmaia-workshops-wrapper .workshop-card .excerpt {
  color: var(--text);
  margin: 2px 0 0;
}

.atmaia-workshops-wrapper .workshop-card .meta {
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--muted);
  display: grid;
  gap: 4px;
}

.atmaia-workshops-wrapper .workshop-card .meta strong {
  color: var(--text);
  font-weight: 600;
}

.atmaia-workshops-wrapper .accent {
  color: var(--accent);
  font-weight: 600;
}

/* Responsive */
@media (max-width: 920px) {
  .atmaia-workshops-wrapper .workshop-card {
    grid-template-columns: 1fr;
  }
}

/* --- Micro-refactor: elimina inline styles (listado) --- */
.atmaia-workshops-wrapper .page-title {
  margin-top: 8px;
}

.atmaia-workshops-wrapper .page-intro {
  max-width: 68ch;
}

.atmaia-workshops-wrapper .cta-row-spaced {
  margin-top: 12px;
}

/* =========================================================
   OVERRIDE CTA – Mantener todo alineado a la izquierda
   (WhatsApp · Email · Regresar al inicio)
   ========================================================= */

.atmaia-workshops-wrapper .cta-row-profes {
  justify-content: flex-start !important;
}

.atmaia-workshops-wrapper .cta-row-profes .logo-return {
  margin-left: 0 !important;
}
