/* Wrapper 2 map chi nhánh */
.gg-map-branches {
    display: flex;
    gap: 16px;                 /* khoảng cách giữa 2 map */
    width: 100%;
    margin-top: 32px;
}

/* Mỗi map chiếm 1/2 */
.gg-map-item {
    flex: 1 1 50%;
    box-sizing: border-box;
}

/* Iframe */
.gg-map-item iframe {
    width: 100%;
    height: 300px;
    border: 0;
    display: block;
}

/* Label */
.map-label {
    margin-top: 8px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
}

/* Mobile */
@media (max-width: 768px) {
    .gg-map-branches {
        flex-direction: column;
        gap: 16px;
    }

    .gg-map-item iframe {
        height: 260px;
    }
}
