﻿.ss-editor-zone {
    margin-top: 30px;
    line-height: 1.6;
}

.map-container {
    width: 100%;
    max-width: 900px;
    margin: 20px auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.gym-list {
    max-width: 900px;
    margin: 30px auto;
    padding: 0 15px;
    list-style: none;
}

.gym-list li {
    background: #f7f7f7;
    padding: 12px 15px;
    margin-bottom: 10px;
    border-left: 4px solid #0077cc;
    border-radius: 4px;
    font-size: 1.05rem;
}

.gym-list li strong {
    color: #003366;
}


#agv-map {
    width: 100%;
    height: 500px;
    border-radius: 8px;
    margin: 20px 0;
}

/* Legend + colored dots */
.map-legend {
    max-width: 900px;
    margin: 20px auto;
    font-size: 0.95rem;
    color: #333;
    line-height: 1.6;
}

.legend-dot {
    display: inline-block;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    margin-right: 8px;
    vertical-align: middle;
}

/* Colors */
.legend-dot.blue { background: #1E90FF; }
.legend-dot.red { background: #FF4500; }
.legend-dot.green { background: #32CD32; }
.legend-dot.orange { background: #FFA500; }
.legend-dot.violet { background: #8A2BE2; }
.legend-dot.yellow { background: #FFD700; }
.legend-dot.gold { background: #DAA520; }







.partners-intro {
    max-width: 850px;
    margin: 0 auto 50px auto;
    padding: 20px 30px;
    font-size: 1.2rem;
    line-height: 1.7;
    text-align: center;
    color: #333;
    background: #fafafa;
    border-left: 4px solid #cc0000; /* your association red */
    border-radius: 6px;
}
.partners-separator {
    width: 80px;
    height: 4px;
    background: #cc0000;
    margin: 40px auto 30px auto;
    border-radius: 2px;
}

.sponsors-section {
    margin-top: 40px;
}

/*sponsors*/

.sponsors-zone {
    padding: 40px 20px;
    background: #fff;
    text-align: center;
}

.sponsors-title {
    font-size: 28px;
    margin-bottom: 30px;
    color: #333;
}

.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.sponsor-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    background: #f8f8f8;
    border-radius: 10px;
    text-decoration: none;
    color: #333;
    transition: transform .2s, box-shadow .2s;
}

/*
.sponsor-card:hover {
}
*/

.sponsor-card:hover .sponsor-logo {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    filter: grayscale(0%);
}

.sponsor-logo {
    width: 200px;
    height: 125px;
    background-image: url('/ss-img/sponsors/sponsors_sprite.jpg');
    background-size: 1500px 125px;
    background-repeat: no-repeat;
    margin-bottom: 15px;
    filter: grayscale(100%);
    transition: filter .3s ease;
}




.sponsor-info h3 {
    margin: 0;
    font-size: 18px;
    font-weight: bold;
}

.sponsor-info p {
    margin: 5px 0 0;
    font-size: 14px;
    color: #666;
}
