.home__cta {
    display: grid;
    gap: 30px;
}
.home__related {
    margin: 0 auto;
    padding: 30px 0;
    display: grid;
    justify-content: center;
    gap: 30px;

    @media (min-width: 576px) {
        grid-template-columns: repeat(2, 1fr);
    }

    @media (min-width: 992px) {
        grid-template-columns: repeat(4, 1fr);
    }
}
.home__related > div {
    display: grid;
    justify-items: center;
    gap: 20px;
}
.home__related > div > div > img {
    height: 120px;

    @media (min-width: 992px) {
        height: 150px;
    }
}
.home__related > div > h4 {
    color: var(--clr-font-dark);
    font-family: var(--font-family-primary);
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%; /* 26.4px */
    text-align: center;
}
.home__related__buttons {
    padding: 30px 0;
    display: flex;
    justify-content: center;
    gap: 30px;
}
.home__news {
    padding: 30px 0;
    display: grid;
    justify-content: center;
    gap: 20px;

    @media (min-width: 576px) {
        grid-template-columns: repeat(2, 1fr);
    }

    @media (min-width: 768px) {
        gap: 30px;
    }
}
.home__news__item {
    max-width: calc((var(--container-width) - 30px)/ 2);
}
.home__news__item > div img {
    max-width: 100%;
    max-height: 395px;
}
.home__news__item > div:has(h4) {
    padding: 20px 0;
}
.home__news__item span {
    color: var(--clr-border);
    font-family: var(--font-family-primary);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 19.2px */
}
.home__news__item h4 {
    padding: 10px 0;
    color: var(--clr-primary);
    font-family: var(--font-family-primary);
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%; /* 26.4px */
}
.home__news__item p {
    color: var(--clr-font-dark);
    font-family: var(--font-family-primary);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 28px */
}
.home__news__item_slider {
    max-width: 100%;

    @media (min-width: 576px) {
        max-width: calc((var(--container-width)) / 4);
    }

    @media (min-width: 768px) {
        max-width: calc((var(--container-width)) / 3);
    }
}
.home__news__item_slider p {
    display: -webkit-box;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;

    @media (min-width: 992px) {
        display: block;
    }
}
.home__outro {
    display: grid;
    justify-items: center;
    gap: 30px;
}
.home__outro h2 {
    max-width: 800px;
    padding-bottom: 0;
}
.home__outro h2::after {
    display: none;
}
.home__outro p {
    color: var(--clr-font-dark);
    font-family: var(--font-family-primary);
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}
