/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Mar 11 2026 | 20:31:11 */
.tag-carousel-wrapper {
    position: relative;
    width: 100%;
    margin: 20px auto;
    padding: 0 55px; 
}

.tag-carousel-container {
    display: flex;
    overflow-x: hidden;
    gap: 15px;
    padding: 30px 0;
    width: 100%;
}

.tag-card {
    flex: 0 0 calc(20% - 12px);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

/* EFFETTI HOVER */
.tag-card:hover .tag-img-wrapper {
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    border-color: #ddd;
}
.tag-card:hover .tag-img-wrapper img {
    transform: scale(1.1);
}
.tag-card:hover .tag-title {
    transform: translateY(-3px);
}

.tag-img-wrapper {
    width: 150px; 
    height: 150px; 
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #eee;
    margin-bottom: 15px;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.tag-img-wrapper img {
    width: 100%; height: 100%;
    object-fit: contain;
    padding: 12px;
    transition: transform 0.3s ease;
}

.tag-title {
    font-size: 14px; font-weight: bold; color: #222;
    text-align: center; text-transform: uppercase;
    transition: transform 0.3s ease;
}

/* FRECCE SEMPRE VISIBILI (Anche su Mobile) */
.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: transparent !important;
    border: none !important;
    width: 45px;
    height: 45px;
    cursor: pointer;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none !important;
    transition: background-color 0.3s;
    border-radius: 50%;
    box-shadow: none !important;
    -webkit-tap-highlight-color: transparent;
}

.nav-arrow:hover { 
    background-color: #F1F2F5 !important; 
}

.nav-arrow img {
    width: 28px;
    height: auto;
}

.prev { left: 0px; }
.next { right: 0px; }

/* --- MODIFICHE SPECIFICHE PER MOBILE --- */
@media (max-width: 768px) {
    .tag-carousel-wrapper {
        /* Aumentiamo il padding laterale per spingere i loghi verso il centro */
        padding: 0 60px; 
    }
    
    .tag-carousel-container {
        /* Riduciamo il gap tra i due loghi per avvicinarli tra loro */
        gap: 10px; 
        justify-content: center;
    }

    .tag-card { 
        /* Regoliamo la larghezza per i 2 loghi centrali */
        flex: 0 0 calc(50% - 5px); 
    }

    .tag-img-wrapper { 
        width: 110px; 
        height: 110px; 
    }

    /* FRECCE MOBILE PIÙ GRANDI */
    .nav-arrow {
        width: 50px !important; /* Più larghe */
        height: 50px !important; /* Più alte */
        display: flex !important;
        background-color: rgba(255,255,255,0.9) !important; /* Sfondo più solido per contrasto */
        box-shadow: 0 4px 10px rgba(0,0,0,0.15) !important; /* Ombra per farle staccare dal fondo */
    }

    .nav-arrow img {
        width: 24px !important; /* Icona della freccia più grande */
    }

    /* Posizionamento frecce sui bordi esterni del nuovo padding */
    .prev { left: 5px; } 
    .next { right: 5px; }
}