.section2-hero {
    justify-content: flex-end;
    align-items: center;
    background-color: var(--color-black);
    overflow: hidden;
}

.section2-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    z-index: 1;
    object-fit: cover;
    transform: translate(-50%, -50%);
}

.section2-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background-color: var(--color-black);
    opacity: 0.1;
    pointer-events: none;
}

.section2-bottom-content {
    position: absolute;
    left: 50%;
    bottom: clamp(48px, 7vw, 80px);
    transform: translateX(-50%);
    width: 100%;
    padding: 0 20px;
    z-index: 5;
    text-align: center;
    color: var(--color-white);
}

.section2-title {
    margin: 0;
    color: var(--color-white);
    font-size: clamp(0.6875rem, 1vw, 0.875rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: 0;
    text-transform: uppercase;
}

.section2-see-more {
    display: inline-block;
    margin: 0;
    color: var(--color-soft-white);
    font-size: clamp(0.625rem, 0.9vw, 0.75rem);
    font-weight: 200;
    line-height: 1.1;
    letter-spacing: 0;
    text-transform: uppercase;
    text-decoration: underline;
    text-underline-offset: clamp(2px, 0.25vw, 3px);
    text-decoration-thickness: 1px;
    transition: color 0.4s ease;
}

.section2-see-more:hover {
    color: var(--color-white);
}