/* Contenedor de la ubicación */
.location-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Encabezado con la ciudad */
.location-header {
    font-size: 24px;
    font-weight: 900;
    display: flex;
    font-weight: bold;
    align-items: center;
    gap: 0.5rem;
    color: var(--cb-text-color);
}
/* Estilos para cada oficina */
.office {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Nombre de la oficina */
.office .nombre {
    font-weight: bold;
}

/* Dirección y detalles */
.office .descripcion_secundaria,
.office .descripcion_principal{
    font-size: 16px;
    color: var(--cb-text-color);
}
.office .nombre {
    font-size: 20px;
    color: var(--cb-text-color);
}
.office .descripcion_secundaria p,
.office .descripcion_principal p{
    margin: 0;
}
/* Mapa responsivo */
.office iframe {
    width: 100%;
    height: 200px;
    border-radius: var(--cb-border-radius);
}
.divider {
    width: 90%;
    height: 1px;
    background: linear-gradient(to right, #ddd, #bbb, #ddd);
    margin: 5px auto;
    border-radius: 1px;
}
