.dar-home-news-section {
    padding: 68px 0;
    background: #f7f6f9;
}

.dar-home-news-container {
    width: min(1180px, calc(100% - 36px));
    margin-inline: auto;
}

.dar-home-news-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 25px;
    margin-bottom: 27px;
}

.dar-home-news-label {
    display: block;
    margin-bottom: 8px;
    color: #d95a2b;
    font-size: 11px;
    font-weight: 900;
}

.dar-home-news-head h2 {
    margin: 0;
    color: #2e2151;
    font-size: clamp(27px, 4vw, 39px);
    font-weight: 900;
}

.dar-home-news-head p {
    max-width: 650px;
    margin: 8px 0 0;
    color: #77707e;
    font-size: 12px;
    line-height: 1.8;
}

.dar-home-news-all {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 43px;
    padding: 0 17px;
    border-radius: 11px;
    background: #2d176f;
    color: #fff;
    text-decoration: none;
    font-size: 11px;
    font-weight: 850;
}

.dar-home-news-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.dar-home-news-card {
    overflow: hidden;
    border: 1px solid #e8e4ec;
    border-radius: 19px;
    background: #fff;
    box-shadow: 0 11px 31px rgba(33,22,63,.06);
    transition: .25s ease;
}

.dar-home-news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 19px 43px rgba(33,22,63,.11);
}

.dar-home-news-image {
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background:
        linear-gradient(
            145deg,
            #342078,
            #d95a2b
        );
}

.dar-home-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dar-home-news-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: rgba(255,255,255,.9);
    font-size: 15px;
    font-weight: 850;
}

.dar-home-news-body {
    padding: 17px;
}

.dar-home-news-date {
    margin-bottom: 7px;
    color: #d95a2b;
    font-size: 9px;
    font-weight: 800;
}

.dar-home-news-title {
    margin: 0;
    color: #302352;
    font-size: 16px;
    line-height: 1.55;
    font-weight: 900;
}

.dar-home-news-summary {
    display: -webkit-box;
    overflow: hidden;
    min-height: 43px;
    margin: 8px 0 13px;
    color: #77707e;
    font-size: 11px;
    line-height: 1.8;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.dar-home-news-link {
    color: #d95a2b;
    text-decoration: none;
    font-size: 11px;
    font-weight: 850;
}

.dar-home-news-empty {
    grid-column: 1 / -1;
    padding: 35px;
    border: 1px dashed #d8d2df;
    border-radius: 16px;
    background: #fff;
    color: #766e7d;
    text-align: center;
    font-size: 12px;
}

@media (max-width: 900px) {
    .dar-home-news-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 650px) {
    .dar-home-news-container {
        width: min(100% - 24px, 1180px);
    }

    .dar-home-news-head {
        display: grid;
        grid-template-columns: 1fr;
    }

    .dar-home-news-all {
        justify-self: start;
    }

    .dar-home-news-grid {
        grid-template-columns: 1fr;
    }
}
