/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */

/* --- Styling for the main content wrapper inside the popup --- */
.city-content-wrapper {
    display: flex; /* Enable Flexbox for layout */
    flex-wrap: wrap; /* Allow wrapping to a single column on small screens */
    width: 100%; /* Ensure it takes full width of the popup content area */
    gap: 20px; /* Add some space between the columns */
	align-items:center;
}

/* --- Desktop/Tablet (Two-Column Layout) --- */
/* This is the default style for screens large enough to support the layout */
.location-image {
    /* Left column: 40% width */
    flex: 0 0 46%;
    /* Max width prevents the image from becoming too large */
    max-width: 46%;
}

.location-list {
    /* Right column: 60% width */
    flex: 0 0 50%;
    /* Max width prevents the list from becoming too large */
    max-width: 50%;
}

.city-content-wrapper .location-list ul li a{
	font-weight: 500;
    line-height: 1.8;
}

/* Ensure the image is responsive and fits its container */
.location-image img {
    width: 100%;
    height: auto;
    display: block; /* Important for preventing extra space below the image */
}

/* --- Mobile Responsiveness (Single-Column Layout) --- */
@media (max-width: 768px) {
    /* Use 768px or another breakpoint that fits your design */

    .location-image,
    .location-list {
        /* On small screens, make both columns take 100% width */
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 10px; /* Add space between the stacked elements */
    }

    /* You might want to remove the bottom margin from the list on mobile */
    .location-list {
        margin-bottom: 0;
    }
}
.location-image img {
    height: 300px !important;
    object-fit: contain;
}
.location-list h4 {
    padding-left: 25px !important;
}
.map-icon {
    border: 1px solid #062b5a00;
    border-radius: 20px;
    padding-bottom: 15px;
}
.map-icon:hover {
    border: 1px solid #062b5a4d;
}
.map-link {
    background: #fe890f;
    border-radius: 10px;
    padding: 6px 12px;
    color: #fff !important;
    font-weight: 700;
    font-size: 11px;
    display: inline-block;
    letter-spacing: 1px;
    margin: 15px 0px 0px 21px !important;
}
.elementor-widget-text-editor ul{
	margin-bottom: 15px;
}

