.area-map-wrapper-788aeeb4 {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
}

.area-tabs-788aeeb4 {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.area-chip-788aeeb4 {
    padding: 10px 20px;
    background-color: #f1f1f1;
    color: #333;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    user-select: none;
}

.area-chip-788aeeb4.active,
.area-chip-788aeeb4:hover {
    background-color: #000;
    color: #fff;
}

.area-panels-788aeeb4 {
    position: relative;
    width: 100%;
}

.area-panel-788aeeb4 {
    display: none;
    gap: 30px;
    width: 100%;
}

.area-panel-788aeeb4.active {
    display: flex;
    animation: fadeIn788aeeb4 0.4s ease-in-out;
}

.area-map-container-788aeeb4,
.area-text-container-788aeeb4 {
    flex: 1;
    min-width: 0; /* Prevents flex items from overflowing */
}

.area-map-container-788aeeb4 iframe {
    width: 100%;
    height: 100%;
    min-height: 300px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.area-text-container-788aeeb4 {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@keyframes fadeIn788aeeb4 {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Force stacked layout on smaller screens if they need to wrap */
@media (max-width: 767px) {
    .area-panel-788aeeb4 {
        flex-direction: column !important;
    }
}