.row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    justify-items: center;
    align-items: center;
    gap: 16px;
}

.carousel-info {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    height: fit-content;
}

.information {
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    box-shadow: var(--sl-shadow-x-large);
    flex-basis: auto;
    padding: 16px;
    height: fit-content;
    max-width: 300px;
}

.information-item {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    justify-items: start;
    align-items: center;
}

.info-item-divider {
    margin-right: 16px;
    margin-left: 16px;
}

.left-column {
    flex-basis: 70%;
}

.short-description {
    color: var(--sl-color-neutral-600);
}

.hidden-gem-header {
    padding: 0 16px;
}

.about-section {
    padding: 0 16px;
}

.categories {
    display: flex;
    flex-direction: row;
    gap: 8px;
}

/* You May Also Like Section */
.more-section {
    margin-top: 32px;
}

.hidden-gems-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.hidden-gem-overview {
    cursor: pointer;
    width: 100%;
}

.hidden-gem-overview a {
    text-decoration: none;
}

.hidden-gem-image {
    width: inherit;
    max-width: 300px;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.left-column .information {
    display: none;
}

.right-column .information {
    display: block;
}

@media (max-width: 768px) {
    .carousel-info {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .more-section {
        padding: 0 16px;
    }

    .left-column .information {
        display: block;
        margin-top: 16px;
    }

    .right-column .information {
        display: none;
    }

    .information {
        max-width: 100%;
    }

    .hidden-gem-image {
        width: 100%;
        max-width: 100%;
    }
}



