.os-latest-news {
    
    position: relative;
}
.os-latest-news__content *:first-child {
    margin-top: 0;
    margin-bottom: 0;
}
.os-latest-news__heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--os-content-gap);
}
.os-latest-news__heading h2 {
    color: var(--os-base);
    font-size: var(--os-h1);
    margin-top: 0;
    margin-bottom: 0;
}
.os-add-block-bg .os-latest-news__heading h2 {
    color: white;
}
.os-latest-news-container {
    margin: 0 -2rem;
}
.os-latest-news__slide {
    margin: 0 2rem;
}
.os-latest-news__card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    padding-top: 1rem;
    transition: var(--os-transition);
}
.os-latest-news__card:hover {
    opacity: 0.6;
    transform: translate(0, -0.5rem);
    cursor: pointer;
}
h3.os-latest-news__title {
    font-size: var(--os-h3);
    line-height: 1.3;
    z-index: 1;
}
h3.os-latest-news__title a {
    color: var(--os-base);
    text-decoration: none; 
}
.os-add-block-bg h3.os-latest-news__title a {
    color: white;
}
.os-latest-news__image {
    width: 100%;
    order: -1;
    border-radius: var(--os-radius-m);
    overflow: hidden;
    position: relative;
}
.os-latest-news__date {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 1rem;
    width: 7rem;
    height: 7rem;
    border-radius: 0 var(--os-radius-m) 0 var(--os-radius-m);
    background-color: var(--os-base-trans-90);
    color: white;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1.6rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.os-latest-news__day,
.os-latest-news__month {
    width: 100%;
    text-align: center;
    line-height: 1;
}
.os-latest-news__day {
    border-bottom: 1px solid var(--os-accent);
    padding-bottom: .5rem;
    margin-bottom: .5rem;
}
.os-latest-news__card img {
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.os-slider-arrows {
    display: flex;
    flex-direction: row;
    padding-top: 2rem;
    gap: 3rem;
    margin-top: 3rem;
}
button.os-slider-arrow {
    background-color: transparent;
    border: none;
    opacity: 1;
    transition: var(--os-transition);
}
button.os-slider-arrow:hover {
    opacity: 0.6;
}
.os-slider-arrow svg {
    height: 4rem;
    padding: 0.5rem;
    width: auto;  
}
.os-next-arrow {

}

