/* =========================================
   TUS ARCANOS: POST DARK LUXURY STYLES
   ========================================= */

/* 1. ELIMINAMOS EL FONDO BLANCO INFILTRADO */
body {
    background-color: #0a0a0a !important; /* Forzamos el negro profundo */
    color: #e0e0e0;
}

/* 2. EL CONTENEDOR DEL ARTÍCULO (Vidrio Ahumado) */
.post {
    background: rgba(20, 20, 20, 0.6) !important; 
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(212, 175, 55, 0.15) !important; 
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.5); 
}

/* 3. TÍTULO PRINCIPAL (H1) */
.post h1 {
    font-family: 'Cinzel', serif;
    font-size: 2.2rem;
    color: #d4af37 !important; /* Dorado Luxury */
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    padding-bottom: 20px;
    margin-bottom: 25px;
    line-height: 1.3;
}

/* 4. TEXTO DEL ARTÍCULO */
.post-contenido {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #e0e0e0 !important; /* Texto claro para lectura en oscuro */
}

/* Subtítulos dentro del texto */
.post-contenido h2, 
.post-contenido h3 {
    color: #d4af37 !important;
    font-family: 'Cinzel', serif;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

/* Fecha y categorías */
.post .text-muted {
    color: #a0a0a0 !important; /* Gris claro, no oscuro */
}

/* 5. IMÁGENES Y GALERÍA DENTRO DEL POST */
img {
    max-width: 100%;
    border-radius: 8px; /* Toque elegante para las imágenes del post */
}

a[data-lightbox] img {
    cursor: zoom-in;
    transition: transform 0.2s ease;
}

a[data-lightbox] img:hover {
    transform: scale(1.03);
}

/* Cuadrículas de la Galería inferior (Ajuste Luxury) */
.galeria-img-wrapper {
    position: relative;
    width: 100%;
    padding-top: 100%; /* Mantiene el formato cuadrado */
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.2); /* Borde dorado sutil */
    box-shadow: 0 5px 15px rgba(0,0,0,0.5); /* Sombra oscura profunda */
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.galeria-img-wrapper:hover {
    transform: scale(1.03);
    border-color: rgba(212, 175, 55, 0.6); /* Brilla en dorado al pasar el mouse */
}

.galeria-img-wrapper img {
    position: absolute;
    top: 0; 
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}