.background-operatore {
    position: relative;
    width: 100%;
    height: 60dvh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: var(--spacing-md) 0;
}

/* background blur */
.background-operatore::before {
    content: "";
    position: absolute;
    inset: -20%;
    background-image: var(--bg-url);
    background-size: cover;
    background-position: center center;
    filter: blur(20px);
    z-index: 0;
}

.background-operatore > * {
    position: relative;
    z-index: 1;
}

/* CARD */
.operatore-card {
    background: var(--background);
    border-radius: var(--radius-lg);
    padding: var(--spacing-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    max-height: 100%;
    max-width: min(90%, 420px);
}

/* FOTO */
.operatore-card img {
    max-height: 45dvh;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    border-radius: calc(var(--radius-lg) - 4px);
}

/* NOME */
.operatore-card h1 {
    margin-top: var(--spacing-sm);
    color: var(--text-primary);
    text-align: center;
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    line-height: 1.2;
}
