/* ═══════════════════════════════════════════════════
   [gas_ecoles] — Shortcode frontend
   ═══════════════════════════════════════════════════ */

.gas-ecoles-wrapper {
    margin: 24px 0;
}

/* ─── Section partenaires en haut ──────────── */

.gas-ecoles-partenaires {
    margin-bottom: 24px;
}

.gas-ecoles-partenaires .gas-ecoles-item--partenaire {
    border-left: 3px solid #f59e0b;
    background: linear-gradient(135deg, #fffbeb 0%, #fff 40%);
    margin-bottom: 12px;
}

.gas-ecoles-partenaires .gas-ecoles-item--partenaire:last-child {
    margin-bottom: 0;
}

/* Mode evidence : carte plus grande, logo plus gros */
.gas-ecoles-item--evidence {
    padding: 20px 24px;
    border-left-width: 4px;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(245, 158, 11, 0.12);
}

.gas-ecoles-item--evidence:hover {
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.18);
}

.gas-ecoles-item__logo--lg {
    width: 72px !important;
    height: 72px !important;
    border-radius: 8px !important;
}

.gas-ecoles-item__title--lg {
    font-size: 18px !important;
    margin-bottom: 4px !important;
}

.gas-ecoles-item__site-link {
    display: inline-block;
    margin-top: 8px;
    font-size: 13px;
    font-weight: 500;
    color: #2563eb;
    text-decoration: none;
    transition: color 0.15s ease;
}

.gas-ecoles-item__site-link:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

/* ─── Grille colonnes ──────────────────────── */

.gas-ecoles-grid {
    display: grid;
    gap: 12px;
}

.gas-ecoles-grid--col-1 { grid-template-columns: 1fr; }
.gas-ecoles-grid--col-2 { grid-template-columns: 1fr 1fr; }
.gas-ecoles-grid--col-3 { grid-template-columns: 1fr 1fr 1fr; }
.gas-ecoles-grid--col-4 { grid-template-columns: 1fr 1fr 1fr 1fr; }

@media (max-width: 768px) {
    .gas-ecoles-grid--col-2,
    .gas-ecoles-grid--col-3,
    .gas-ecoles-grid--col-4 {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .gas-ecoles-grid--col-3,
    .gas-ecoles-grid--col-4 {
        grid-template-columns: 1fr 1fr;
    }
}

/* ─── Item ─────────────────────────────────── */

.gas-ecoles-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 14px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.gas-ecoles-item:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border-color: #cbd5e1;
}

/* ─── Logo ─────────────────────────────────── */

.gas-ecoles-item__logo {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gas-ecoles-item__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ─── Content ──────────────────────────────── */

.gas-ecoles-item__content {
    flex: 1;
    min-width: 0;
}

.gas-ecoles-item__title {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.3;
}

.gas-ecoles-item__title a {
    color: #1e293b;
    text-decoration: none;
    transition: color 0.15s ease;
}

.gas-ecoles-item__title a:hover {
    color: #2563eb;
    text-decoration: underline;
}

/* ─── Meta ─────────────────────────────────── */

.gas-ecoles-item__meta {
    margin: 2px 0 0 0;
    font-size: 11px;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    line-height: 1.4;
}

.gas-ecoles-item__badge-partenaire {
    display: inline-block;
    padding: 0 5px;
    background: #fef3c7;
    color: #92400e;
    border-radius: 10px;
    font-size: 10px;
    font-weight: 600;
}

.gas-ecoles-item__badge-annexe {
    display: inline-block;
    padding: 0 5px;
    background: #e0f2fe;
    color: #0369a1;
    border-radius: 10px;
    font-size: 10px;
    font-weight: 600;
}

/* ─── Description ──────────────────────────── */

.gas-ecoles-item__desc {
    margin: 4px 0 0 0;
    font-size: 12px;
    color: #475569;
    line-height: 1.4;
}

/* ─── Empty ────────────────────────────────── */

.gas-ecoles-empty {
    text-align: center;
    padding: 32px 16px;
    color: #94a3b8;
    font-style: italic;
}