/* assets/css/pages/gallery.css */

/* contenedor base ya existe en header.css, lo reutilizamos */
.container { width: min(1200px, 92%); margin-inline: auto; }

/* Breadcrumb */
.crumbs {
  display: flex; align-items: center; gap: 8px;
  color: #555; font-size: 13px; margin: 18px auto 14px;
}
.crumbs a { color: #2b2b2b; text-decoration: none; }
.crumbs a:hover { text-decoration: underline; }
.crumbs .current { color: #777; }

/* HERO oscuro con título centrado */
.gallery-hero {
  background: #121212; color: #eee;
  padding: 28px 24px; text-align: center; border-radius: 4px;
  margin-bottom: 30px;
}
.gallery-hero h1 {
  margin: 0 0 8px; font-family: "Oswald", Arial, sans-serif;
  font-size: clamp(32px, 5vw, 56px); letter-spacing: .02em;
}
.gallery-hero p {
  margin: 0; max-width: 780px; margin-inline: auto; line-height: 1.6; color: #cfcfcf;
}

/* GRID de cards */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  margin: 10px auto 80px;
}

/* Card */
.g-card {
  background: #fff; border: 1px solid #e6e6e6; border-radius: 4px;
  overflow: hidden; display: flex; flex-direction: column;
  box-shadow: 0 1px 0 rgba(0,0,0,.03);
}
.g-card__media {
  background: #fafafa; min-height: 240px; display: grid; place-items: center;
  border-bottom: 1px solid #ececec;
}
.g-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.g-card__media--placeholder { background: #f3f3f3; }

.stack-ico {
  width: 54px; height: 54px; position: relative; display: inline-block;
}
.stack-ico::before, .stack-ico::after {
  content: ""; position: absolute; inset: 0; border: 2px solid #bcbcbc; border-radius: 6px;
}
.stack-ico::after { inset: 8px 6px 0 6px; }

/* Body */
.g-card__body { padding: 18px 18px 20px; }
.g-card__body h3 {
  margin: 6px 0 12px; font-size: 20px; font-weight: 700; font-family: "Oswald", Arial, sans-serif;
}
.g-card__body p {
  color: #555; line-height: 1.6; margin: 0 0 16px;
}

/* Botón */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 16px; border-radius: 4px; text-decoration: none; font-weight: 700;
  border: 1px solid #111;
}
.btn--dark { background: #111; color: #fff; }
.btn--dark:hover { background: #000; }
.btn__chev {
  width: 9px; height: 9px; border-left: 2px solid currentColor; border-bottom: 2px solid currentColor;
  transform: rotate(225deg); margin-top: 1px;
}

/* Responsive */
@media (max-width: 1100px) { .gallery-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 680px)  { .gallery-grid { grid-template-columns: 1fr; } }

/* Fondo blanco solo para esta página */
body {
  background: #fff !important;
  color: #111; /* asegura contraste en textos */
}
