.home-image-text {
    margin: 65px 0;
}

.home-image-text__image {
    position: relative;
    height: 190px;
}

.home-image-text__image img {
    border-radius: 10px;
}

.best_place_icon {
    width: 100px;
    height: auto;
    position: absolute;
    top: 21px;
    left: -10px;
    z-index: 1;
}

.home-image-text__text {
    margin-top: 25px;
}

@media (min-width: 768px) {
    .home-image-text {
        margin: 80px 0;
    }

    .home-image-text__image {
        height: 300px;
    }

    .best_place_icon {
        width: 167px;
        top: 35px;
        left: 0;
    }

    .home-image-text__text {
        margin-top: 35px;
    }
}

@media (min-width: 1200px) {
    .home-image-text {
        margin: 80px 0;
    }

    .home-image-text .flex-row {
        align-items: center;
        flex-direction: row-reverse;
    }

    .home-image-text__image {
        height: auto;
    }

    .best_place_icon {
        width: 183px;
        top: 38px;
        left: -109px;
    }

    .home-image-text__text {
        margin-top: 0;
        max-width: 507px;
    }
}

/* Read More / Read Less Styles */
.read-more-content {
    position: relative;
}

.read-more-content__text {
    position: relative;
    padding-bottom: 10px;
}

.read-more-content__text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.bg-gray .read-more-content__text::after {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(246, 247, 247, 1));
}

.bg-dark-gray .read-more-content__text::after {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(27, 27, 27, 1));
}

.bg-light-gray .read-more-content__text::after {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(93, 95, 99, 1));
}

.read-more-content.is-expanded .read-more-content__text::after {
    opacity: 0;
}

.read-more-toggle {
    cursor: pointer;
}

.read-more-toggle::after {
    transform: translateY(-50%) rotate(90deg);
}


.read-more-toggle__less {
    display: none;
}

.read-more-toggle[aria-expanded="true"] .read-more-toggle__more {
    display: none;
}

.read-more-toggle[aria-expanded="true"] .read-more-toggle__less {
    display: inline;
}

.read-more-toggle[aria-expanded="true"]::after {
    transform: translateY(-50%) rotate(-90deg);
}