/* CSS fixes for Gallery One section images */
.gallery-one .location-block_one {
    margin-bottom: 30px;
}

.gallery-one .location-block_one-image {
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    background-color: var(--main-color);
    padding-bottom: 75%; /* Creates 4:3 aspect ratio */
    height: 0;
}

.gallery-one .location-block_one-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    transition: all 500ms ease;
}

/* Styling for one-liner descriptions */
.gallery-one .location-block_one-location {
    font-size: 14px;
    line-height: 1.5;
    margin-top: 5px;
    color: #777;
    padding-right: 0;
    display: block;
    overflow: hidden;
    white-space: normal;
    text-overflow: ellipsis;
    min-height: 42px;
    margin-bottom: 10px;
}

.gallery-one .location-block_one-content {
    position: relative;
    padding: 15px 15px 15px;
}

/* Read More button styling */
.gallery-one .read-more-btn {
    display: inline-block;
    color: var(--main-color);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
    transition: all 300ms ease;
}

.gallery-one .read-more-btn:hover {
    color: #333;
}

.gallery-one .read-more-btn i {
    margin-left: 5px;
    transition: all 300ms ease;
}

.gallery-one .read-more-btn:hover i {
    margin-left: 10px;
}

/* Remove the arrow icon that's no longer needed */
.gallery-one .location-block_one-content .flaticon-next-2 {
    display: none;
}
