.about.about-poster {
    padding: 80px 0;
}

.about.about-poster .title {
    display: none;
}

.poster-grid {
    display: grid;
    grid-template-columns: 1.1fr 1.4fr;
    grid-template-rows: auto auto;
    gap: 18px;
    align-items: stretch;
}

.poster-left {
    background:
        radial-gradient(circle at 30% 30%, rgba(94, 23, 235, 0.35), rgba(0, 0, 0, 0) 60%),
        linear-gradient(180deg, rgba(14, 15, 21, 1) 0%, rgba(0, 0, 0, 1) 100%);
    border-radius: 10px;
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
    position: relative;
    overflow: hidden;
}

.poster-left::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 10% 10%, rgba(94, 23, 235, 0.55), rgba(0, 0, 0, 0) 55%),
        radial-gradient(circle at 80% 20%, rgba(85, 0, 224, 0.35), rgba(0, 0, 0, 0) 60%);
    opacity: 0.8;
    pointer-events: none;
}

.poster-title {
    position: relative;
    background: var(--c-primary);
    color: var(--c-text);
    border-radius: 10px;
    padding: 26px 22px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 0.92;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.35);
    font-family: "Handlee", cursive;
}

.poster-title span {
    display: block;
    font-size: clamp(42px, 5vw, 64px);
}

.poster-media {
    border-radius: 10px;
    overflow: hidden;
    background: #000;
    min-height: 360px;
    position: relative;
}

.poster-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: contrast(1.05) saturate(1.05);
}

.poster-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 0.55) 100%);
}

.poster-quote{
    grid-column: 1 / -1;
    background: #000;
    border-radius: 10px;
    padding: 18px 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    font-family: "Permanent Marker", cursive;
}

.poster-quote::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 10px;
    background: var(--c-primary);
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    z-index: 2;
}

.poster-quote p{
    margin: 0;
    color: var(--c-text);
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 0.8px;
    font-size: clamp(18px, 2.2vw, 26px);
    text-shadow: 0 6px 18px rgba(0, 0, 0, 0.65);
    position: relative;
    z-index: 3;
}

.poster-quote p::selection{
    background: var(--c-primary);
    color: var(--c-text);
}

/* =========================
   Indigo wipe animation layer
   - no cambia el estado final (regresa a fondo negro)
   - se dispara con clase .animate
   - duración total: 2.5s
   ========================= */

.poster-quote::after{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, var(--c-primary) 0%, var(--c-tertiary) 100%);
    transform: translateX(-110%);
    z-index: 1;
    pointer-events: none;
    animation: indigo-wipe 1.5s ease-in-out both;
    animation-play-state: paused;
}

.poster-quote.animate::after{
    animation-play-state: running;
}

@keyframes indigo-wipe{
    0%{
        transform: translateX(0%);
    }
    /* 85%{
        transform: translateX(-110%);
    }
    95%{
        transform: translateX(-95%);
    } */
    100%{
        transform: translateX(-110%);
    }
}

.poster-bottom {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.poster-bottom-x {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 14px;
}

.poster-col {
    background: rgba(34, 34, 34, 0.85);
    border-radius: 10px;
    padding: 18px 18px;
    color: var(--c-text);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.poster-col-x {
    background: rgba(34, 34, 34, 0.85);
    border-radius: 10px;
    padding: 18px 18px;
    color: var(--c-text);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.poster-col h3 {
    margin: 0 0 8px 0;
    font-size: 18px;
    font-weight: 700;
    color: var(--c-text);
}

.poster-col p {
    margin: 0;
    color: rgba(254, 254, 255, 0.9);
    line-height: 1.55;
}

.poster-cta {
    display: inline-block;
    margin-top: 12px;
    background: var(--c-primary);
    color: var(--c-text);
    padding: 10px 14px;
    border-radius: 8px;
    font-weight: 600;
    border: 2px solid var(--c-primary);
    transition: all 0.25s ease;
}

.poster-cta:hover {
    background: transparent;
    color: var(--c-primary);
}

@media (max-width: 947px) {
    .poster-grid {
        grid-template-columns: 1fr;
    }

    .poster-left,
    .poster-media {
        min-height: 280px;
    }

    .poster-bottom {
        grid-template-columns: 1fr;
    }
}