/* ============================================
   Pagina Parteneri — Partners Page Styles
   White background (light theme)
   ============================================ */

.page-parteneri {
    background: var(--color-white);
    color: var(--color-black);
    min-height: 550px;
}

.parteneri-section {
    min-height: 640px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 80px;
}
.parteneri-section__title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 3.5rem);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-black);
    text-align: center;
    margin-bottom: 60px;
}
.parteneri-section__content {
    text-align: center;
}
.partners-logos p {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.partners-logos img {
    max-height: 120px;
    width: auto;
    object-fit: contain;
    transition: opacity 0.3s ease;
}
.partners-logos a:hover img {
    opacity: 0.7;
}
