/* ── Activity page ─────────────────────────────────────────────────────────── */

#actividad {
    padding: 0;
    min-height: 100vh;
}

.act_imagen {
    width: 100%;
    max-height: 60vh;
    object-fit: cover;
    display: block;
}

.act_contenido {
    padding: 8%;
}

.act_nombre {
    font-size: 3vw;
    text-transform: uppercase;
    color: var(--negro);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.act_fecha {
    font-size: 0.9vw;
    color: var(--azul-c);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 2.5rem;
}

.act_desc {
    font-size: 1.05vw;
    line-height: 1.8;
    max-width: 60ch;
    margin-bottom: 3rem;
}

.act_boton {
    display: inline-block;
    background-color: var(--acento);
    color: var(--blanco);
    padding: 1vh 2vw;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.85vw;
    letter-spacing: 0.06em;
    cursor: pointer;
}

.act_boton:hover {
    background-color: var(--negro);
    color: var(--blanco);
}

.act_error {
    padding: 8%;
    font-size: 1vw;
    color: var(--azul-c);
}

@media (max-width: 768px) {
    .act_nombre {
        font-size: 7vw;
    }

    .act_fecha {
        font-size: 3.5vw;
        margin-bottom: 1.5rem;
    }

    .act_desc {
        font-size: 4.2vw;
        max-width: 100%;
    }

    .act_boton {
        font-size: 3.5vw;
        padding: 1.5vh 6vw;
    }

    .act_error {
        font-size: 4vw;
    }
}
