/* ============================================
   7- CONTENT
============================================ */
.content {
    max-width: 900px;
    margin: 0 auto;
    padding: var(--spacing-xl) var(--spacing-sm);
    text-align: center;
}

.content h1 {
    font-size: var(--font-size-2xl);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
}

.content p {
    font-size: var(--font-size-base);
    margin-bottom: var(--spacing-sm);
    line-height: 1.8;
}

.content p:last-of-type {
    margin-bottom: var(--spacing-lg);
}

/* Selettore lingue */
.language-switcher {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 600;
    font-size: 1rem;
}

.language-switcher a {
    color: var(--color-text);
    text-decoration: none;
}

.language-switcher a:hover {
    color: var(--color-primary);
}

/* Desktop: visibile */
.desktop-only {
    display: flex;
}

/* Mobile: nascosto */
.mobile-only {
    display: none;
}

/* MOBILE */
@media (max-width: 768px) {

    /* nascondo quella desktop */
    .desktop-only {
        display: none;
    }

    /* mostro quella mobile */
    .mobile-only {
        display: block;
        padding: 1.3rem 0;
        text-align: center;
        border-bottom: 1px solid #ddd;
        margin-bottom: 0.8rem;
        font-size: 1.2rem;
    }

    /* hamburger e logo in linea */
    .header-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}
