﻿/* ========================================
   COMPONENTS
   ======================================== */

/* ========================================
   COMPONENTI RIUTILIZZABILI - INDICE

   Questo file contiene tutti i componenti CSS del progetto,
   organizzati in sezioni per facilitare manutenzione e riuso.

   ORDINE NEL FILE (per riferimento):

   === UI BASE ===
   - Buttons (.btn, .btn--primary, .btn--outline) [Riga ~153]

   === CONTENUTO ===
   - Press Kit Item (.press-kit-item) [Riga ~1354]
   - Page Header (.page-header) + Page Title (.page-title) [Riga ~1422]
   - Filters Section (.filters-section) [Riga ~1456]
   - Report Card (.report-card) [Riga ~1693]
   - Document Links (.doc-link) [Riga ~1863]
   - Sticky Section Nav (.sticky-section-nav) [Riga ~2134]
   - Content Block (.content-block) [Riga ~2218]
   - Link Underlined (.link--underlined) [Riga ~2399]
   - Alert / Message Banner (.alert) [Riga ~2700]
   - Badge / Tag (.badge) [Riga ~2760]
   - Simple Card (.simple-card) [Riga ~2820]

   === NAVIGAZIONE ===
   - Pagination (.pagination) [Riga ~3455]
   - Data Table (.data-table) [Riga ~3750]
   - Breadcrumb (.breadcrumb) [Riga ~2100]

   === FORM & AUTH ===
   - Form (.form, .form-container, .form-group, ecc.) [Riga ~3794]
   - Welcome Card (.welcome-card) [Riga ~3948]

   === COMPONENTI SPECIFICI (NON RIUTILIZZABILI) ===
   - Header & Mega Menu [Riga ~48]
   - Footer [Riga ~516]
   - Sezioni Homepage specifiche
   - Login Page [Riga ~4063]
   - Person Detail Page
   - Search Results Page
   - Operations Grid/Cards (specifici per operazioni-recenti.html)
   - Event Card, Board Member Card (specifici per pagine dedicate)
   - Newsletter Banner, Search Form (componenti complessi, vedere pagine specifiche)
   ======================================== */

/* ========================================
   COMPONENTI SPECIFICI - HEADER & NAVIGATION
   ======================================== */

/* Header */
.site-header {
    background-color: var(--color-bg-primary);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--color-border-primary);
    height: 62px;
    min-height: 62px;
    max-height: 62px;
    box-sizing: border-box;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    height: 100%;
    box-sizing: border-box;
}

.logo img {
    height: 30px;
    transition: height 0.3s ease;
}

.logo-desktop {
    display: block;
}

.logo-mobile {
    display: none;
}

/* Primary links */
.main-nav .primary-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav a {
    text-decoration: none;
    color: var(--color-brand);
    font-weight: 600;
    transition: color 0.3s;
    font-size: .875rem;
}

.main-nav a:hover,
.main-nav a:focus {
    color: var(--color-link-hover);
    text-decoration: underline;
}

.main-nav a.link--secondary {
    color: var(--color-accent);
}

.main-nav a.link--secondary:hover,
.main-nav a.link--secondary:focus {
    color: var(--color-link-hover);
    text-decoration: underline;
}

/* Header right */
.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.search-icon {
    width: 20px;
    height: 20px;
}

.search-icon:hover {
    cursor: pointer;
}

.language-selector {
    border: none;
    border-radius: 3px;
    background-color: var(--color-bg-primary);
    cursor: pointer;
    font-size: 0.875rem;
    color: var(--color-brand);
    padding: 0.125rem 1.875rem 0.125rem 0.5rem;
}

.language-selector:hover {
    background-color: transparent;
}

.language-selector:focus {
    outline: none;
}

.language-selector:focus-visible {
    outline: 3px solid var(--color-focus-ring);
    outline-offset: 2px;
    border-radius: 3px;
}

/* ========================================
   [COMPONENTE RIUTILIZZABILE] BUTTONS
   ========================================

   Bottoni standard per call-to-action, form submit, navigazione.

   CLASSI BASE:
   - .btn                  Stile base del bottone

   VARIANTI:
   - .btn--primary         Bottone blu pieno (azione primaria)
   - .btn--outline         Bottone contornato (azione secondaria)

   STATI:
   - :hover                Background/border più scuro
   - :focus                Come hover
   - :focus-visible        Outline per accessibilità tastiera

   ESEMPIO HTML:
   <button class="btn btn--primary">INVIA</button>
   <a href="#" class="btn btn--outline">SCOPRI DI PIÙ</a>

   NOTE ACCESSIBILITÀ:
   - Focus outline visibile per navigazione tastiera
   - Contrasto colori WCAG 2.1 AA compliant
   - Funziona sia con <button> che <a>
   ======================================== */

/* Button Base */
.btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .5rem;
    padding: 12px 20px;
    border-radius: 7px;
    text-decoration: none;
    font-weight: 700;
    /* 500; */
    font-size: 15px;
    /* 16px; */
    transition: all 0.3s ease-in-out;
    border: none;
    cursor: pointer;
    text-align: center;
    width: fit-content;
    text-transform: uppercase;
    box-sizing: border-box;
    line-height: 1.5;
    font-family: inherit;
    margin: 0;
    vertical-align: middle;
}

button.btn {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
    padding: 6px 30px;
    line-height: 1.5;
    font-family: inherit;
    font-weight: 700;
    /* 500; */
    font-size: 15px;
    /* 16px; */
    box-sizing: border-box;
}

/* Button Primary - Azione primaria (blu pieno) */
.btn--primary {
    background-color: var(--color-brand);
    color: var(--color-text-inverse);
}

.btn--primary:hover,
.btn--primary:focus {
    background-color: var(--color-brand-dark);
    color: var(--color-text-inverse);
}

.btn--primary:focus-visible {
    outline: 3px solid var(--color-focus-ring);
    outline-offset: 2px;
}

/* Button Outline - Azione secondaria (contorno blu) */
.btn--outline {
    background-color: #fff;
    color: var(--color-brand);
    padding: 6px 30px;
    font-weight: 700;
    /* 500; */
    font-size: 15px;
    /* 16px; */
    text-transform: uppercase;
    border: 2px solid var(--color-brand);
}

.btn--outline:hover,
.btn--outline:focus {
    background-color: var(--color-brand-light);
    color: var(--color-brand);
    border-color: var(--color-brand);
}

.btn--outline:focus-visible {
    outline: 3px solid var(--color-focus-ring-light);
    outline-offset: 2px;
}

/* Hamburger Menu */
.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    width: 30px;
    height: 24px;
    padding: 0;
    z-index: 1001;
}

.hamburger {
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--color-brand);
    border-radius: 2px;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--color-brand);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

.menu-toggle.open .hamburger {
    background-color: transparent;
}

.menu-toggle.open .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.menu-toggle.open .hamburger::after {
    bottom: 0;
    transform: rotate(-45deg);
}

/* ========================================
   MEGA MENU
   ======================================== */

/* Mega menu full-screen */
.mega-menu {
    position: fixed;
    top: 62px;
    left: 0;
    width: 100%;
    height: calc(100% - 64px);
    background-color: #f8f8f8;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    z-index: 999;
    padding: 2rem;
}

.mega-menu.open {
    transform: translateX(0);
}

.mega-menu-content {
    display: flex;
    flex-direction: column;
    max-width: 1200px;
    margin: 0 auto;
}

.mega-section {
    list-style: none;
    padding: 0;
    margin: 0;
    min-width: 200px;
}

.submenu {
    margin-left: 1rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    list-style: none;
    padding: 0;
}

.submenu.open {
    max-height: 500px;
}

/* Accordion submenu */
.submenu a {
    display: block;
    text-decoration: none;
    color: #1a1a1a;
    padding: 0.5rem 0;
    transition: color 0.3s;
}

.submenu a:hover {
    color: var(--color-link-hover);
}

/* Nuova struttura Mega Menu verticale */
.mega-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.mega-menu-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
}

.mega-menu-item:last-child {
    border-bottom: none;
}

.mega-menu-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    text-decoration: none;
    color: #1a1a1a;
    font-size: 1rem;
    transition: color 0.3s ease;
    width: 100%;
}

.mega-menu-link:hover {
    color: var(--color-link-hover);
}

.mega-menu-link--highlight {
    color: var(--color-link-hover);
}

.mega-menu-link--highlight:hover {
    color: var(--color-brand-dark);
}

