.hb_travelreports_wrapper {

}

.hb_travelreports_headline {

}

.hb_travelreports_grid {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.hb_travelreports_highlight {
    width: 37%;
    position: relative;
    min-height: 400px;
}

#hb_travelreports_highlight_img {
    border-radius: 24px;
    height: 465px;
}
.hb_travelreports_highlight_img-overlay {
    content: '';
    border-radius: 24px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(31, 34, 31, 0.08) 0%, rgba(31, 34, 31, 0.40) 80%, rgba(31, 34, 31, 0.64) 100%);
    pointer-events: none;
    transition: opacity .3s;
}

.hb_travelreports_highlight_title {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 16px 24px;
    color: #fff !important;
    font-size: 40px;
    line-height: 56px;
    font-family: "Playfair Display", serif;
}
.hb_travelreports_highlight_subheadline {
    font-family: "Source Sans 3", sans-serif;
    font-size: var(--font-size-m-18);
    font-style: normal;
    font-weight: 300;
    line-height: var(--line-height-m-18);
}
.hb_travelreports_highlight_title:hover {
    color: #fff;
}

.hb_travelreports_list {
    width: 100vw;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 24px;
    grid-row-gap: 16px;
    scroll-snap-type: x mandatory;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 -16px;
    padding: 0 16px;
    scroll-padding-inline: 16px;
    scrollbar-width: none;
}

.hb_travelreports_list-item {
    scroll-snap-align: center;
    min-width: 80vw;
}
.hb_travelreports_list-item_link:hover {
    color: initial;
}

.hb_travelreports_list-item_content {
    display: flex;
    align-items: center;
    gap: 16px;
}
.hb_travelreports_list-item_text {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
}


.hb_travelreports_list-item_thumbnail-wrapper {
    min-width: 160px;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}
.hb_travelreports_list-item_thumbnail {
    width: 160px;
    height: 144px;
    object-fit: cover;
    position: relative;
    transition: scale .3s;
}
.hb_travelreports_list-item_thumbnail-overlay {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(31, 34, 31, 0.08) 0%, rgba(31, 34, 31, 0.40) 80%, rgba(31, 34, 31, 0.64) 100%);
    pointer-events: none;
    transition: opacity .3s;
}
.hb_travelreports_list-item_link:hover img {
    scale: 1.1;
}
.hb_travelreports_list-item_link:hover .hb_travelreports_list-item_thumbnail-overlay {
    opacity: 0;
}
.hb_travelreports_list-item_badge {
    font-size: var(--font-size-s-16);
    line-height: var(--line-height-s-16);
    color: #5D675C;
    background-color: #F5F7F5;
    padding: 4px 12px;
    border-radius: 50px;
    font-weight: 400;
}
.hb_travelreports_highlight .hb_travelreports_list-item_badge {
    position: absolute;
    top: 24px;
    right: 12px;
    background-color: lightgray;
    background-image: linear-gradient(115deg, rgba(195, 205, 194, 0.16) 26.75%, rgba(195, 205, 194, 0.08) 69.42%);
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: cover;
    backdrop-filter: blur(12px);
}


.hb_travelreports_list-item_title {
    font-size: 24px;
    line-height: 36px;
    font-family: "Playfair Display", serif;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* Three column */
.hb_travelreports_list.is-three-column {
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
}
.hb_travelreports_list.is-three-column .hb_travelreports_list-item_title {
    -webkit-line-clamp: 3;
}
.hb_travelreports_list.is-three-column .hb_travelreports_list-item_thumbnail {
    max-width: initial;
    width: 120px;
    height: initial;
    aspect-ratio: 1;
}
.hb_travelreports_list.is-three-column .hb_travelreports_list-item_thumbnail-wrapper {
    min-width: 120px;
}



/* ========== Media Queries ========== */
@media (min-width: 640px) {

}
@media (min-width: 768px) {
    .hb_travelreports_list-item {
        scroll-snap-align: center;
        min-width: 300px;
    }
}
@media (min-width: 1024px) {
    .hb_travelreports_list {
        width: 63%;
    }
    .hb_travelreports_list.is-three-column .hb_travelreports_list-item_thumbnail {
        width: 200px;
    }
    .hb_travelreports_list.is-three-column .hb_travelreports_list-item_thumbnail-wrapper {
        min-width: 200px;
    }
}
@media (min-width: 1280px) {

}
@media (min-width: 1536px) {

}