/* ==========================================================
   SESIONES
========================================================== */

.sesiones {
    position: relative;
    min-height: calc(100vh - 200px);
    padding: 150px 8% 120px;
    background:
        radial-gradient(circle at 85% 20%, rgba(155, 77, 202, 0.28), transparent 30%),
        #0b0710;
    color: #ffffff;
    overflow: hidden;
}

.sesiones-header {
    max-width: 1100px;
    margin: 0 auto;
}

.sesiones-header > p:first-child {
    color: #c98cff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.sesiones h1 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(55px, 8vw, 100px);
    font-weight: 400;
    line-height: 0.95;
    letter-spacing: 1px;
    text-shadow:
        0 0 5px #ffffff,
        0 0 15px rgba(201, 140, 255, 0.5);
}

.sesiones-description {
    max-width: 600px;
    margin-top: 30px;
    color: #a99eaf;
    font-size: 14px;
    line-height: 1.7;
}

.sesiones-grid {
    max-width: 1100px;
    margin: 70px auto 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.sesion-card {
    display: grid;
    grid-template-columns: 42% 58%;
    background: #110b19;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.sesion-card:hover {
    transform: translateY(-7px);
    border-color: rgba(201, 140, 255, 0.55);
    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.35),
        0 0 25px rgba(155, 77, 202, 0.15);
}

.sesion-image {
    min-height: 260px;
    overflow: hidden;
}

.sesion-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.sesion-card:hover .sesion-image img {
    transform: scale(1.05);
}

.sesion-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sesion-date {
    color: #c98cff;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
}

.sesion-content h2 {
    margin-top: 12px;
    font-family: 'DM Serif Display', serif;
    font-size: 32px;
    font-weight: 400;
}

.sesion-content > p:not(.sesion-date) {
    margin-top: 8px;
    color: #a99eaf;
    font-size: 12px;
}

.sesion-content .button {
    width: fit-content;
    margin-top: 25px;
}