.gg-wall{padding:48px 20px;background:linear-gradient(145deg,#082d22,#0d4b39);color:#fff;border-radius:24px}.gg-wall__head{text-align:center;max-width:760px;margin:0 auto 30px}.gg-wall__eyebrow{font-weight:800;text-transform:uppercase;letter-spacing:.14em;color:#ffd76a}.gg-wall h2{color:#fff;font-size:clamp(2rem,5vw,3.5rem);margin:.2em 0}.gg-wall__list{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:18px;max-width:1180px;margin:auto}.gg-wall__list--carousel{display:flex;overflow-x:auto;scroll-snap-type:x mandatory;padding-bottom:12px}.gg-wall__list--carousel .gg-champion{min-width:min(82vw,330px);scroll-snap-align:start}.gg-champion{display:flex;gap:15px;background:rgba(255,255,255,.1);border:1px solid rgba(255,255,255,.18);border-radius:18px;padding:18px;box-shadow:0 12px 35px rgba(0,0,0,.18)}.gg-champion__avatar{width:72px;height:72px;flex:0 0 72px;border-radius:50%;display:grid;place-items:center;background:#ffd76a;color:#17382d;font-size:1.5rem;font-weight:900;overflow:hidden;border:3px solid rgba(255,255,255,.8)}.gg-champion__avatar img{width:100%;height:100%;object-fit:cover}.gg-champion__competition{font-size:.76rem;text-transform:uppercase;letter-spacing:.08em;color:#b9e8d7}.gg-champion h3{color:#fff;margin:4px 0;font-size:1.25rem}.gg-champion strong{color:#ffd76a}.gg-champion blockquote{margin:10px 0 0;font-size:.92rem;opacity:.9;border:0;padding:0}.gg-wall__empty{text-align:center;padding:24px;background:rgba(255,255,255,.08);border-radius:14px}@media(max-width:480px){.gg-wall{padding:34px 14px;border-radius:16px}.gg-champion{padding:14px}.gg-champion__avatar{width:60px;height:60px;flex-basis:60px}}

/* Versione 1.1.0: dati storici, logo competizione e avatar preset. */
.gg-champion__competition-row {
    display: flex;
    gap: 9px;
    align-items: center;
    margin-bottom: 5px;
}

.gg-champion__competition-logo {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    display: grid;
    place-items: center;
    padding: 4px;
    overflow: hidden;
    background: #fff;
    border-radius: 9px;
}

.gg-champion__competition-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.gg-champion__competition {
    display: block;
    color: #b9e8d7;
    text-decoration: none;
}

.gg-champion__competition:hover,
.gg-champion__competition:focus {
    color: #fff;
    text-decoration: underline;
}

.gg-champion__competition-type {
    display: block;
    margin-top: 2px;
    color: rgba(255, 255, 255, .72);
    font-size: .7rem;
}

.gg-champion__avatar--preset {
    background: linear-gradient(145deg, #ffd76a, #f3b936);
}

.gg-avatar-preset {
    display: inline-grid;
    place-items: center;
    width: 100%;
    height: 100%;
    font-size: 2rem;
    line-height: 1;
}

.gg-avatar-preset--star,
.gg-avatar-preset--crown {
    font-family: Georgia, serif;
}

/* Griglia responsive del Muro dei Campioni */
.gg-wall__list--grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

@media (max-width: 991px) {
    .gg-wall__list--grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .gg-wall__list--grid {
        grid-template-columns: 1fr;
    }
}