/* =============================================================================
   Page Escolas — Estilos Específicos
   Rede de Bibliotecas de Barcelos
   ============================================================================= */

/* Este arquivo contém apenas estilos específicos da página de escolas.
   Os estilos compartilhados (nl-card, nl-grid, etc.) estão em comum.css */

/* ─── Seção do Mapa ───────────────────────────────────────────────────────── */

.escolas-map-section {
    margin-bottom: 3rem;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

#escolas-map {
    height: 500px;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 1rem;
}

/* ─── Informações de Contacto dentro dos Cards ────────────────────────────── */

.nl-card .ns-section {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e0e0e0;
}

.nl-card .ns-section > div {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
    margin-bottom: 0.75rem;
    flex-direction: row;
}

.nl-card .ns-section svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    color: #ED1C24;
}

.nl-card .ns-section a {
    color: #333;
    text-decoration: none;
}

.nl-card .ns-section a:hover {
    color: #C4161C;
    text-decoration: underline;
}

.nl-card .ns-section span {
    flex: 1;
    word-break: break-word;
}

.nl-card .ns-section > div > span:first-of-type {
    flex: 1;
    margin-right: 0.25rem;
    color: #333;
}

/* ─── Botão "Ver no mapa" ──────────────────────────────────────────────────── */

.nl-card__link[data-lat] {
    margin-top: 1rem;
    padding: 0.75rem;
    background: #ED1C24;
    color: white !important;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    display: block;
    transition: background 0.2s;
}

.nl-card__link[data-lat]:hover {
    background: #C4161C;
    color: white !important;
}

/* ─── Responsive ──────────────────────────────────────────────────────────── */

@media (max-width: 768px) {
    .escolas-map-section {
        padding: 1.5rem;
    }
    
    #escolas-map {
        height: 400px;
    }
}
