/* ── Ocultar elementos que el tema añade ── */
.single-snt_noche input[type="file"],
.single-snt_noche .wp-block-post-featured-image,
.single-snt_noche .post-thumbnail,
.single-snt_noche .featured-image,
.single-snt_noche .entry-title,
.single-snt_noche .wp-block-post-title,
.single-snt_noche .page-title,
.single-snt_noche .singular-entry-header,
.single-snt_noche .entry-header { display: none !important; }

.single-snt_noche .entry-content,
.single-snt_noche .post-content,
.single-snt_noche .wp-block-post-content,
.single-snt_noche .singular-content-wrap {
    padding: 0 !important;
    margin: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
}

/* ═══════════ HERO — solo texto ═══════════ */
.snt-hero {
    position: relative;
    padding: 48px 64px;
    width: 100%;
}

.snt-hero__bg,
.snt-hero__gradient,
.snt-hero__counter { display: none !important; }

.snt-hero__back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: rgba(255,255,255,.5);
    text-decoration: none;
    margin-bottom: 24px;
    transition: color .3s;
    font-family: "Alte Haas Grotesk", sans-serif;
}
.snt-hero__back:hover { color: #fff; }

.snt-hero__fecha {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: .35em;
    text-transform: uppercase;
    color: rgba(255,255,255,.4);
    margin-bottom: 12px;
    font-family: "Alte Haas Grotesk", sans-serif;
}

.snt-hero__titulo {
    font-size: clamp(40px, 6vw, 80px);
    font-weight: 600;
    font-family: "Alte Haas Grotesk", sans-serif;
    letter-spacing: .02em;
    color: #fff;
    line-height: 1;
    margin: 0 0 12px !important;
    font-family: "Alte Haas Grotesk", sans-serif;
}

.snt-hero__sub {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: rgba(255,255,255,.4);
    font-family: "Alte Haas Grotesk", sans-serif;
}

/* ═══════════ FOTOS ═══════════ */
.snt-section {
    padding: 40px 64px 80px;
}

.snt-section__label {
    font-size: 9px;
    font-weight: 400;
    letter-spacing: .45em;
    text-transform: uppercase;
    color: rgba(255,255,255,.3);
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
    font-family: "Alte Haas Grotesk", sans-serif;
}

.snt-section__label::before {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    background: rgba(255,255,255,.3);
    flex-shrink: 0;
}

.snt-fotos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
}

@media (max-width: 900px) { .snt-fotos { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .snt-fotos { grid-template-columns: 1fr; } }
@media (max-width: 768px) {
    .snt-hero    { padding: 32px 24px; }
    .snt-section { padding: 32px 24px 60px; }
}

.snt-foto {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
}

.snt-foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .55s cubic-bezier(.25,.46,.45,.94);
}

.snt-foto:hover img { transform: scale(1.06); }

.snt-empty {
    text-align: center;
    padding: 60px 20px;
    font-size: 11px;
    letter-spacing: .2em;
    color: rgba(255,255,255,.3);
    font-family: "Alte Haas Grotesk", sans-serif;
}

/* ═══════════ LIGHTBOX ═══════════ */
.snt-lb {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999999;
    background: rgba(0,0,0,.97);
    align-items: center;
    justify-content: center;
}
.snt-lb.is-open { display: flex; }

.snt-lb__img {
    max-width: 88vw;
    max-height: 88vh;
    object-fit: contain;
    user-select: none;
}

.snt-lb__btn {
    position: absolute;
    background: none;
    border: none;
    color: rgba(255,255,255,.4);
    cursor: pointer;
    transition: color .25s;
    padding: 16px;
    line-height: 1;
}
.snt-lb__btn:hover { color: #fff; }

.snt-lb__close  { top: 20px;   right: 20px;  font-size: 22px; }
.snt-lb__prev   { left: 12px;  top: 50%; transform: translateY(-50%); font-size: 42px; }
.snt-lb__next   { right: 12px; top: 50%; transform: translateY(-50%); font-size: 42px; }

.snt-lb__counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 9px;
    letter-spacing: .3em;
    color: rgba(255,255,255,.3);
    font-family: "Alte Haas Grotesk", sans-serif;
}

/* ── Descargar ── */

.snt-lb__descargar {
    position: absolute;
    bottom: 46px;
    left: 50%;
    transform: translateX(-50%);
    padding: 11px 26px;
    border: 1px solid rgba(255,255,255,.3);
    border-radius: 4px;
    color: rgba(255,255,255,.75);
    font-family: "Alte Haas Grotesk", sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    transition: border-color .2s, color .2s, background .2s;
}

.snt-lb__descargar:hover {
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.7);
    color: #fff;
}

@media ( max-width: 600px ) {
    .snt-lb__descargar { bottom: 44px; padding: 10px 20px; font-size: 9px; }
}
