/* --- Univers Femat Section --- */
.univers-section {
    padding: 120px 0 80px 0;
    /* Adjusted padding */
    text-align: center;
    background-color: white;
}

/* Video Wrapper */
.video-wrapper {
    max-width: 100%;
    margin: 0 auto 60px;
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.univers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.univers-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--color-text);

    transition: transform 0.3s;
}

.univers-card:hover {
    transform: translateY(-5px);
}

.univers-img-wrapper {
    position: relative;
    width: 100%;
    height: 300px;
    /* Adjust based on preference */
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: -20px;
    /* Overlap effect for button */
    z-index: 1;
}

.univers-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.univers-card:hover .univers-img {
    transform: scale(1.05);
}

.univers-label {
    background-color: var(--color-primary);
    /* Green Femat */
    color: white;
    padding: 10px 30px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    z-index: 2;
    border-radius: 2px;
}

.univers-card p {
    margin-top: 20px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1rem;
    color: var(--color-secondary);
    /* Dark Grey */
    max-width: 80%;
}