.hero-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 40px;
/* 
    border-radius: 0px;
 */
    background: #000;
}

.hero-media {
    position: relative;
    aspect-ratio: 16 / 9;
    width: 100%;
}

.hero-media img,
.hero-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: end;
    padding: 40px;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.7),
        rgba(0,0,0,0.1)
    );
}

.hero-caption {
    color: white;
    max-width: 700px;
}

.hero-caption h2 {
    margin: 0 0 10px;
    font-size: clamp(1.8rem, 5vw, 4rem);
}

.hero-caption p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

.hero-link {
    color: white;
    text-decoration: none;
}

@media (max-width: 768px) {
    .hero-overlay {
        padding: 20px;
    }
}