.events-section {
    padding: 6rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-video {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    margin-top: 3rem;
}

.section-video iframe {
    width: 100%;
    height: 100%;
}

.press-section {
    margin-top: 4rem;
    text-align: center;
}

.press-section h3 {
    font-size: 1.8rem;
    color: var(--perigord-black);
    margin-bottom: 2rem;
    font-weight: 700;
    background: linear-gradient(transparent 65%, rgba(254, 222, 123, 0.4) 65%);
    display: inline-block;
}

.press-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.press-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.5rem;
    background-color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.press-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.press-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
}

@media (max-width: 768px) {
    .events-section {
        padding: 2rem 1rem;
    }

    .press-section {
        margin-top: 2rem;
    }

    .press-links {
        flex-direction: column;
        align-items: center;
    }

    .press-link {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}
