a{
    text-decoration: none;
}
.sponsor-box {
    width: 93%;
    margin: 25px auto;
    display: flex;
    align-items: center;
    flex-direction: column;   /* 🔥 cambia layout */
    text-align: center;
    gap: 40px;
    background: #f8f8f8;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    margin-top: 0px;
}

/* LOGO */
.sponsorlogo {
    text-align: center;
    margin: 0;
}

.sponsorlogo img {
    width: 500px;   
    max-width: 100%;
    height: auto;
    transition: transform 0.3s;
    /* border: 1px solid black; */
}

.sponsor-logo img:hover {
    transform: scale(1.05);
}

/* CONTENUTO */
.sponsor-content {
    margin-top: 10px;
    flex: 1;
    font-size: 1.15rem;     /* 🔹 aumenta dimensione generale */
    line-height: 1.7;       /* 🔹 più leggibile */
    text-align: justify;    /* 🔹 testo giustificato */
}

.sponsor-content h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #6D0D1B; /* colore Veloce */
}

.sponsor-desc {
    font-weight: 500;
    font-size: 1.2rem;
}

/* BOTTONE */
.sponsor-btn {
    display: block;

    padding: 10px 20px;
    background: #6D0D1B;
    color: white;
    border-radius: 25px;
    text-decoration: none;
    transition: 0.3s;
    width: fit-content;    /* 🔹 grande quanto il contenuto */
    margin: 20px auto 0;   /* 🔹 centrato */
    margin-top: 5px;
}

.sponsor-btn:hover {
    background: #4e0913;
}
.intro-sponsor {
    width: 93%;
    margin: 30px auto 10px;
    margin-top: 0px;
    font-size: 1.5rem;
    line-height: 1.7;
    text-align: justify;
    font-family: 'Oswald', sans-serif;
}

.intro-sponsor strong {
    color: #6D0D1B;
}
@media(max-width: 768px){
    .sponsor-box {
        flex-direction: column;
        text-align: center;
        width: 95%;
        gap: 20px;
    }

    .sponsor-logo img {
        width: 140px;
    }
    .sponsor-content {
        text-align: left;   /* 🔹 più pulito su mobile */
        font-size: 1.05rem;
    }
    .intro-sponsor {
        width: 95%;
        font-size: 1.05rem;
        text-align: left;
    }
}
