h2 {
    margin-top: clamp(36px, 8vw, 100px);
    margin-bottom: clamp(20px, 3vw, 40px);
    padding-bottom: 10px;
    position: relative;
    display: flex;
    justify-content: center;
    font-size: clamp(1.1rem, 3vw, 1.6rem);
}

h2::after {
    content: "";
    background-color: #DB6161;
    position: absolute;
    width: 100px;
    height: 2px;
    bottom: 0;
    left: -10;
}

.video {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.resume {
    margin: clamp(20px, 4vw, 50px) auto;
    width: clamp(280px, 60%, 700px);
    font-size: clamp(0.85rem, 1.5vw, 1rem);
}

iframe {
    width: 100%;
    margin-bottom: clamp(40px, 8vw, 100px);
    margin-top: clamp(16px, 3vw, 30px);
    max-width: 800px; 
    height: 450px;
    border: solid transparent;
    border-radius: clamp(12px, 4vw, 50px);
    box-shadow: 0px 0px clamp(16px, 3vw, 40px) #DB6161;
}

/* ── MOBILE (≤ 480px) ── */
@media (max-width: 480px) {

    iframe {
    width: 100%;
    max-width: 450px;
    aspect-ratio: 16 / 9;
    height: auto;
    margin-bottom: 100px;
    margin-top: 30px;
    }

}