/* Freccia per elementi con sottocategorie */
.mega-menu-item.has-submenu .mega-menu-link::after {
    content: '→';
    margin-left: auto;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.mega-menu-item.has-submenu.open .mega-menu-link::after {
    transform: rotate(90deg);
}

/* Sottocategorie */
.mega-submenu {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-left: 1.5rem;
}

.mega-menu-item.open .mega-submenu {
    max-height: 500px;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.mega-submenu li {
    margin-bottom: 0.5rem;
}

.mega-submenu a {
    display: block;
    padding: 0.5rem 0;
    text-decoration: none;
    color: #1a1a1a;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.mega-submenu a:hover {
    color: var(--color-link-hover);
}

/* Mega menu actions (language selector e search icon) */
.mega-menu-actions {
    display: none;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.mega-menu-actions .language-selector {
    border-radius: 3px;
    background-color: transparent;
}

.mega-menu-actions .search-icon {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

/* Header & Mega Menu - Responsive */
@media (max-width: 1200px) {
    .logo img {
        height: 25px;
    }

    /* Mantieni altezza fissa header anche con logo più piccolo */
    .site-header {
        height: 62px;
        min-height: 62px;
        max-height: 62px;
    }

    /* Nascondi language selector e search icon nell'header */
    .header-right .language-selector,
    .header-right .search-icon-wrapper {
        display: none;
    }

    /* Mostra language selector e search icon nel mega menu */
    .mega-menu-actions {
        display: flex;
    }
}

@media (max-width: 1024px) {
    .logo-desktop {
        display: none;
    }

    .logo-mobile {
        display: block;
    }

    .logo img {
        height: 30px;
    }

    /* Mantieni altezza fissa header */
    .site-header {
        height: 62px;
        min-height: 62px;
        max-height: 62px;
    }

    .main-nav .primary-links {
        display: none;
    }

    .mega-menu-content {
        flex-direction: column;
        gap: 1rem;
    }

    .mega-menu.open {
        top: 62px;
    }
}

/* ========================================
   FOOTER
   ======================================== */

/* Footer */
.site-footer {
    background-color: var(--color-brand);
    /* var(--color-bg-footer);*/
    color: #fff;
    /*var(--color-text-inverse);*/
    padding: 3rem 0 1.5rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

/* Footer Left */
.footer-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    margin-bottom: 0.5rem;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-group-text {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.5;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-address,
.footer-contact-info,
.footer-member {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.5;
}

/* Footer Right */
.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2rem;
}

.footer-social {
    margin-bottom: 0.5rem;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s ease;
}

.footer-social-link:hover,
.footer-social-link:focus {
    background-color: rgba(255, 255, 255, 0.2);
    outline: 2px solid rgba(255, 255, 255, 0.3);
    outline-offset: 2px;
}

.footer-nav {
    display: flex;
    flex-direction: column;
}

.footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-end;
}

.footer-nav-list a {
    color: var(--color-text-inverse);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-nav-list a:hover,
.footer-nav-list a:focus {
    color: rgba(255, 255, 255, 0.7);
    outline: none;
}

/* Footer Bottom */
.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.footer-copyright {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Footer - Responsive */
@media (max-width: 1024px) {
    .footer-content {
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 2.5rem 0 1.25rem 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-right {
        align-items: flex-start;
    }

    .footer-nav-list {
        align-items: flex-start;
    }

    .footer-logo-img {
        height: 35px;
    }
}

@media (max-width: 480px) {
    .site-footer {
        padding: 2rem 0 1rem 0;
    }

    .footer-content {
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .footer-left {
        gap: 1.25rem;
    }

    .footer-group-text,
    .footer-address,
    .footer-contact-info,
    .footer-member {
        font-size: 0.8125rem;
    }

    .footer-nav-list {
        gap: 0.625rem;
    }

    .footer-nav-list a {
        font-size: 0.875rem;
    }

    .footer-bottom {
        padding-top: 1.5rem;
    }

    .footer-copyright {
        font-size: 0.8125rem;
    }
}

/* ========================================
   HOMEPAGE SECTIONS
   ======================================== */

/* Services Section */
.services {
    padding: 4rem 0 5rem;
    /*  4rem 0; */
    background-color: var(--color-bg-primary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    align-items: start;
}

.service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.service-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    object-position: center;
    margin-bottom: 1rem;
}

.services-grid .service-card:nth-child(2) img {
    transform: scale3d(1.1, 1.1, 1);
}

.service-title {
    font-size: 1.375rem;
    /* 1.25rem; */
    font-weight: 700;
    color: var(--color-brand);
    /* var(--color-text-primary); */
    margin: 0;
    line-height: 1.3;
}

.service-description {
    font-size: 1rem;
    color: var(--color-text-primary);
    margin: 0;
    line-height: 1.5;
}

/* Services Section - Responsive */
@media (max-width: 768px) {
    .services {
        padding: 3rem 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .service-card {
        gap: 1.25rem;
    }

    .service-icon {
        width: 70px;
        height: 70px;
    }

    .service-title {
        font-size: 1.125rem;
    }

    .service-description {
        font-size: 0.9375rem;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .services-grid {
        gap: 2rem;
    }
}

/* About Section */
.about-section {
    padding: 0 0 5rem;
    /* 5rem 0; */
    background-color: var(--color-bg-primary);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 16px;
}

.about-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    aspect-ratio: 2.5 / 3;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.about-block {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-title {
    font-size: 1.375rem;
    /* 1.5rem; */
    font-weight: 700;
    color: var(--color-brand);
    margin: 0;
    /* text-transform: uppercase; */
    /* letter-spacing: 0.5px; */
    line-height: 1.2;
}

.about-text {
    font-size: 1.125rem;
    /* 1rem; */
    line-height: 1.44;
    /* 1.7; */
    color: var(--color-text-primary);
    margin: 0;
}

.about-block .btn {
    align-self: flex-start;
    margin-top: 0.5rem;
}

/* About Section - Responsive */
@media (max-width: 1024px) {
    .about-section {
        padding: 4rem 0;
    }

    .about-grid {
        gap: 3rem;
    }

    .about-content {
        gap: 2.5rem;
    }

    .about-title {
        font-size: 1.375rem;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 3rem 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-image {
        order: -1;
        max-width: 100%;
    }

    .about-image img {
        aspect-ratio: 4 / 3;
        height: auto;
        min-height: 300px;
    }

    .about-content {
        gap: 4rem;
    }

    .about-block {
        gap: 1.25rem;
    }

    .about-title {
        font-size: 1.25rem;
    }

    .about-text {
        font-size: 0.9375rem;
        line-height: 1.6;
    }

    .about-block .btn {
        text-align: center;
        justify-self: stretch;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 2.5rem 0;
    }

    .about-grid {
        gap: 2rem;
    }

    .about-image img {
        min-height: 250px;
        border-radius: 12px;
    }

    .about-content {
        gap: 1.75rem;
    }

    .about-block {
        gap: 1rem;
    }

    .about-title {
        font-size: 1.125rem;
        letter-spacing: 0.3px;
    }

    .about-text {
        font-size: 0.875rem;
    }
}

/* Results Section */
.results-section {
    padding: 5rem 0;
    background-color: var(--color-bg-primary);
}

.results-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.results-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.results-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-brand);
    margin: 0;
    line-height: 1.2;
}

.results-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text-primary);
    margin: 0;
}

.results-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

@media (max-width: 1024px) {
    .stat-item {
        text-align: center;
    }
}

.stat-number {
    font-size: 2.5rem;
    /* 3.5rem; */
    font-weight: 700;
    color: var(--color-brand);
    line-height: 1;
    /*font-family: 'Montserrat', sans-serif;*/
}

.stat-number::before {
    content: '>';
    margin-right: 0.1em;
}

.stat-description {
    font-size: 0.9375rem;
    line-height: 1.5;
    color: var(--color-text-primary);
    /* var(--color-text-secondary); */
    margin: 0;
}

/* Results Section - Responsive */
@media (max-width: 1024px) {
    .results-section {
        padding: 4rem 0;
    }

    .results-grid {
        gap: 3rem;
    }

    .results-title {
        font-size: 2rem;
    }

    .results-stats {
        gap: 2.5rem;
    }

    .stat-number {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .results-section {
        padding: 3rem 0;
    }

    .results-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .results-content {
        gap: 1.25rem;
    }

    .results-title {
        font-size: 1.75rem;
    }

    .results-text {
        font-size: 0.9375rem;
    }

    .results-stats {
        gap: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-description {
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .results-section {
        padding: 2.5rem 0;
    }

    .results-grid {
        gap: 2rem;
    }

    .results-stats {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    .stat-number {
        font-size: 3.5rem;
    }
}

/* Events Section */
.events-section {
    padding: 4rem 0;
    background-color: var(--color-bg-primary);
    overflow: visible;
}

.events-section .container {
    overflow: visible;
    padding-left: calc(1rem + 20px);
    /* Compensa lo sforamento di 20px */
}

.events-wrapper {
    position: relative;
    display: flex;
    align-items: stretch;
    min-height: 400px;
}

.events-image {
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}


.events-image img {
    width: 100%;
    max-height: 700px;
    object-fit: cover;
    display: block;
}

@media (min-width: 48rem) {
    .events-wrapper {
        justify-content: flex-end;
    }

    .events-image {
        max-width: min(85%, 75rem);
    }
}

.events-content {
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 480px;
    /* 600px; */
    max-width: calc(50% - 10px);
    padding: 3rem 2.5rem;
    background-color: var(--color-brand);
    border-radius: 12px;
    color: var(--color-text-inverse);
    z-index: 2;
}

.events-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-text-inverse);
    margin: 0 0 2rem 0;
    /* text-transform: uppercase; */
    letter-spacing: 1px;
}

.events-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.event-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.event-item:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}

.event-date {
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.event-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text-inverse);
    line-height: 1.4;
}

.event-location {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.events-content .btn {
    margin-top: 1rem;
}

/* Events Section - Responsive */
@media (max-width: 1024px) {
    .events-section .container {
        padding-left: calc(1rem + 20px);
    }

    .events-wrapper {
        min-height: 450px;
    }

    .events-content {
        left: -20px;
        width: 450px;
        padding: 2.5rem 2rem;
    }

    .events-title {
        font-size: 2rem;
    }
}

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

    .events-section .container {
        padding-left: 1rem;
        /* Reset padding su mobile */
    }

    .events-wrapper {
        flex-direction: column;
        min-height: auto;
    }

    .events-image {
        display: none;
    }

    .events-content {
        position: relative;
        left: 0;
        top: 0;
        transform: none;
        width: 100%;
        max-width: 100%;
        margin-top: -60px;
        padding: 2rem 1.5rem;
        display: block;
    }

    .events-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .events-list {
        gap: 1.25rem;
        margin-bottom: 2rem;
    }

    .event-item {
        padding-bottom: 1.25rem;
        gap: 0.4rem;
    }

    .event-name {
        font-size: 1rem;
    }

    .event-location {
        font-size: 0.9375rem;
    }
}

@media (max-width: 480px) {
    .events-section {
        padding: 2.5rem 0;
    }

    .events-image {
        min-height: 350px;
    }

    .events-content {
        margin-top: -40px;
        padding: 1.75rem 1.25rem;
    }

    .events-title {
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }

    .events-list {
        gap: 1rem;
        margin-bottom: 1.75rem;
    }

    .event-item {
        padding-bottom: 1rem;
    }

    .event-date {
        font-size: 0.8125rem;
    }

    .event-name {
        font-size: 0.9375rem;
    }

    .event-location {
        font-size: 0.875rem;
    }
}

/* Download Section */
.download-section {
    padding: 4rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.pdf-icon {
    width: 1.5rem;
    height: 1.5rem;
}

.download-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-brand);
    margin: 0;
    max-width: 720px;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.mini-title {
    font-size: 1.5rem;
    font-weight: 700;
    /* 600; */
    color: var(--color-brand);
    /* var(--color-accent); */
    margin: 0;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .mini-title {
        font-size: 1rem;
    }
}

/* ========================================
   [COMPONENTE RIUTILIZZABILE] PRESS KIT ITEM
   ========================================

   Card cliccabile per download di kit/pacchetti (Press Kit, Logo, Profili).
   Stile distintivo con bordo blu e hover background celeste.

   CLASSI BASE:
   - .press-kit-item         Container card (link o div)
   - .press-kit-item__text   Testo descrittivo
   - .press-kit-item__icon   Icona download/folder

   STATI:
   - :hover                  Background celeste chiaro

   ESEMPIO HTML:
   <a href="press-kit.zip" class="press-kit-item">
	 <span class="press-kit-item__text">Profilo Società</span>
	 <img src="download.svg" alt="" class="press-kit-item__icon" aria-hidden="true">
   </a>

   NOTE UTILIZZO:
   - Bordo blu spesso (2px) per distinguere da altri link
   - Border-radius arrotondato (16px)
   - Hover celeste per feedback visivo
   - Funziona come <a> link diretto a file

   NOTE ACCESSIBILITÀ:
   - Usare <a> come wrapper per link semantico
   - aria-hidden="true" su icona
   - Testo descrittivo nel link
   ======================================== */

/* Press Kit Item - Card download */
.press-kit-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem;
    background-color: #fff;
    margin-bottom: 1.5rem;
    text-decoration: none;
    transition: background-color 0.3s ease;
    border-radius: 16px;
    border: 2px solid var(--color-brand);
}

.press-kit-item:hover {
    background-color: var(--color-brand-light);
}

.press-kit-item__text {
    font-size: 1.125rem;
    color: var(--color-brand);
    font-weight: 400;
}

.press-kit-item__icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    color: var(--color-brand);
}

/* ========================================
   COMPONENTI ONE-COLUMN PAGE (RIUTILIZZABILI)
   ======================================== */

/* ========================================
   [COMPONENTE RIUTILIZZABILE] PAGE HEADER
   ========================================

   Header per pagine one-column (es: Operazioni Recenti, Free Reports).
   Contiene il titolo principale della pagina.

   CLASSI BASE:
   - .page-header    Container header (padding verticale)
   - .page-title     Titolo H1 (blu, uppercase)

   ESEMPIO HTML:
   <section class="page-header">
	 <div class="container">
	   <h1 class="page-title">Operazioni Recenti</h1>
	 </div>
   </section>

   NOTE UTILIZZO:
   - Usare sempre dentro .container per max-width consistente
   - Page-title sempre H1 per SEO
   - Uppercase automatico per brand consistency
   ======================================== */

.page-header {
    padding: 3rem 0 2rem;
}

.page-title {
    color: var(--color-brand);
    margin: 0;
    text-transform: uppercase;
}

/* ========================================
   [COMPONENTE RIUTILIZZABILE] FILTERS SECTION
   ========================================

   Sezione filtri per liste (Operazioni, Report, Risultati).
   Include label, controlli (select/date) e bottoni azione.

   CLASSI BASE:
   - .filters-section     Container section
   - .filters-wrapper     Box con background celeste
   - .filters-label       Label "Filtri:"
   - .filters-controls    Container select/input
   - .filters-actions     Container bottoni RESET/APPLICA

   ESEMPIO HTML:
   <section class="filters-section">
	 <div class="container">
	   <div class="filters-wrapper">
		 <span class="filters-label">Filtri:</span>
		 <div class="filters-controls">
		   <select>...</select>
		   <input type="date">
		 </div>
		 <div class="filters-actions">
		   <button class="btn btn--outline">RESET</button>
		   <button class="btn btn--primary">APPLICA</button>
		 </div>
	   </div>
	 </div>
   </section>

   NOTE UTILIZZO:
   - Background celeste (#e4f1fd) per distinguere da content
   - Flex wrap per responsive automatico
   - Select e input usano stili globali da style.css
   - Bottoni usano .btn standard
   ======================================== */

.filters-section {
    padding: 0 0 3rem;
}

.filters-wrapper {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background-color: var(--color-bg-secondary);
    border-radius: 8px;
    flex-wrap: wrap;
}

.filters-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-brand);
    white-space: nowrap;
}

.filters-controls {
    display: flex;
    gap: 1rem;
    flex: 1;
    flex-wrap: wrap;
}

.filters-controls select {
    min-width: 150px;
}

.filters-controls input {
    min-width: 120px;
}

.filters-actions {
    display: flex;
    gap: 0.75rem;
}

/* Operations Grid */
.operations-grid-section {
    padding: 0 0 4rem;
}

.operations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.operation-grid-card {
    background-color: #fff;
    border: 2px solid var(--color-brand);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 350px;
    transition: box-shadow 0.3s ease;
}

.operation-grid-card:hover {
    box-shadow: 0 4px 16px rgba(0, 44, 95, 0.15);
}

.operation-grid-card__date {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    margin-bottom: 1.5rem;
    display: block;
}

.operation-grid-card__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
    /*margin-bottom: 1.5rem;*/
    text-align: center;
    line-height: 1.2;
}

.operation-grid-card__logo img {
    max-width: 100%;
    /*max-height: 60px;*/
    height: auto;
    object-fit: contain;
}

.operation-grid-card__title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-brand);
    margin: 0 0 1rem;
    line-height: 1.4;
}

.operation-grid-card__role {
    font-size: 0.9375rem;
    color: var(--color-text-primary);
    margin: 0 0 0.75rem;
    line-height: 1.5;
}

.operation-grid-card__amount {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-brand);
    margin: 0;
    margin-top: auto;
}

