/*
Theme Name: HD.ESSENTIAL Child Theme
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/

/*************** ADD CUSTOM CSS HERE.   ***************/

/* Force Square Images */
.wp-travel-trip-thumb img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 1 / 1;
    max-width: 400px; /* Adjust as needed */
    display: block;
    margin: 0 auto;
}

/* Move Trip Info Below the Image */
.wp-travel-single-trip-left {
    width: 100% !important; /* Make the image take full width */
}

.wp-travel-single-trip-right {
    width: 100% !important; /* Move trip details below */
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around; /* Arrange contents horizontally */
    text-align: center;
    margin-top: 10px;
}

.wp-travel-single-trip-right div {
    flex: 1;
    min-width: 120px; /* Ensure contents are spaced properly */
}



@media only screen and (max-width: 48em) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/


}