
main.section-elegante {
    margin-top: 130px;    
    margin-bottom: 80px;  
    padding-bottom: 40px; 
}

/* Ottimizzazione per Mobile */
@media (max-width: 768px) {
    main.section-elegante {
        margin-top: 130px;
        margin-bottom: 60px;
    }
}
     
.title-header {
    text-align: left; /* O center se preferisci tutto al centro */
    margin-bottom: 40px;
}

.tagline {
    display: block;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: #888;
    margin-bottom: 5px;
}

.main-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    text-transform: uppercase;
    border-bottom: 5px solid #000;
    display: inline-block;
    line-height: 1;
    padding-bottom: 10px;
}
.section-elegante { padding: 40px 20px; max-width: 900px; margin: 0 auto; line-height: 1.8; color: #333; }
        .storia-content h2 { font-family: 'Montserrat', sans-serif; font-size: 2.5rem; text-transform: uppercase; border-bottom: 4px solid #000; display: inline-block; margin-bottom: 30px; padding-bottom: 5px; color: #000; }
        .storia-content h3 { font-family: 'Montserrat', sans-serif; text-transform: uppercase; color: #000; margin-top: 25px; }
        
    .press-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.press-card {
    background: #fff;
    border: 1px solid #eee;
    padding: 30px;
    border-radius: 0; /* Stile squadrato alla Montero */
    border-left: 5px solid #000;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.press-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.press-item {
    background: #fff;
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease;
}

.press-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9; /* Tutte le anteprime avranno la stessa altezza */
    background: #000;
}

.press-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
    transition: 0.5s;
}

/* Effetto al passaggio del mouse sulla foto */
.press-item:hover img {
    transform: scale(1.1);
    opacity: 0.4;
}

.press-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: 0.3s;
}

.press-item:hover .press-overlay { opacity: 1; }

.view-pdf {
    color: #fff;
    border: 2px solid #fff;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.press-content { padding: 25px; }

.press-date {
    display: block;
    font-size: 0.75rem;
    color: #888;
    margin-bottom: 5px;
}

.press-source {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 1px;
    color: #000;
}
.btn-read {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    color: #000;
    text-decoration: none;
    border-bottom: 2px solid #000;
    align-self: flex-start;
}

.btn-read:hover {
    color: #555;
    border-color: #555;
}
/* Titoli Sezioni */
.sub-section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    text-transform: uppercase;
    margin: 60px 0 30px;
    border-left: 8px solid #000;
    padding-left: 15px;
}

/* Separatore */
.separator-bianconero {
    border: 0;
    height: 2px;
    background: #eee;
    margin: 80px 0;
}

/* Griglia Video */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.video-card {
    background: #f9f9f9;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.video-card:hover {
    transform: translateY(-10px);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 8px; /* Juventus Style: angoli leggermente smussati o netti */
}

.video-container iframe, 
.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-info {
    padding: 20px;
}

.video-info h4 {
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.video-info p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .video-grid { grid-template-columns: 1fr; }
}