.operations-load-more {
    display: flex;
    justify-content: center;
    padding: 2rem 0;
}

/* Responsive - One Column Pages */
@media (max-width: 1024px) {
    .operations-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .page-title {
        font-size: 2.5rem;
    }

    .filters-wrapper {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .operations-grid {
        grid-template-columns: 1fr;
    }

    .page-title {
        font-size: 2rem;
    }

    .page-header {
        padding: 2rem 0 1.5rem;
    }

    .filters-wrapper {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .filters-label {
        text-align: left;
    }

    .filters-controls {
        flex-direction: column;
        width: 100%;
    }

    .filters-actions {
        width: 100%;
    }

    .filters-actions .btn {
        flex: 1;
    }

    .filters-controls select,
    .filters-controls input {
        width: 100%;
    }

    .operation-grid-card {
        min-height: 300px;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 1.75rem;
    }

    .operation-grid-card {
        padding: 1.5rem 1rem;
        min-height: 280px;
    }

    .operation-grid-card__title {
        font-size: 1rem;
    }
}

/* ========================================
   [COMPONENTE RIUTILIZZABILE] REPORT CARD
   ========================================

   Card orizzontale per liste di report/documenti con data, titolo,
   descrizione e icona download. Usata in Free Reports, News, ecc.

   CLASSI BASE:
   - .report-card              Container card (link, flex horizontal) - INTERA RIGA CLICCABILE
   - .report-card__content     Contenitore testo (data/titolo/desc)
   - .report-card__date        Data pubblicazione (uppercase, blu)
   - .report-card__title       Titolo report (H2, bold, blu)
   - .report-card__description Descrizione breve
   - .report-card__icon        Container icona PDF (div, non link)

   STATI:
   - :hover                    Background leggero + icona scala 110%
   - :focus-visible            Outline su intera card

   ESEMPIO HTML:
   <a href="report.pdf" class="report-card" aria-label="Scarica report Ferrari - 9 Gennaio 2026">
	 <div class="report-card__content">
	   <time class="report-card__date" datetime="2026-01-09">9 Gennaio 2026</time>
	   <h2 class="report-card__title">FERRARI</h2>
	   <p class="report-card__description">Model Phasing, ForEx Blur Short Term...</p>
	 </div>
	 <div class="report-card__icon">
	   <img src="pdf.svg" alt="" aria-hidden="true">
	 </div>
   </a>

   NOTE UTILIZZO:
   - L'intera card è cliccabile (non solo l'icona)
   - Border-bottom per separare cards in lista
   - Primo elemento senza padding-top
   - Responsive: riduce gap e dimensioni su mobile
   - Hover su tutta la card con background leggero

   NOTE ACCESSIBILITÀ:
   - Usare <a> come wrapper per link semantico
   - Usare <time> con datetime per date
   - aria-label descrittivo su link principale (include titolo e data)
   - aria-hidden="true" su icona decorativa
   ======================================== */

/* Report Card - Container (ora è un link) */
.report-card {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
    padding: 2rem 0;
    border-bottom: 1px solid var(--color-border-primary);
    text-decoration: none;
    color: inherit;
    transition: background-color 0.3s ease;
}

.report-card:first-child {
    padding-top: 0;
}

.report-card:hover {
    background-color: rgba(0, 44, 95, 0.02);
}

.report-card:focus-visible {
    outline: 3px solid var(--color-focus-ring);
    border-radius: 4px;
}

.report-card__content {
    flex: 1;
}

.report-card__date {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-brand);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    display: block;
}

.report-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-brand);
    margin: 0 0 0.5rem;
    line-height: 1.3;
}

.report-card__description {
    font-size: 1rem;
    color: var(--color-text-primary);
    line-height: 1.5;
    margin: 0;
}

.report-card__icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    transition: transform 0.3s ease;
}

.report-card:hover .report-card__icon {
    transform: scale(1.1);
}

.report-card__icon img {
    width: 32px;
    height: 32px;
    display: block;
}

/* Responsive Report Card */
@media (max-width: 768px) {
    .report-card {
        padding: 1.5rem 0;
        gap: 1.5rem;
    }

    .report-card__date {
        font-size: 0.8125rem;
    }

    .report-card__title {
        font-size: 1.125rem;
    }

    .report-card__description {
        font-size: 0.9375rem;
    }

    .report-card__icon img {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .report-card {
        padding: 1.25rem 0;
        gap: 1rem;
    }

    .report-card__date {
        font-size: 0.75rem;
        margin-bottom: 0.375rem;
    }

    .report-card__title {
        font-size: 1rem;
        margin-bottom: 0.375rem;
    }

    .report-card__description {
        font-size: 0.875rem;
    }

    .report-card__icon img {
        width: 36px;
        height: 36px;
    }
}

/* ========================================
   [COMPONENTE RIUTILIZZABILE] DOCUMENT LINKS
   ========================================

   Link a documenti (PDF, DOC, XLS, ZIP) con icona.
   Versione semplificata senza data/descrizione, solo icona + link.

   CLASSI BASE:
   - .doc-link         Container flex (icona + link)
   - .doc-link__icon   Icona file (28px)
   - .doc-link a       Link al documento

   STATI:
   - :hover/:focus     Colore hover + underline
   - :focus-visible    Outline per accessibilità

   ESEMPIO HTML:
   <div class="doc-link">
	 <img src="pdf.svg" alt="" class="doc-link__icon" aria-hidden="true">
	 <a href="documento.pdf">INTERMONTE PARTNERS | BILANCIO 2024</a>
   </div>

   NOTE UTILIZZO:
   - Perfetto per liste semplici di documenti (Bilanci, Relazioni)
   - Margin-bottom per spaziare link in lista verticale
   - Icona fissa 28px, non scala con responsive
   - Link blu brand con hover celeste

   NOTE ACCESSIBILITÀ:
   - aria-hidden="true" su icona (decorativa)
   - Link deve avere testo descrittivo
   - Focus outline visibile per tastiera
   ======================================== */

/* Document Links - Container */
.doc-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.doc-link__icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.doc-link a {
    color: var(--color-brand);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.doc-link a:hover,
.doc-link a:focus {
    color: var(--color-link-hover);
    text-decoration: underline;
}

.doc-link a:focus-visible {
    outline: 3px solid var(--color-focus-ring);
    outline-offset: 2px;
    border-radius: 2px;
}

/* Responsive Document Links */
@media (max-width: 768px) {
    .doc-link__icon {
        width: 28px;
        height: 28px;
    }

    .doc-link a {
        font-size: 0.9375rem;
    }
}

@media (max-width: 480px) {
    .doc-link {
        gap: 0.75rem;
        margin-bottom: 1.25rem;
    }

    .doc-link__icon {
        width: 24px;
        height: 24px;
    }

    .doc-link a {
        font-size: 0.875rem;
    }
}

/* Latest Operations Section */
.latest-operations-section {
    padding: 4rem 0;
    text-align: center;
}

.operations-swiper {
    padding: 2rem 0 3rem 0;
    overflow: visible;
    max-width: 69rem;
    margin: 0 auto;
}

.operations-swiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (min-width:992px) { /* task #128221 */
  .operations-swiper { margin-top: 2rem; }
}

.operation-card {
    background-color: var(--color-bg-primary);
    border: 1px solid var(--color-brand);
    border-radius: 32px;
    padding: 2rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
    height: auto;
    min-height: 300px;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    transition: opacity 0.3s ease;
    box-shadow: 0 0 4px 0 var(--color-brand-light);
}

.swiper-slide:not(.swiper-slide-active) .operation-card {
    opacity: 0.4;
}

.operation-date {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    font-weight: 400;
    text-align: left;
}

.operation-company {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.company-logo {
    display: block;
}

.company-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.company-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text-primary);
    /*font-family: 'Montserrat', sans-serif;*/
}

.operation-type {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-brand);
    margin: 0;
    text-align: left;
}

.operation-role {
    font-size: 0.9375rem;
    color: var(--color-text-primary);
    margin: 0;
    text-align: left;
}

.operation-amount {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin: 0;
    margin-top: auto;
    text-align: left;
}

/* Operations Swiper Pagination */
.operations-swiper .swiper-pagination {
    position: relative;
    margin-top: 2rem;
}

.operations-swiper .swiper-pagination-bullet {
    background-color: var(--color-brand);
    opacity: 0.3;
    width: 18px;
    /* 10px; */
    height: 18px;
    /* 10px; */
}

.operations-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    background-color: var(--color-brand);
}

/* Latest Operations Section - Responsive */
@media (max-width: 1024px) {
    .latest-operations-section {
        padding: 3rem 0;
    }

    .operation-card {
        padding: 1.75rem 1.25rem;
        min-height: 260px;
    }
}

@media (max-width: 768px) {
    .latest-operations-section {
        padding: 2.5rem 0;
    }

    .operations-swiper {
        padding: 1.5rem 0 2.5rem 0;
    }

    .operation-card {
        padding: 1.5rem 1.25rem;
        min-height: 240px;
        gap: 0.875rem;
    }

    .company-name {
        font-size: 1.125rem;
    }

    .operation-type {
        font-size: 0.9375rem;
    }

    .operation-role {
        font-size: 0.875rem;
    }

    .operation-amount {
        font-size: 0.9375rem;
    }
}

