.city-header {
    padding: 0 16px;
}

.carousel {
    width: 100%;
    height: 500px;
    object-fit: cover;
    margin: 1.5em 0;
}

.short-description {
    color: var(--sl-color-neutral-600);
    margin-top: 0;
    font-size: 1.2rem;
}

sl-details.explore-by-categories::part(base) {
    max-width: 100%;
    margin: 8px 0 16px 0;
    background-color: var(--sl-color-primary-50);
    border-radius: 12px;
    border: 1px solid var(--sl-color-primary-100);
}

sl-details.explore-by-categories::part(header) {
    color: var(--sl-color-primary-600);
    font-weight: var(--sl-font-weight-semibold);
    font-size: var(--sl-font-size-medium);
}

/* Hidden gems list styling */
.hidden-gems-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 2rem 2.75rem;
    justify-items: start;
}

.hidden-gem-overview {
    cursor: pointer;
    width: 360px;
}

.hidden-gem-overview a {
    text-decoration: none;
}

.hidden-gem-overview img {
    width: 360px;
    height: 280px;
    object-fit: cover;
    border-radius: 16px;
}

.hidden-gem-overview h4 {
    color: var(--sl-color-primary-600);
    font-weight: var(--sl-font-weight-bold);
    font-size: var(--sl-font-size-medium);
    margin: 0;
}

.hidden-gem-overview p {
    color: var(--sl-color-neutral-600);
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 768px) {
    .carousel-info {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .short-description {
        font-size: 1rem;
    }

    .carousel {
        height: auto;
        object-fit: cover;
        margin: 16px 0 40px 0;
    }

    .hidden-gem-overview {
        width: 100%;
    }

    .hidden-gem-overview img {
        width: 100%;
        object-fit: cover;
        border-radius: 16px;
    }
}