/* =============================================
   CURADURÍA — Diseño Editorial Magazine
   ============================================= */

/* ---- HERO ---- */
.cura-hero {
    height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.cura-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
}

.cura-hero-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cura-overline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-pink);
    margin-bottom: 0.2rem;
}

.cura-hero-title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: clamp(3rem, 7vw, 5.5rem);
    line-height: 1.0;
    color: var(--text-dark);
}

.cura-hero-accent {
    color: var(--accent-pink);
    text-shadow:
        -2px -2px 0 var(--text-dark),
         2px -2px 0 var(--text-dark),
        -2px  2px 0 var(--text-dark),
         2px  2px 0 var(--text-dark),
         5px  5px 0 rgba(0, 0, 0, 0.08);
}

.cura-hero-sub {
    font-size: 1.15rem;
    line-height: 1.75;
    color: #3a3550;
    max-width: 540px;
}

.cura-hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 4rem;
}

/* Botón Leer más */
.cura-scroll-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    align-self: flex-start;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.95rem;
    color: white;
    background: var(--accent-pink);
    border: 3px solid #1E1B2E;
    border-radius: 50px;
    padding: 0.6rem 1.5rem;
    box-shadow: 4px 4px 0 #C0BDCF;
    text-decoration: none;
    transition: transform 0.15s, box-shadow 0.15s;
}

.cura-scroll-btn:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 #C0BDCF;
}

.cura-scroll-arrow {
    display: inline-flex;
    align-items: center;
}

@media (max-width: 900px) {
    .cura-hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    .cura-hero-sub { margin: 0 auto; }
    .cura-hero-visual { justify-content: center; }
}

/* ---- OLD hero (unused) ---- */
.curaduria-hero {
    padding: 100px 0 0;
    text-align: center;
}

.curaduria-hero .label-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-pink);
    color: white;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 20px;
    border-radius: 50px;
    margin-bottom: 2rem;
    border: 2.5px solid var(--text-dark);
    box-shadow: 3px 3px 0 #C0BDCF;
}

/* ---- ARTICLE BLOCK : layout editorial ---- */
.article-block {
    position: relative;
    max-width: 1200px;
    margin: 0 auto 7rem;
    display: grid;
    grid-template-columns: 440px 1fr;
    gap: 0 2rem;
    align-items: center;
}

/* El gran número decorativo de capítulo — YA NO SE USA */
.article-number {
    display: none;
}

/* Imagen de mascota en el bloque 1 */
.article-mascot {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
}

.mascota2-img {
    width: 78%;
    height: auto;
    object-fit: contain;
    display: block;
}

/* Línea vertical de color que conecta número con texto */
.article-body {
    border-left: 5px solid currentColor;
    padding-left: 2.5rem;
}

.article-body.line-pink { border-color: var(--accent-pink); }
.article-body.line-blue { border-color: var(--accent-blue); }

/* Bloque invertido: texto izquierda, imagen derecha */
.article-block-reverse {
    grid-template-columns: 1fr 520px;
}

.article-body.line-blue-right {
    border-left: none;
    border-right: 5px solid var(--accent-blue);
    padding-left: 0;
    padding-right: 2.5rem;
    text-align: left !important;
}

.article-body.line-blue-right h2,
.article-body.line-blue-right p,
.article-body.line-blue-right .article-category {
    text-align: left !important;
    direction: ltr;
}

.article-body .article-category {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.5;
    margin-bottom: 0.8rem;
}

.article-body h1,
.article-body h2 {
    font-family: var(--font-heading);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 1.8rem;
}

.article-body h1 { font-size: clamp(2.5rem, 4.5vw, 3.8rem); color: var(--text-dark); }
.article-body h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); color: var(--text-dark); }

.article-body p {
    font-size: 1.15rem;
    line-height: 1.85;
    color: #3a3550;
    margin-bottom: 1.2rem;
}

.article-body p:last-child { margin-bottom: 0; }

/* Párrafo de cita / highlight */
.article-body .pull-quote {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.35rem;
    line-height: 1.5;
    border-left: none;
    background: #9AD872;
    color: var(--text-dark);
    padding: 1.2rem 1.8rem;
    border-radius: var(--diy-radius-3);
    border: 2.5px solid var(--text-dark);
    box-shadow: 4px 4px 0 #C0BDCF;
    margin-top: 2rem;
}

/* Cintas más pequeñas dentro del cuadro amarillo */
.pull-quote .premium-tape {
    width: 70px;
    height: 22px;
}
.pull-quote .pt-tl-1 { top: -11px; left: -18px; }
.pull-quote .pt-tr-1 { top: -11px; right: -18px; }
.pull-quote .pt-bl-1 { bottom: -11px; left: -18px; }
.pull-quote .pt-br-1 { bottom: -11px; right: -18px; }

/* Separador decorativo entre los dos artículos */
.curaduria-divider {
    max-width: 1200px;
    margin: 0 auto 7rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.curaduria-divider::before,
.curaduria-divider::after {
    content: '';
    flex: 1;
    height: 3px;
    background: linear-gradient(to right, var(--accent-pink), var(--accent-blue));
    border-radius: 10px;
}

.curaduria-divider span {
    font-size: 2rem;
    color: var(--accent-mint);
    flex-shrink: 0;
}

/* Responsive mobile */
@media (max-width: 680px) {
    .article-block {
        grid-template-columns: 1fr;
        gap: 1rem 0;
    }
    .article-number {
        font-size: 5rem;
    }
    .article-body {
        border-left: none;
        border-top: 5px solid currentColor;
        padding-left: 0;
        padding-top: 1.5rem;
    }
}