@media (max-width: 480px) {
    .operation-card {
        padding: 1.25rem 1rem;
        min-height: 220px;
    }

    .company-name {
        font-size: 1rem;
    }
}

/* ========================================
   PAGE COMPONENTS
   (breadcrumb, sticky nav, content blocks, tables)
   ======================================== */

/* ========================================
   [COMPONENTE RIUTILIZZABILE] BREADCRUMB
   ========================================

   Breadcrumb di navigazione gerarchica per la parte alta della pagina.
   Mostra il percorso corrente (es: Home / Area Clienti / Recommendation).

   CLASSI BASE:
   - .breadcrumb            Container nav
   - .breadcrumb__list      Lista ordinata (ol)
   - .breadcrumb__item      Singolo elemento
   - .breadcrumb__link      Link cliccabile
   - .breadcrumb__current   Span elemento corrente (non link)

   NOTE ACCESSIBILITÀ:
   - Usare <nav class="breadcrumb" aria-label="Percorso di navigazione">
   - Impostare aria-current="page" sull'elemento corrente (link o span)
   - Usare <ol> per comunicare l'ordine gerarchico
   ======================================== */

.breadcrumb {
    font-size: 0.875rem;
    color: var(--color-text-muted, #6b7280);
    margin-bottom: 1rem;
}

.breadcrumb__list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumb__item {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.breadcrumb__item+.breadcrumb__item::before {
    content: "›";
    color: var(--color-border-primary);
    font-size: 0.75rem;
}

.breadcrumb__link {
    text-decoration: none;
    color: var(--color-brand);
    font-weight: 500;
}

.breadcrumb__link:hover,
.breadcrumb__link:focus {
    text-decoration: underline;
    color: var(--color-link-hover);
}

.breadcrumb__current {
    color: var(--color-text-primary);
    font-weight: 600;
}

@media (max-width: 480px) {
    .breadcrumb {
        font-size: 0.8125rem;
    }
}

/* ========================================
   [COMPONENTE RIUTILIZZABILE] STICKY SECTION NAV
   ========================================

   Navigazione sidebar sticky per pagine two-column (es: Investor Relations, Chi Siamo).
   Rimane fissa durante lo scroll per facilitare navigazione tra sezioni.

   CLASSI BASE:
   - .sticky-section-nav           Container sticky
   - .sticky-section-nav__toggle   Toggle per mobile (nascosto desktop)
   - .sticky-section-nav__list     Lista link
   - .sticky-section-nav__link     Singolo link di navigazione

   MODIFICATORI:
   - .sticky-section-nav__link--active  Link sezione corrente
   - .is-active                         Alternativa per link attivo

   STATI:
   - :hover/:focus                  Colore blu brand

   ESEMPIO HTML:
   <aside class="sticky-section-nav">
	 <ul class="sticky-section-nav__list">
	   <li><a href="#sezione1" class="sticky-section-nav__link is-active">Sezione 1</a></li>
	   <li><a href="#sezione2" class="sticky-section-nav__link">Sezione 2</a></li>
	   <li><a href="#sezione3" class="sticky-section-nav__link">Sezione 3</a></li>
	 </ul>
   </aside>

   NOTE UTILIZZO:
   - Usare in two-column-template (sidebar + content)
   - Top: 90px per evitare sovrapposizione con header sticky
   - Background azzurro chiaro (#f5f9fd) per distinguere dal content
   - Responsive: diventa accordion su mobile/tablet

   NOTE ACCESSIBILITÀ:
   - Usare <nav> con aria-label per screen readers
   - Link attivo deve avere aria-current="page"
   ======================================== */

/* Sticky sidebar navigation - Container */
.sticky-section-nav {
    position: sticky;
    top: 90px;
    align-self: flex-start;
    color: #fff;
    background-color: var(--color-brand);
    /* #f5f9fd; */
    border-radius: 24px;
    padding: 1.75rem 1.5rem;
}

.sticky-section-nav__toggle {
    display: none;
}

.sticky-section-nav__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.sticky-section-nav__link {
    display: block;
    text-decoration: none;
    font-size: 1rem;
    line-height: 1.3;
    /* color: #627da0; */
    color: inherit;
    font-weight: 400;
    transition: color 0.2s ease;
}

.sticky-section-nav__nav a {
    color: inherit;
}

.sticky-section-nav__link:hover,
.sticky-section-nav__link:focus {
    /*color: var(--color-brand);*/
    color: inherit;
}

.sticky-section-nav__link--active,
.sticky-section-nav__link.is-active {
    /*color: var(--color-brand);*/
    color: inherit;
    font-weight: 700;
    text-decoration: underline;
}

/* ========================================
   [COMPONENTE RIUTILIZZABILE] CONTENT BLOCK
   ========================================

   Blocco di contenuto generico per testi, paragrafi, liste.
   Usato in pagine two-column come container per sezioni di testo.

   CLASSI BASE:
   - .content-block              Container principale
   - .content-block__title       Titolo sezione (H2/H3)
   - .content-block__body        Contenuto testo principale
   - .content-block__subtitle    Sottotitolo interno
   - .content-block__list        Lista puntata/numerata

   ESEMPIO HTML:
   <div class="content-block">
	 <h2 class="content-block__title">Titolo Sezione</h2>
	 <div class="content-block__body">
	   <p>Testo contenuto...</p>
	   <h3 class="content-block__subtitle">Sottotitolo</h3>
	   <ul class="content-block__list">
		 <li>Punto 1</li>
		 <li>Punto 2</li>
	   </ul>
	 </div>
   </div>

   NOTE UTILIZZO:
   - Perfetto per pagine informative (Chi Siamo, Investor Relations)
   - Titolo blu brand, body nero standard
   - Spacing verticale consistente (1.5rem top)
   - Liste con marker blu (ereditato da style.css)
   ======================================== */

/* Content Block - Container */
.content-block {
    margin-top: 1.5rem;
}

.content-block__title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--color-brand);
}

.content-block__body {
    color: var(--color-text-primary);
}

.content-block__subtitle {
    font-size: 1.1rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-accent);
    font-weight: 600;
}

.content-block__list {
    margin-top: 1rem;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    color: var(--color-text-primary);
}

.content-block__list li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.content-block__image {
    margin-top: 1rem;
    margin-bottom: 1rem;
    width: 100%;
    overflow: hidden;
    border-left: 8px solid var(--color-bg-tertiary);
    border-radius: 8px;
}

.content-block__image img {
    /* width: 100%; */
    height: auto;
    display: block;
    max-width: 100%;
    /* 70%; */
    object-fit: contain;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .content-block__image img {
        max-width: 100%;
    }
}

/* Table styles */
.content-block__body .table {
    width: 100%;
    margin-top: 1.5rem;
    border-collapse: collapse;
}

.content-block__body .table tbody tr {
    border-bottom: 1px solid var(--color-border-primary);
}

.content-block__body .table tbody tr:last-child {
    border-bottom: none;
}

.content-block__body .table td {
    padding: 1.5rem;
    vertical-align: middle;
}

.content-block__body .table td:first-child,
.content-block__body .table td:nth-child(3) {
    width: 150px;
    text-align: center;
}

.content-block__body .table .figure {
    margin: 0;
    display: inline-block;
}

.content-block__body .table .figure img {
    max-width: 120px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.content-block__body .table td p {
    margin: 0;
    line-height: 1.6;
}

.content-block__body .table td p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .content-block__body .table {
        display: block;
    }

    .content-block__body .table tbody {
        display: block;
    }

    .content-block__body .table tbody tr {
        display: block;
        margin-bottom: 1.5rem;
        border-bottom: 2px solid var(--color-border-primary);
        padding-bottom: 1.5rem;
    }

    .content-block__body .table tbody tr:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .content-block__body .table td {
        display: block;
        width: 100% !important;
        padding: 0.75rem 0;
        text-align: left !important;
    }

    .content-block__body .table td:first-child,
    .content-block__body .table td:nth-child(3) {
        text-align: center;
    }
}

/* Utility: offset per scroll su anchor target */
.mt-scroll {
    scroll-margin-top: 110px;
}


/* ========================================
   [COMPONENTE RIUTILIZZABILE] LINK UNDERLINED
   ========================================

   Modificatore per link che devono essere sottolineati di default.

   CLASSE MODIFICATORE:
   - .link--underlined    Link celeste sottolineato

   STATI:
   - :hover/:focus        Colore blu più scuro

   ESEMPIO HTML:
   <a href="#" class="link--underlined">Link sottolineato</a>

   NOTE UTILIZZO:
   - Colore celeste (#0072ce) di default
   - Sempre sottolineato (anche non-hover)
   - Hover diventa blu scuro per feedback
   ======================================== */

.link--underlined {
    color: var(--color-link-hover);
    text-decoration: underline;
}

.link--underlined:hover,
.link--underlined:focus {
    color: var(--color-brand-dark);
    text-decoration: underline;
}

/* ========================================
   [COMPONENTE RIUTILIZZABILE] ALERT / MESSAGE BANNER
   ========================================

   Banner di messaggio per info, successo, avvisi e errori.
   Utilizzabile sopra o sotto i blocchi di contenuto o all'interno di form.

   CLASSI BASE:
   - .alert                Container principale
   - .alert__icon          Icona (opzionale)
   - .alert__content       Wrapper testo
   - .alert__title         Titolo breve
   - .alert__text          Testo descrittivo

   VARIANTI:
   - .alert--info
   - .alert--success
   - .alert--warning
   - .alert--error

   NOTE ACCESSIBILITÀ:
   - Usare role="status" per messaggi non critici
   - Usare role="alert" per messaggi di errore/bloccanti
   ======================================== */

.alert {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    border-radius: 12px;
    border: 1px solid var(--color-border-primary);
    background-color: var(--color-bg-secondary);
    color: var(--color-text-primary);
    font-size: 0.9375rem;
}

.alert__icon {
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.alert__content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.alert__title {
    font-weight: 600;
    margin: 0;
}

.alert__text {
    margin: 0;
    line-height: 1.5;
}

.alert--info {
    border-color: #cce4ff;
    background-color: #f3f8ff;
}

.alert--success {
    border-color: #c3e6cb;
    background-color: #f3fbf5;
}

.alert--warning {
    border-color: #ffeeba;
    background-color: #fff8e5;
}

.alert--error {
    border-color: #f5c6cb;
    background-color: #fff5f6;
}

/* ========================================
   [COMPONENTE RIUTILIZZABILE] BADGE / TAG
   ========================================

   Piccolo indicatore di stato o categoria (es. NEW, PRIVATE, DRAFT).
   Può essere usato vicino a titoli, card, tabelle.
   ======================================== */

.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.15rem 0.6rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1.4;
    border: 1px solid transparent;
}

.badge--default {
    background-color: var(--color-bg-secondary);
    color: var(--color-text-primary);
    border-color: var(--color-border-primary);
}

.badge--success {
    background-color: #e6f6ee;
    color: #0f5132;
    border-color: #bcdaca;
}

.badge--warning {
    background-color: #fff3cd;
    color: #856404;
    border-color: #ffe8a1;
}

.badge--neutral {
    background-color: #eef2f7;
    color: #4b5563;
    border-color: #d1d5db;
}

/* ========================================
   [COMPONENTE RIUTILIZZABILE] SIMPLE CARD
   ========================================

   Card di contenuto generica per elencare elementi con titolo, testo
   e link opzionale. Variante leggera delle service-card.

   CLASSI BASE:
   - .simple-card           Container card
   - .simple-card__title    Titolo (H3)
   - .simple-card__text     Testo descrittivo
   - .simple-card__link     Link azione (opzionale)
   ======================================== */

