﻿
    .border-panel {
      width: 100%;
      max-width: 1500px;
      background: #ffffff;
      border-radius: 16px;
      box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
      overflow: hidden;
    }

    .border-panel__header {
      background: #003b73;
      color: #ffffff;
      font-weight: 700;
      font-size: 1.6rem;
      padding: 16px 24px;
    }

    .border-panel__body {
      padding: 24px;
    }

    .city-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 20px 24px;
    }

    /* ENLACES COMO TARJETAS */
    .city-link {
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;

      background: #ffffff;
      border-radius: 14px;
      border: 1px solid #e5e7eb;
      padding: 22px 16px;

      font-size: 1.2rem;
      font-weight: 500;
      color: #111827;
      text-decoration: none;

      box-shadow: 0 6px 10px rgba(15, 23, 42, 0.08);
      cursor: pointer;
      transition:
        transform 0.12s ease,
        box-shadow 0.12s ease,
        background-color 0.12s ease,
        color 0.12s ease,
        border-color 0.12s ease;
    }

    .city-link:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 18px rgba(15, 23, 42, 0.15);
      background-color: #e5f0ff;   /* fondo cambia */
      color: #003b73;              /* texto cambia */
      border-color: #b0c6e6;
    }



    /* RESPONSIVE */
    @media (max-width: 1200px) {
      .city-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }
    }

    @media (max-width: 900px) {
      .city-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 600px) {

      .border-panel__header {
        font-size: 1.3rem;
        padding: 14px 16px;
      }

      .border-panel__body {
        padding: 16px;
      }

      .city-grid {
        grid-template-columns: 1fr;
        gap: 14px;
      }

      .city-link {
        font-size: 1.05rem;
        padding: 18px 14px;
      }
    }
