.articles__wrapper {
    overflow: hidden;
    background: #FFF;
    padding: 80px;
    border-radius: 40px;
}

.articles__heading {
    color: #202029;
}

.articles__top {
    margin-bottom: 42px;
    display: flex;
    align-items: center;
    gap: 100px;
    justify-content: space-between;
}

.articles__item {
    border-radius: 20px;
    border: 1px solid #FF5A46;
    overflow: hidden;
}

.articles__image-wrapper {
    display: flex;
    margin-bottom: 25px;
    position: relative;
}

.articles__image {
    width: 100%;
    height: 255px;
    object-fit: contain;
    object-position: top;
}

.articles__item-content {
    padding: 0 25px 25px 25px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.articles__link {
    position: absolute;
    width: 100%;
    height: 100%;
}


.articles__item-category {
    display: flex;
    column-gap: 10px;
    row-gap: 0;
    flex-wrap: wrap;
}

.articles__category-link {
    color: #000;
}

.articles__item-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    margin-bottom: 8px;
}

.articles__item-reading-time {
    color: #000;
    font-weight: 300;
    border: 1px solid #000;
    padding: 3px 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    min-width: fit-content;
}

.articles__item-heading {
    color: #000;
    flex-basis: 100%;
    margin-bottom: 15px;
}

.articles__item-link {
    line-height: 1.6;
    letter-spacing: 0.02em;
    color: #FF5A46;
    transition: all 0.3s ease;
}

.articles__item-link:hover {
    color: #202029;
}

.articles__item-meta {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
}

.articles__item-date {
    color: #484851;
}

.articles__swiper-slide {
    height: auto;
}

.articles__item {
    height: 100%;
    display: flex;
    flex-direction: column;
}

@media screen and (max-width: 1199.98px) {
    .articles__wrapper {
        padding: 60px;
    }
}

@media screen and (max-width: 1023.98px) {
    .articles__image {
        height: auto;
    }

    .articles__wrapper {
        padding: 40px;
    }

    .articles__top {
        margin-bottom: 25px;
    }

    .articles__navigation {
        display: none;
    }

    .articles__image-wrapper {
        margin-bottom: 20px;
    }

    .articles__wrapper {
        border-radius: 20px;
    }

    .articles__item-top {
        gap: 20px;
    }
}

@media screen and (max-width: 599.98px) {
    .articles__wrapper {
        padding: 40px 25px;
    }

    .articles__image {
        min-height: 208px;
    }

    .articles__item-content {
        padding: 0 15px 20px 15px;
    }

    .articles__item-reading-time {
        font-size: 16px;
    }
}