.simple-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.simple-card {
    background-color: var(--color-bg-primary);
    border-radius: 16px;
    border: 1px solid var(--color-border-primary);
    padding: 1.5rem 1.75rem;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    height: 100%;
}

.simple-card__title {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    color: var(--color-brand);
}

.simple-card__text {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--color-text-primary);
}

.simple-card__link {
    margin-top: auto;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-brand);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.simple-card__link:hover,
.simple-card__link:focus {
    color: var(--color-link-hover);
    text-decoration: underline;
}

.simple-card__link::after {
    content: '›';
    font-size: 0.875rem;
}

@media (max-width: 1024px) {
    .simple-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .simple-card-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

/* Componenti specifici (non riutilizzabili) rimangono sotto */

.contact-map {
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-map img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 32px;
}

/* Newsletter / Alert banner (overlay card + image) */
.newsletter-banner-section {
    padding: 4rem 0;
}

.newsletter-banner-section .container {
    overflow: visible;
    padding-left: calc(1rem + 20px);
}

.newsletter-banner {
    position: relative;
    display: flex;
    align-items: stretch;
    min-height: 400px;
}

.newsletter-banner__media {
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.newsletter-banner__media img {
    width: 100%;
    max-height: 600px;
    object-fit: cover;
    display: block;
}

.newsletter-banner__content {
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 600px;
    max-width: calc(80% - 10px);
    padding: 3rem 2.5rem;
    background-color: var(--color-brand);
    border-radius: 12px;
    color: var(--color-text-inverse);
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.newsletter-banner__title {
    font-size: 2.25rem;
    font-weight: 700;
    margin: 0;
}

.newsletter-banner__subtitle {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    max-width: 520px;
}

.newsletter-banner__form {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.newsletter-banner__field {
    flex: 1 1 260px;
}

.newsletter-banner__input {
    width: 100%;
    padding: 0.9rem 1.25rem;
    border-radius: 999px;
    border: none;
    font-size: 1rem;
}

.newsletter-banner__input::placeholder {
    color: #989898;
}

.newsletter-banner__button {
    white-space: nowrap;
}

.newsletter-banner__button--mobile {
    display: none;
}

.newsletter-banner__checks {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-size: 0.875rem;
    line-height: 1.5;
}

.newsletter-banner__checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.newsletter-banner__checkbox input {
    margin-top: 0.2rem;
}

@media (max-width: 1024px) {
    .newsletter-banner {
        min-height: 450px;
    }

    .newsletter-banner__content {
        left: -20px;
        width: 450px;
        padding: 2rem 2rem;
    }
}

@media (max-width: 768px) {
    .newsletter-banner-section {
        padding: 2rem 0;
    }

    .newsletter-banner-section .container {
        padding-left: 0;
        padding-right: 0;
    }

    .newsletter-banner {
        flex-direction: column;
        min-height: 500px;
        position: relative;
        border-radius: 16px;
        overflow: hidden;
    }

    .newsletter-banner__media {
        position: absolute;
        inset: 0;
        z-index: 0;
    }

    .newsletter-banner__media::after {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(0, 44, 95, 0.3);
        backdrop-filter: blur(2px);
        z-index: 1;
    }

    .newsletter-banner__media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .newsletter-banner__content {
        position: relative;
        left: 0;
        top: 0;
        transform: none;
        width: 100%;
        max-width: 100%;
        margin: .8rem;
        padding: 1.5rem 2rem;
        background-color: var(--color-brand);
        border-radius: 16px;
        z-index: 2;
        align-self: center;
        max-width: calc(100% - 3rem);
    }

    .newsletter-banner__title {
        font-size: 1.75rem;
    }

    .newsletter-banner__subtitle {
        font-size: 0.9375rem;
    }

    .newsletter-banner__form {
        flex-direction: column;
        gap: 1rem;
    }

    .newsletter-banner__field {
        flex: 1 1 100%;
        width: 100%;
    }

    .newsletter-banner__button--desktop {
        display: none;
    }

    .newsletter-banner__button--mobile {
        display: flex;
        width: 100%;
        justify-content: center;
        margin-top: 1.5rem;
    }

    .newsletter-banner__checks {
        font-size: 0.8125rem;
    }
}

@media (max-width: 1024px) {
    .two-column-template__inner {
        grid-template-columns: 200px minmax(0, 1fr);
        gap: 2rem;
    }

    .sticky-section-nav {
        top: 88px;
    }
}

.hero-two-column {
    color: #fff;
    background: #002c5f;
}

@media (max-width: 768px) {
    .two-column-template__inner {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .sticky-section-nav {
        position: static;
        top: auto;
        z-index: 1;
        padding: 0;
        border-radius: 24px;
        box-shadow: none;
    }

    .sticky-section-nav__toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 0.85rem 1.5rem;
        background-color: #f5f9fd;
        border: none;
        color: #002c5f;
        font-weight: 700;
        font-size: 1.0625rem;
        text-align: left;
        cursor: pointer;
        border-radius: 24px;
    }

    .sticky-section-nav__toggle:focus-visible {
        outline: 3px solid var(--color-focus-ring);
        outline-offset: 2px;
    }

    .sticky-section-nav__toggle-icon {
        width: 24px;
        height: 24px;
        flex-shrink: 0;
        background-image: url('../icons/chevron-up.svg');
        background-repeat: no-repeat;
        background-position: center;
        background-size: 16px 16px;
        transform: rotate(180deg);
        /* freccia verso il basso */
        transition: transform 0.2s ease;
    }

    .sticky-section-nav--open .sticky-section-nav__toggle-icon {
        transform: rotate(0deg);
        /* freccia verso l'alto */
    }

    .sticky-section-nav__toggle-label {
        font-family: 'Lato', sans-serif;
    }

    .sticky-section-nav__nav {
        margin-top: 0.25rem;
    }

    .sticky-section-nav__list {
        display: none;
        flex-direction: column;
        gap: 0.5rem;
        border-radius: 24px;
        padding: 0.75rem 1.5rem 1.25rem;
    }

    .sticky-section-nav--open .sticky-section-nav__list {
        display: flex;
    }

    .sticky-section-nav__link {
        font-size: 1rem;
        padding: 0.25rem 0;
        color: #627da0;
    }

    .sticky-section-nav__link.is-active {
        color: #002c5f;
        font-weight: 700;
    }

    .hero-two-column {
        min-height: 220px;
    }
}

/* ========================================
   NEWS & EVENTS PAGE COMPONENTS
   ======================================== */

/* Events Carousel Section */
.events-carousel-section {
    padding: 4rem 0;
    background-color: var(--color-bg-primary);
    width: 100%;
}

.events-carousel-header {
    margin-bottom: 2.5rem;
}

.events-carousel-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-brand);
    margin: 0;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.events-swiper {
    padding: 0;
    overflow: visible;
    width: 100%;
    margin: 0;
    position: relative;
}

.events-swiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    margin-bottom: 0;
}

.event-card {
    position: relative;
    width: 100%;
    max-width: 100%;
    min-height: 500px;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.event-card__image {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.event-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 16px;
}

.event-card__overlay {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    background-color: rgba(0, 44, 95, 0.85);
    padding: 2rem;
    border-radius: 0 0 16px 0;
    color: var(--color-text-inverse);
    max-width: 400px;
    width: auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 0;
}

.event-card__date {
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
}

.event-card__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-inverse);
    margin: 0;
    line-height: 1.3;
}

.event-card__location {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.event-card__button {
    margin-top: 0.5rem;
    align-self: flex-start;
}

.event-card__button:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.8);
    outline-offset: 3px;
}

/* Events Swiper Pagination */
.events-swiper-pagination {
    position: relative;
    text-align: center;
    width: 100%;
    padding: 0;
}

.events-swiper-pagination .swiper-pagination-bullet {
    background-color: var(--color-brand);
    opacity: 0.3;
    width: 10px;
    height: 10px;
    margin: 0 0.25rem;
}

.events-swiper-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background-color: var(--color-brand);
}

.events-carousel-footer {
    padding: 2rem 0;
}

