.orx-home-news {
    margin: 40px 0;
}

.orx-home-news__top {
    display: flex;
    justify-content: flex-end;
    margin: 0 0 16px;
}

.orx-home-news__all {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 16px;
    border: 1px solid #f6cff4;
    border-radius: 999px;
    background: #fff;
    color: #6b0138;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}

.orx-home-news__all:hover {
    background: #f6cff4;
    border-color: #f6cff4;
    color: #94024f;
}

.orx-home-news__slider {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: thin;
}

.orx-home-news-card {
    flex: 0 0 400px;
    background: #fff;
    border: 1px solid #f1d7eb;
    border-radius: 20px;
    overflow: hidden;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.orx-home-news-card:hover {
    border-color: #e9add8;
    box-shadow: 0 8px 18px rgba(148, 2, 79, 0.08);
}

.orx-home-news-card__image-link {
    display: block;
    text-decoration: none;
    background: #f6cff4;
}

.orx-home-news-card__image {
    display: block;
    width: 100%;
    height: 275px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #f6cff4;
}

.orx-home-news-card__image_placeholder {
    background-image: none;
}

.orx-home-news-card__body {
    padding: 18px 18px 20px;
}

.orx-home-news-card__date {
    margin-bottom: 10px;
    font-size: 13px;
    line-height: 1.3;
    color: #8b6b82;
}

.orx-home-news-card__title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    font-size: 16px;
    line-height: 1.45;
    font-weight: 600;
    color: #1f1720;
    text-decoration: none;
    transition: color .2s ease;
}

.orx-home-news-card__title:hover {
    color: #94024f;
}

@media (max-width: 767px) {
    .orx-home-news {
        margin: 32px 0;
    }

    .orx-home-news__slider {
        gap: 16px;
    }

    .orx-home-news-card {
        flex-basis: 280px;
        border-radius: 16px;
    }

    .orx-home-news-card__image {
        height: 190px;
    }

    .orx-home-news-card__body {
        padding: 14px 14px 16px;
    }

    .orx-home-news-card__title {
        font-size: 15px;
    }
}