.events-carousel-actions {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* News Content Section */
.news-content-section {
    padding: 4rem 0;
    background-color: var(--color-bg-tertiary);
}

/* Top Section: Image + Comunicati Stampa */
.news-content-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.news-content-top__image {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 2.5 / 3;
}

.news-content-top__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.news-content-top__content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Bottom Section: Interviste & Articoli + Press Kit */
.news-content-bottom {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    align-items: flex-start;
}

.news-content-bottom__left,
.news-content-bottom__right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.news-content-bottom__divider {
    width: 1px;
    background-color: rgba(0, 0, 0, 0.1);
    align-self: stretch;
    min-height: 100%;
}

.news-content-column__content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.news-content-column__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-brand);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.news-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.news-list__item {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.news-list__item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.news-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.news-item__date {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
}

.news-item__title {
    font-size: 1rem;
    font-weight: 400;
    margin: 0;
    line-height: 1.5;
}

.news-item__link {
    color: var(--color-text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
}

.news-item__link:hover,
.news-item__link:focus {
    color: var(--color-brand);
    outline: 2px solid var(--color-brand);
    outline-offset: 2px;
    border-radius: 2px;
}

.news-item__link:focus:not(:focus-visible) {
    outline: none;
}

.news-item__link:focus-visible {
    outline: 3px solid var(--color-brand);
    outline-offset: 3px;
}

.news-list--articles .news-item {
    gap: 0.75rem;
}

.news-list--articles .news-item__title {
    font-size: 1.125rem;
    font-weight: 600;
}

.news-content-column__button {
    margin-top: 0.5rem;
    align-self: flex-start;
}

.news-content-column__button:focus-visible {
    outline: 3px solid rgba(0, 44, 95, 0.5);
    outline-offset: 2px;
}

/* Events Carousel Section - Responsive */
@media (max-width: 1024px) {
    .events-carousel-section {
        padding: 3.5rem 0;
    }

    .events-carousel-header {
        margin-bottom: 2rem;
    }

    .events-carousel-title {
        font-size: 2rem;
    }

    .event-card {
        height: 450px;
    }

    .event-card__overlay {
        padding: 1.75rem;
        max-width: 360px;
    }

    .event-card__title {
        font-size: 1.25rem;
    }

    .news-content-grid {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .events-carousel-section {
        padding: 3rem 0;
    }

    .events-carousel-header {
        margin-bottom: 1.5rem;
    }

    .events-carousel-title {
        font-size: 1.75rem;
    }

    .events-swiper {
        padding: 0 0 2.5rem 0;
    }

    .event-card {
        height: 400px;
    }

    .event-card__overlay {
        padding: 1.5rem;
        max-width: 320px;
    }

    .event-card__title {
        font-size: 1.125rem;
    }

    .event-card__location {
        font-size: 0.9375rem;
    }

    .event-card__button {
        font-size: 0.875rem;
        padding: 0.5rem 1.5rem;
    }

    .events-carousel-actions {
        margin-top: 1.5rem;
    }

    .news-content-section {
        padding: 3rem 0;
    }

    .news-content-top {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-bottom: 3rem;
    }

    .news-content-top__image {
        aspect-ratio: 16 / 9;
    }

    .news-content-bottom {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .news-content-bottom__divider {
        display: none;
    }

    .news-content-column__title {
        font-size: 1.25rem;
    }

    .news-list {
        gap: 1.25rem;
    }

    .news-list__item {
        padding-bottom: 1.25rem;
    }

    .news-item__title {
        font-size: 0.9375rem;
    }

    .news-list--articles .news-item__title {
        font-size: 1rem;
    }

    .news-content-column__content--press-kit {
        margin-top: 2.5rem;
        padding-top: 2.5rem;
    }
}

@media (max-width: 480px) {
    .events-carousel-section {
        padding: 2.5rem 0;
    }

    .events-carousel-header {
        margin-bottom: 1.25rem;
    }

    .events-carousel-title {
        font-size: 1.5rem;
    }

    .event-card {
        height: 350px;
    }

    .event-card__overlay {
        padding: 1.25rem;
        max-width: 280px;
    }

    .event-card__date {
        font-size: 0.8125rem;
    }

    .event-card__title {
        font-size: 1rem;
    }

    .event-card__location {
        font-size: 0.875rem;
    }

    .news-content-section {
        padding: 2.5rem 0;
    }

    .news-content-top {
        gap: 2rem;
        margin-bottom: 2.5rem;
    }

    .news-content-bottom {
        gap: 2rem;
    }

    .news-content-column__title {
        font-size: 1.125rem;
    }

    .news-list {
        gap: 1rem;
    }

    .news-list__item {
        padding-bottom: 1rem;
    }

    .news-item__date {
        font-size: 0.8125rem;
    }

    .news-item__title {
        font-size: 0.875rem;
        line-height: 1.4;
    }

    .news-list--articles .news-item__title {
        font-size: 0.9375rem;
    }

    .news-content-column__content--press-kit {
        margin-top: 2rem;
        padding-top: 2rem;
    }
}

/* ========================================
   SEARCH RESULTS PAGE
   ======================================== */

.search-results-page {
    padding: 3rem 0 4rem 0;
}

.search-results-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-brand);
    margin: 0 0 2rem 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Search Form */
.search-form-wrapper {
    margin-bottom: 3rem;
}

.search-form {
    display: flex;
    gap: 0.75rem;
    max-width: 800px;
    align-items: center;
}

.search-input {
    flex: 1;
    padding: 0.875rem 1.25rem;
    border: 1px solid var(--color-border-primary);
    border-radius: var(--radius-pill);
    font-size: 1rem;
    font-family: 'Lato', sans-serif;
    color: var(--color-text-primary);
    background-color: var(--color-bg-primary);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.search-input::placeholder {
    color: var(--color-text-secondary);
}

.search-input:focus {
    outline: none;
    border-color: var(--color-brand);
    box-shadow: 0 0 0 3px rgba(0, 44, 95, 0.1);
}

.search-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    padding: 0;
    border: none;
    border-radius: var(--radius-pill);
    background-color: var(--color-brand);
    color: var(--color-text-inverse);
    cursor: pointer;
    transition: background-color 0.3s ease;
    flex-shrink: 0;
}

.search-button:hover,
.search-button:focus {
    background-color: var(--color-brand-dark);
}

.search-button:focus-visible {
    outline: 3px solid rgba(0, 44, 95, 0.5);
    outline-offset: 2px;
}

.search-button-icon {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

/* Search Results List */
.search-results-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 3rem;
}

/* Search Result Item - Ora è un link completo (intera riga cliccabile) */
.search-result-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--color-border-primary);
    gap: 1.5rem;
    text-decoration: none;
    color: inherit;
    transition: background-color 0.3s ease;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background-color: rgba(0, 44, 95, 0.02);
}

.search-result-item:focus-visible {
    outline: 3px solid var(--color-focus-ring);
    border-radius: 4px;
}

.search-result-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.search-result-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.search-result-header-left {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.search-result-category {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-brand);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.search-result-category:empty {
    display: none;
}

.search-result-date {
    font-size: 0.875rem;
    color: var(--color-accent);
    font-weight: 400;
}

.search-result-title {
    margin: 0;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--color-text-primary);
    transition: color 0.3s ease;
}

.search-result-item:hover .search-result-title {
    color: var(--color-brand);
}

/* PDF Icon - Ora è solo decorativa (non più link) */
.search-result-pdf {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.search-result-item:hover .search-result-pdf {
    transform: scale(1.1);
}

.search-result-pdf .pdf-icon {
    width: 24px;
    height: 24px;
}

/* ========================================
   [COMPONENTE RIUTILIZZABILE] PAGINATION
   ========================================

   Paginazione per liste di contenuti (risultati ricerca, report, operazioni).
   Supporta due modalità: info base (1 of 5) o numeri cliccabili (1 2 3 4 5).

   CLASSI BASE:
   - .pagination                Container principale
   - .pagination-button         Bottoni prev/next

   MODALITÀ 1 - INFO BASE (es: "1 of 5"):
   - .pagination-info           Container info centrale
   - .pagination-number         Numero pagina (base)
   - .pagination-number--current  Numero corrente (blu)
   - .pagination-number--total  Numero totale (contorno)
   - .pagination-separator      Testo "of"

   MODALITÀ 2 - NUMERI CLICCABILI (es: 1 2 3 4 5):
   - .pagination-pages          Container numeri
   - .pagination-page           Singolo numero/link
   - .pagination-page--active   Pagina corrente (blu, non cliccabile)
   - .pagination-page--disabled Pagina disabilitata
   - .pagination-ellipsis       Puntini "..." per molte pagine

   STATI:
   - :hover                     Background blu chiaro (non disabled/active)
   - :disabled                  Opacità ridotta, non cliccabile
   - :focus-visible             Outline per accessibilità

   ESEMPIO HTML - Modalità Info:
   <div class="pagination">
	 <button class="pagination-button" disabled>←</button>
	 <div class="pagination-info">
	   <span class="pagination-number pagination-number--current">1</span>
	   <span class="pagination-separator">of</span>
	   <span class="pagination-number pagination-number--total">5</span>
	 </div>
	 <button class="pagination-button">→</button>
   </div>

   ESEMPIO HTML - Modalità Numeri:
   <div class="pagination">
	 <button class="pagination-button">←</button>
	 <div class="pagination-pages">
	   <a href="#" class="pagination-page pagination-page--active">1</a>
	   <a href="#" class="pagination-page">2</a>
	   <span class="pagination-ellipsis">...</span>
	   <a href="#" class="pagination-page">10</a>
	 </div>
	 <button class="pagination-button">→</button>
   </div>

   NOTE ACCESSIBILITÀ:
   - Usare aria-label su bottoni prev/next
   - Usare aria-current="page" sulla pagina attiva
   - Usare aria-hidden="true" su ellipsis
   - Focus outline visibile per navigazione tastiera

   NOTE UTILIZZO:
   - Funziona con <a> (link classici) o <button> (AJAX/SPA)
   - Completamente responsive (tablet 36px, mobile 32px)
   - Pronto per integrazione CMS dinamica
   ======================================== */

/* Pagination - Container principale */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

/* Bottoni Prev/Next */
.pagination-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 1px solid var(--color-border-primary);
    border-radius: var(--radius-pill);
    background-color: var(--color-bg-primary);
    color: var(--color-brand);
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-button:hover:not(:disabled) {
    background-color: var(--color-brand-light);
    border-color: var(--color-brand);
}

.pagination-button:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    color: #9CA3AF;
}

.pagination-button:focus-visible {
    outline: 3px solid rgba(0, 44, 95, 0.5);
    outline-offset: 2px;
}

/* Modalità Info - Container "1 of 5" */
.pagination-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 400;
}

/* Numeri info base */
.pagination-number {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
    padding: 0 0.5rem;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 0.9375rem;
    white-space: nowrap;
    box-sizing: border-box;
}

.pagination-number--current {
    background-color: var(--color-brand);
    color: var(--color-text-inverse);
}

.pagination-number--total {
    border: 1px solid var(--color-brand-light);
    color: var(--color-brand);
    background-color: transparent;
}

.pagination-separator {
    color: var(--color-brand);
    font-weight: 400;
}

/* Modalità Numeri Cliccabili - Container */
.pagination-pages {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Singolo numero/pagina cliccabile */
.pagination-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 0.5rem;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--color-brand);
    background-color: transparent;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.pagination-page:hover:not(.pagination-page--active):not(.pagination-page--disabled) {
    background-color: var(--color-brand-light);
    border-color: var(--color-brand-light);
}

.pagination-page:focus-visible {
    outline: 3px solid var(--color-focus-ring);
    outline-offset: 2px;
}

.pagination-page--active {
    background-color: var(--color-brand);
    color: var(--color-text-inverse);
    cursor: default;
    pointer-events: none;
}

.pagination-page--disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

/* Ellipsis - Puntini "..." tra pagine */
.pagination-ellipsis {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    color: var(--color-brand);
    font-weight: 600;
    font-size: 0.9375rem;
    user-select: none;
}

/* Search Results Page - Responsive */
@media (max-width: 768px) {
    .search-results-page {
        padding: 2rem 0 3rem 0;
    }

    .search-results-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .search-form-wrapper {
        margin-bottom: 2rem;
    }

    .search-form {
        max-width: 100%;
    }

    .search-input {
        padding: 0.75rem 1rem;
        font-size: 0.9375rem;
    }

    .search-button {
        width: 44px;
        height: 44px;
    }

    .search-results-list {
        margin-bottom: 2rem;
    }

    .search-result-item {
        padding: 1.25rem 0;
        gap: 1rem;
    }

    .search-result-header {
        gap: 0.75rem;
    }

    .search-result-category {
        font-size: 0.8125rem;
    }

    .search-result-date {
        font-size: 0.8125rem;
    }

    .search-result-title {
        font-size: 0.9375rem;
    }

    .pagination {
        gap: 1.25rem;
        margin-top: 1.5rem;
    }
}

/* ========================================
   [COMPONENTE RIUTILIZZABILE] DATA TABLE
   ========================================

   Tabella dati stilizzata per visualizzare informazioni strutturate.
   Header blu scuro con testo bianco, celle chiare con contenuto.

   CLASSI BASE:
   - .data-table              Container tabella
   - .data-table__header      Header tabella (thead)
   - .data-table__header-cell Header cell (th)
   - .data-table__body        Body tabella (tbody)
   - .data-table__row         Riga tabella (tr)
   - .data-table__cell        Cella tabella (td)
   - .data-table__list        Lista dentro cella (ul)
   - .data-table__list-item   Item lista (li)

  VARIANTI:
  - .data-table--bordered     Tabella con bordi completi
  - .data-table--striped      Righe alternate (zebra striping)
  - .data-table--compact      Padding ridotto per tabelle compatte
  - .data-table--hover        Hover effect sulle righe
  - .data-table--white-cells  Celle con background bianco (invece di celestino)
  - .data-table--simple       Tabella righe semplice (stile classico: nessun bordo verticale)
  - .data-table--no-header    Tabella senza header (header opzionale)

   MODIFICATORI CELLE:
   - .data-table__cell--numeric  Allineamento numerico (right)
   - .data-table__cell--center   Allineamento centrato
   - .data-table__cell--right    Allineamento a destra
   - .data-table__cell--white    Background bianco (override)

   ESEMPIO HTML BASE:
   <div class="data-table-wrapper">
	 <table class="data-table" role="table" aria-label="Titolo tabella">
	   <caption class="sr-only">Descrizione tabella</caption>
	   <thead class="data-table__header">
		 <tr>
		   <th scope="col" class="data-table__header-cell">Colonna 1</th>
		   <th scope="col" class="data-table__header-cell">Colonna 2</th>
		 </tr>
	   </thead>
	   <tbody class="data-table__body">
		 <tr class="data-table__row">
		   <td class="data-table__cell">Contenuto 1</td>
		   <td class="data-table__cell">Contenuto 2</td>
		 </tr>
	   </tbody>
	 </table>
   </div>

   ESEMPIO CON LISTE:
   <td class="data-table__cell">
	 <ul class="data-table__list">
	   <li class="data-table__list-item">Item 1</li>
	   <li class="data-table__list-item">Item 2</li>
	 </ul>
   </td>

   ESEMPIO VARIANTI:
   <table class="data-table data-table--striped data-table--hover">
   <table class="data-table data-table--bordered data-table--compact">
   <td class="data-table__cell data-table__cell--numeric">123.45</td>
   <td class="data-table__cell data-table__cell--center">Centrato</td>

   NOTE ACCESSIBILITÀ:
   - Usare <table>, <thead>, <tbody>, <th>, <td> per struttura semantica
   - Usare scope="col" o scope="row" su <th>
   - Usare aria-label o <caption> per descrivere la tabella
   - Usare .sr-only per caption nascosti visivamente ma accessibili
   - Focus outline visibile per navigazione tastiera
   - Per tabelle senza header, usare <th scope="row"> nella prima colonna
   ======================================== */

/* Data Table Wrapper - Container per scroll orizzontale su mobile */
.data-table-wrapper {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    box-sizing: border-box;
}

/* Tabella senza wrapper (quando non serve scroll) */
.data-table:not(.data-table-wrapper *) {
    margin: 2rem 0;
}

/* Wrapper opzionale - può essere omesso se non serve scroll */
.data-table-wrapper+.data-table-wrapper {
    margin-top: 0;
}

/* Data Table - Container principale */
.data-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
    background-color: var(--color-bg-primary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    overflow: hidden;
    box-sizing: border-box;
}

/* Data Table Header */
.data-table__header {
    background-color: var(--color-brand);
}

.data-table__header-cell {
    padding: 1.25rem 1.5rem;
    text-align: center;
    color: var(--color-text-inverse);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    /*font-family: 'Montserrat', sans-serif;*/
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    white-space: nowrap;
}

.data-table__header-cell:last-child {
    border-right: none;
}

/* Data Table Body */
.data-table__body {
    background-color: var(--color-bg-primary);
}

.data-table__row {
    border-bottom: none;
}

.data-table__row:last-child {
    border-bottom: none;
}

.data-table__cell {
    padding: 1.5rem;
    vertical-align: top;
    border-right: 1px solid var(--color-border-primary);
    background-color: var(--color-brand-light);
    text-align: left;
}

.data-table__cell:last-child {
    border-right: none;
}

/* Contenuto normale nelle celle (non solo liste) */
.data-table__cell p {
    margin: 0 0 0.5rem 0;
    line-height: 1.6;
}

.data-table__cell p:last-child {
    margin-bottom: 0;
}

.data-table__cell a {
    color: var(--color-brand);
    text-decoration: none;
    transition: color 0.3s ease;
}

.data-table__cell a:hover,
.data-table__cell a:focus {
    color: var(--color-link-hover);
    text-decoration: underline;
}

/* Data Table List (per liste dentro celle) */
.data-table__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.data-table__list-item {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--color-text-primary);
    font-family: 'Lato', sans-serif;
    font-weight: 400;
}

/* Varianti Data Table */

/* Bordered - Tabella con bordi completi */
.data-table--bordered {
    border: 1px solid var(--color-border-primary);
}

.data-table--bordered .data-table__cell {
    border: 1px solid var(--color-border-primary);
}

.data-table--bordered .data-table__header-cell {
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Striped - Righe alternate */
.data-table--striped .data-table__row:nth-child(even) {
    background-color: var(--color-bg-secondary);
}

.data-table--striped .data-table__row:nth-child(even) .data-table__cell {
    background-color: var(--color-bg-secondary);
}

/* Compact - Padding ridotto */
.data-table--compact .data-table__header-cell {
    padding: 0.75rem 1rem;
    font-size: 0.8125rem;
}

.data-table--compact .data-table__cell {
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
}

/* Hover - Effetto hover sulle righe */
.data-table--hover .data-table__row {
    transition: background-color 0.2s ease;
}

.data-table--hover .data-table__row:hover {
    background-color: var(--color-bg-secondary);
}

.data-table--hover .data-table__row:hover .data-table__cell {
    background-color: var(--color-bg-secondary);
}

/* White Cells - Celle con background bianco */
.data-table--white-cells .data-table__cell {
    background-color: var(--color-bg-primary);
}

.data-table--white-cells.data-table--striped .data-table__row:nth-child(even) .data-table__cell {
    background-color: var(--color-bg-secondary);
}

/* Simple Rows - Stile tabella classico (righe, nessun bordo verticale) */
.data-table--simple .data-table__cell {
    background-color: var(--color-bg-primary);
    border-right: none;
    border-bottom: 1px solid var(--color-border-primary);
}

.data-table--simple .data-table__row:last-child .data-table__cell {
    border-bottom: none;
}

/* No Header - Tabella senza header */
.data-table--no-header .data-table__header {
    display: none;
}

/* Modificatori Celle */

/* Numeric - Allineamento numerico (right) */
.data-table__cell--numeric {
    text-align: right;
    font-variant-numeric: tabular-nums;
}

/* Center - Allineamento centrato */
.data-table__cell--center {
    text-align: center;
}

/* Right - Allineamento a destra */
.data-table__cell--right {
    text-align: right;
}

/* White - Background bianco (override) */
.data-table__cell--white {
    background-color: var(--color-bg-primary) !important;
}

/* Data Table - Responsive */
@media (max-width: 1024px) {
    .data-table {
        width: auto;
        min-width: 800px;
    }

    .data-table--compact {
        min-width: 700px;
    }

    .data-table--simple {
        min-width: 100%;
    }
}

@media (max-width: 768px) {

    .data-table {
        min-width: 700px;
    }

    .data-table--compact {
        min-width: 600px;
    }

    .data-table__header-cell {
        padding: 1rem 1.25rem;
        font-size: 0.8125rem;
    }

    .data-table__cell {
        padding: 1.25rem;
    }

    .data-table--compact .data-table__header-cell {
        padding: 0.625rem 0.875rem;
    }

    .data-table--compact .data-table__cell {
        padding: 0.625rem 0.875rem;
    }

    .data-table__list {
        gap: 0.625rem;
    }

    .data-table__list-item {
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {

    .data-table {
        min-width: 600px;
    }

    .data-table--compact {
        min-width: 500px;
    }

    /* Variante semplice: su mobile niente min-width fisso,
	 la tabella occupa semplicemente il 100% del viewport */
    .data-table--simple {
        min-width: 100%;
    }

    .data-table__header-cell {
        padding: 0.875rem 1rem;
        font-size: 0.75rem;
    }

    .data-table__cell {
        padding: 1rem;
    }

    .data-table--compact .data-table__header-cell {
        padding: 0.5rem 0.75rem;
        font-size: 0.75rem;
    }

    .data-table--compact .data-table__cell {
        padding: 0.5rem 0.75rem;
        font-size: 0.8125rem;
    }

    .data-table__list {
        gap: 0.5rem;
    }

    .data-table__list-item {
        font-size: 0.8125rem;
    }
}

@media (max-width: 480px) {
    .search-results-page {
        padding: 1.5rem 0 2.5rem 0;
    }

    .search-results-title {
        font-size: 1.75rem;
        margin-bottom: 1.25rem;
    }

    .search-form-wrapper {
        margin-bottom: 1.5rem;
    }

    .search-input {
        padding: 0.625rem 0.875rem;
        font-size: 0.875rem;
    }

    .search-button {
        width: 40px;
        height: 40px;
    }

    .search-result-item {
        padding: 1rem 0;
    }

    .pagination {
        gap: 1rem;
    }

    .pagination-button {
        width: 32px;
        height: 32px;
    }

    .pagination-info {
        font-size: 0.875rem;
    }

    .pagination-number {
        min-width: 24px;
        height: 24px;
        padding: 0 0.25rem;
        font-size: 0.8125rem;
    }

    .pagination-pages {
        gap: 0.25rem;
    }

    .pagination-page,
    .pagination-ellipsis {
        min-width: 28px;
        height: 28px;
        font-size: 0.8125rem;
    }
}

/* ========================================
   [COMPONENTE RIUTILIZZABILE] FORM
   ========================================

   Componenti form riutilizzabili per login, contatti, newsletter, ecc.

   CLASSI BASE:
   - .form-container      Container form con max-width
   - .form                Form principale (flex column)
   - .form-group          Gruppo campo (label + input)
   - .form-group--checkbox  Gruppo checkbox (row layout)
   - .form-group--link    Gruppo link (es: "Recupera password")
   - .form-label          Label campo
   - .form-input          Input/textarea (usa stili globali da style.css)
   - .form-link           Link interno form
   - .checkbox-label      Label checkbox
   - .checkbox-input      Input checkbox
   - .checkbox-text       Testo checkbox

   ESEMPIO HTML:
   <div class="form-container">
	 <form class="form" action="#" method="post">
	   <div class="form-group">
		 <label for="email" class="form-label">Email</label>
		 <input type="email" id="email" class="form-input" required>
	   </div>
	   <div class="form-group form-group--checkbox">
		 <label class="checkbox-label">
		   <input type="checkbox" class="checkbox-input">
		   <span class="checkbox-text">Ricordami</span>
		 </label>
	   </div>
	   <button type="submit" class="btn btn--primary">INVIA</button>
	 </form>
   </div>

   NOTE UTILIZZO:
   - form-input usa stili globali da style.css (rounded pill)
   - form-container max-width 480px per form login
   - Responsive: padding e dimensioni si adattano
   ======================================== */

/* Form Container - Container generico per form */
.form-container {
    background-color: #fff;
    padding: 3rem 6rem;
    border-radius: 16px;
    max-width: 480px;
    width: 100%;
    margin: 0 auto;
}

/* Form - Container principale form */
.form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* Form Group - Gruppo campo (label + input) */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.form-group--checkbox {
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
}

.form-group--link {
    align-items: flex-start;
    margin-top: -0.5rem;
}

/* Form Label */
.form-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-brand);
    font-family: 'Lato', sans-serif;
}

/* Form Input - Usa stili globali da style.css, override per form specifici */
.form-input {
    width: 100%;
    padding: 0.875rem 1.25rem;
    border: 1px solid var(--color-brand);
    border-radius: 4px;
    font-size: 1rem;
    font-family: 'Lato', sans-serif;
    color: var(--color-text-primary);
    background-color: var(--color-bg-primary);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
    max-width: 100%;
}

/* Select e input date dentro form-group */
.form-group select,
.form-group input[type="date"] {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.form-input::placeholder {
    color: var(--color-text-secondary);
}

.form-input:focus {
    outline: none;
    border-color: var(--color-brand-dark);
    box-shadow: 0 0 0 3px rgba(0, 44, 95, 0.1);
}

/* Checkbox Components */
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 1rem;
    color: var(--color-brand);
    font-family: 'Lato', sans-serif;
    user-select: none;
}

.checkbox-input {
    width: 18px;
    height: 18px;
    margin: 0;
    cursor: pointer;
    accent-color: var(--color-brand);
    flex-shrink: 0;
}

.checkbox-text {
    line-height: 1.5;
}

/* Form Link - Link interno form (es: "Recupera password") */
.form-link {
    font-size: 1rem;
    color: var(--color-brand);
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: 'Lato', sans-serif;
}

.form-link:hover,
.form-link:focus {
    color: var(--color-brand-dark);
    text-decoration: underline;
}

.form-link:focus-visible {
    outline: 2px solid var(--color-brand);
    outline-offset: 2px;
    border-radius: 2px;
}

/* ========================================
   [COMPONENTE RIUTILIZZABILE] WELCOME CARD
   ========================================

   Card di benvenuto per area clienti/loggata. Centrata su hero con background.

   CLASSI BASE:
   - .welcome-card         Container card (bianco, arrotondato, shadow)
   - .welcome-card__kicker  Kicker/tag sopra (es: "AREA CLIENTI")
   - .welcome-card__title   Titolo principale (es: "Benvenuto, Nome!")
   - .welcome-card__actions Container bottoni azione

   ESEMPIO HTML:
   <div class="welcome-card">
	 <span class="welcome-card__kicker">AREA CLIENTI</span>
	 <h1 class="welcome-card__title">Benvenuto, Luca Giglio!</h1>
	 <div class="welcome-card__actions">
	   <a href="#" class="btn btn--primary">VAI ALL'AREA CLIENTI</a>
	   <a href="#" class="btn btn--outline">SPECIAL SITUATIONS</a>
	 </div>
   </div>

   NOTE UTILIZZO:
   - Usare su hero con background image
   - Card centrata verticalmente e orizzontalmente
   - Bottoni stack verticale con gap
   - Responsive: padding e dimensioni si adattano
   ======================================== */

.welcome-card {
    background-color: #fff;
    border-radius: 16px;
    padding: 3rem 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.welcome-card__kicker {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-brand);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    font-family: 'Lato', sans-serif;
}

.welcome-card__title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-brand);
    margin: 0 0 2rem;
    line-height: 1.2;
    /*font-family: 'Montserrat', sans-serif;*/
}

.welcome-card__actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
}

.welcome-card__actions .btn {
    width: 100%;
    justify-content: center;
}

/* Hero con Welcome Card - Variante specifica per centrare la card */
.hero--welcome-card .hero-content {
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

/* Responsive Welcome Card */
@media (max-width: 768px) {
    .login-page .container {
        width: 100%;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .welcome-card {
        padding: 2.5rem 2rem;
        max-width: 100%;
        margin: 0;
        width: 100%;
    }

    .welcome-card__kicker {
        font-size: 0.8125rem;
        margin-bottom: 0.875rem;
    }

    .welcome-card__title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .welcome-card__actions {
        gap: 0.875rem;
    }
}

@media (max-width: 480px) {
    .login-page .container {
        padding: 0;
    }

    .welcome-card {
        padding: 2rem 1.5rem;
        margin: 0;
        width: 100%;
    }

    .welcome-card__kicker {
        font-size: 0.75rem;
        margin-bottom: 0.75rem;
    }

    .welcome-card__title {
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }
}

/* Login Page - Layout specifico (usa componenti form generici) */
.login-page {
    padding: 4rem 0 6rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    width: 100%;
}

.btn--login {
    width: 100%;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Form & Login Page - Responsive */
@media (max-width: 768px) {
    .login-page {
        padding: 2rem 1rem;
        min-height: calc(100vh - 200px);
    }

    .login-page .container {
        width: 100%;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .form-container {
        max-width: 100%;
        padding: 2.5rem 2rem;
        margin: 0;
    }

    .form {
        gap: 1.25rem;
    }

    .form-label {
        font-size: 0.9375rem;
    }

    .form-input {
        padding: 0.75rem 1rem;
        font-size: 0.9375rem;
    }

    .form-group select,
    .form-group input[type="date"] {
        padding: 0.75rem 1rem;
        font-size: 0.9375rem;
    }

    .checkbox-label {
        font-size: 0.9375rem;
    }

    .form-link {
        font-size: 0.9375rem;
    }

    .btn--login {
        padding: 0.75rem 1.5rem;
        font-size: 0.9375rem;
    }
}

@media (max-width: 480px) {
    .login-page {
        padding: 1.5rem 1rem;
        min-height: calc(100vh - 150px);
    }

    .login-page .container {
        padding: 0;
    }

    .form-container {
        padding: 2rem 1.5rem;
    }

    .form {
        gap: 1rem;
    }

    .form-group select,
    .form-group input[type="date"] {
        padding: 0.625rem 0.875rem;
        font-size: 0.875rem;
    }

    .form-group--checkbox {
        gap: 0.625rem;
    }

    .checkbox-input {
        width: 16px;
        height: 16px;
    }
}

/* ========================================
   BOARD MEMBERS GRID
   ======================================== */

.board-members-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 1rem;
}

.board-member-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background-color: var(--color-bg-primary);
    border: 1px solid var(--color-border-primary);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.board-member-card__link-full {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    height: 100%;
    position: relative;
}

.board-member-card:hover {
    box-shadow: 0 8px 24px rgba(0, 44, 95, 0.15);
    transform: translateY(-4px);
    border-color: var(--color-brand);
}

.board-member-card__image {
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background-color: #f5f5f5;
    position: relative;
}

.board-member-card__image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 44, 95, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.board-member-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.board-member-card:hover .board-member-card__image img {
    transform: scale(1.05);
}

.board-member-card:hover .board-member-card__image::after {
    opacity: 1;
}

.board-member-card__content {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.board-member-card__name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-brand);
    margin: 0;
    /*font-family: 'Montserrat', sans-serif;*/
    transition: color 0.3s ease;
}

.board-member-card:hover .board-member-card__name {
    color: var(--color-brand-dark);
}

.board-member-card__role {
    font-size: 0.875rem;
    color: var(--color-accent);
    margin: 0;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.board-member-card:hover .board-member-card__role {
    color: var(--color-brand);
}

.board-member-card__arrow {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    color: var(--color-brand);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
    pointer-events: none;
    box-shadow: 0 2px 8px rgba(0, 44, 95, 0.1);
}

.board-member-card:hover .board-member-card__arrow {
    background-color: var(--color-brand);
    color: var(--color-text-inverse);
    transform: scale(1.15) translateX(2px);
    box-shadow: 0 4px 12px rgba(0, 44, 95, 0.3);
}

.board-member-card__link-full:focus-visible {
    outline: 3px solid rgba(0, 44, 95, 0.5);
    outline-offset: 2px;
    border-radius: 12px;
}

/* Board Members Grid - Responsive */
@media (max-width: 1024px) {
    .board-members-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .section-title--underlined {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    .board-members-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .board-member-card__content {
        padding: 1.25rem;
    }

    .section-title--underlined {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .breadcrumbs__list {
        font-size: 0.8125rem;
    }
}

@media (max-width: 480px) {
    .board-members-grid {
        gap: 1.25rem;
    }

    .board-member-card__name {
        font-size: 1rem;
    }

    .board-member-card__role {
        font-size: 0.875rem;
    }

    .board-member-card__arrow {
        width: 28px;
        height: 28px;
        top: 0.75rem;
        right: 0.75rem;
    }
}

/* ========================================
   PERSON DETAIL PAGE
   ======================================== */

.person-detail-page {
    padding: 2rem 0 4rem 0;
}

.person-detail-header {
    margin-bottom: 2rem;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-brand);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    transition: color 0.3s ease;
    margin-bottom: 1rem;
}

.back-link:hover,
.back-link:focus {
    color: var(--color-brand-dark);
}

.back-link:focus-visible {
    outline: 2px solid var(--color-brand);
    outline-offset: 2px;
    border-radius: 2px;
}

.back-link svg {
    width: 16px;
    height: 16px;
}

.back-link-divider {
    width: 100%;
    height: 1px;
    background-color: var(--color-brand);
    margin-top: 0.5rem;
}

.person-detail-content {
    max-width: 1200px;
    margin: 0 auto;
}

.person-detail-main {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: flex-start;
}

.person-detail-image {
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 12px;
    background-color: #f5f5f5;
}

.person-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.person-detail-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.person-detail-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-brand);
    margin: 0;
    /*font-family: 'Montserrat', sans-serif;*/
    line-height: 1.2;
}

.person-detail-title {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    margin: 0;
    font-weight: 400;
}

.person-detail-bio {
    margin-top: 1.5rem;
}

.person-detail-bio p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text-primary);
    margin: 0 0 1.5rem 0;
}

.person-detail-bio p:last-child {
    margin-bottom: 0;
}

/* Person Detail Page - Responsive */
@media (max-width: 1024px) {
    .person-detail-main {
        grid-template-columns: 250px 1fr;
        gap: 2.5rem;
    }

    .person-detail-name {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .person-detail-page {
        padding: 1.5rem 0 3rem 0;
    }

    .person-detail-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .person-detail-image {
        max-width: 300px;
        margin: 0 auto;
    }

    .person-detail-name {
        font-size: 1.75rem;
        text-align: center;
    }

    .person-detail-title {
        text-align: center;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .person-detail-page {
        padding: 1rem 0 2rem 0;
    }

    .person-detail-header {
        margin-bottom: 1.5rem;
    }

    .person-detail-name {
        font-size: 1.5rem;
    }

    .person-detail-title {
        font-size: 0.9375rem;
    }

    .person-detail-bio p {
        font-size: 0.9375rem;
        margin-bottom: 1.25rem;
    }
}

/* ========================================
   [COMPONENTE RIUTILIZZABILE] SECTION HEADER
   ========================================

   Header per sezioni di contenuto con kicker e titolo.
   Utilizzabile in qualsiasi pagina per introdurre una sezione.

   CLASSI BASE:
   - .section-header         Container header
   - .section-header__kicker Kicker/tag sopra (es: "LATEST NEWS", "AREA CLIENTI")
   - .section-header__title   Titolo principale (H1 o H2)

   ESEMPIO HTML:
   <div class="section-header">
	 <span class="section-header__kicker">LATEST NEWS</span>
	 <h1 class="section-header__title">Latest Published News & Research</h1>
   </div>

   NOTE UTILIZZO:
   - Kicker uppercase, blu brand
   - Titolo grande, blu brand
   - Utilizzabile in qualsiasi contesto (area clienti, sezioni informative, ecc.)
   - Responsive: dimensioni si adattano su mobile
   ======================================== */

.section-header {
    margin-bottom: 2.5rem;
}

.section-header__kicker {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-brand);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
    font-family: 'Lato', sans-serif;
}

.section-header__title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-brand);
    margin: 0;
    line-height: 1.2;
    /*font-family: 'Montserrat', sans-serif;*/
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Responsive Section Header */
@media (max-width: 768px) {
    .section-header {
        margin-bottom: 2rem;
    }

    .section-header__kicker {
        font-size: 0.8125rem;
        margin-bottom: 0.625rem;
    }

    .section-header__title {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .section-header__title {
        font-size: 1.5rem;
    }
}

/* ========================================
   [COMPONENTE RIUTILIZZABILE] PDF VIEWER
   ========================================

   Viewer embedded per visualizzare PDF direttamente nella pagina.

   CLASSI BASE:
   - .pdf-viewer         Container wrapper
   - .pdf-viewer__iframe  Iframe per visualizzare il PDF

   ESEMPIO HTML:
   <div class="pdf-viewer">
	 <iframe
	   class="pdf-viewer__iframe"
	   src="documento.pdf"
	   title="Visualizzatore PDF"
	   aria-label="Visualizzatore PDF - Disclaimer"
	 ></iframe>
   </div>

   NOTE UTILIZZO:
   - Usa iframe nativo del browser per visualizzare PDF
   - Responsive: si adatta automaticamente
   - Altezza minima consigliata: 600px
   - Supporta tutti i browser moderni

   NOTE ACCESSIBILITÀ:
   - Usare title e aria-label descrittivi
   - Fornire link alternativo per download se necessario
   ======================================== */

.pdf-viewer {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    background-color: #f5f5f5;
}

.pdf-viewer__iframe {
    width: 100%;
    min-height: 80vh;
    height: 80vh;
    border: none;
    display: block;
}

/* Responsive PDF Viewer */
@media (max-width: 768px) {
    .pdf-viewer__iframe {
        min-height: 500px;
        height: 70vh;
    }
}

@media (max-width: 480px) {
    .pdf-viewer__iframe {
        min-height: 400px;
        height: 60vh;
    }
}

.ul-naked {
    list-style: none;
    padding: 0;
    margin: 0;
}