.dar-news-page {
    min-height: 720px;
    background: #f7f6f9;
    color: #251e2d;
}

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

.dar-news-hero {
    position: relative;
    overflow: hidden;
    padding: 65px 0 78px;
    background:
        radial-gradient(
            circle at 88% 15%,
            rgba(217, 90, 43, .28),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #241169 0%,
            #351d80 55%,
            #1b0e4b 100%
        );
    color: #fff;
}

.dar-news-hero::after {
    content: "";
    position: absolute;
    inset-inline-end: -150px;
    bottom: -250px;
    width: 460px;
    height: 460px;
    border: 1px solid rgba(255,255,255,.11);
    border-radius: 50%;
}

.dar-news-breadcrumb {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 23px;
    color: rgba(255,255,255,.7);
    font-size: 12px;
}

.dar-news-breadcrumb a {
    color: inherit;
    text-decoration: none;
}

.dar-news-hero-content {
    position: relative;
    z-index: 2;
    max-width: 770px;
}

.dar-news-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    padding: 7px 13px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    font-size: 12px;
    font-weight: 800;
}

.dar-news-label::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ef804a;
}

.dar-news-hero h1 {
    margin: 0;
    font-size: clamp(34px, 5vw, 55px);
    line-height: 1.2;
    font-weight: 900;
}

.dar-news-hero p {
    max-width: 680px;
    margin: 17px 0 0;
    color: rgba(255,255,255,.77);
    font-size: 14px;
    line-height: 2;
}

.dar-news-content {
    padding: 46px 0 75px;
}

.dar-news-toolbar {
    display: grid;
    grid-template-columns: minmax(230px, 1fr) auto;
    gap: 15px;
    align-items: center;
    margin-bottom: 27px;
    padding: 15px;
    border: 1px solid #e9e5ed;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 10px 31px rgba(35,22,67,.055);
}

.dar-news-search {
    width: 100%;
    height: 47px;
    padding: 0 15px;
    border: 1px solid #e3dfe8;
    border-radius: 12px;
    background: #faf9fb;
    color: #2f2857;
    font: inherit;
    outline: none;
}

.dar-news-search:focus {
    border-color: #6c56aa;
    background: #fff;
}

.dar-news-count {
    color: #6f6777;
    font-size: 12px;
    font-weight: 750;
    white-space: nowrap;
}

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

.dar-news-card {
    overflow: hidden;
    border: 1px solid #e8e4ec;
    border-radius: 21px;
    background: #fff;
    box-shadow: 0 12px 34px rgba(33,22,63,.065);
    transition: .25s ease;
}

.dar-news-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 47px rgba(33,22,63,.12);
}

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

.dar-news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

.dar-news-card:hover img {
    transform: scale(1.045);
}

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

.dar-news-featured {
    position: absolute;
    top: 13px;
    inset-inline-start: 13px;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,.94);
    color: #311b70;
    font-size: 10px;
    font-weight: 850;
}

.dar-news-card-body {
    padding: 19px;
}

.dar-news-date {
    margin-bottom: 8px;
    color: #d95a2b;
    font-size: 10px;
    font-weight: 800;
}

.dar-news-card-title {
    margin: 0;
    color: #302252;
    font-size: 18px;
    line-height: 1.55;
    font-weight: 900;
}

.dar-news-card-summary {
    display: -webkit-box;
    overflow: hidden;
    min-height: 66px;
    margin: 9px 0 16px;
    color: #77707e;
    font-size: 12px;
    line-height: 1.85;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.dar-news-card-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 39px;
    padding: 0 15px;
    border-radius: 10px;
    background: #2d176f;
    color: #fff;
    text-decoration: none;
    font-size: 11px;
    font-weight: 850;
}

.dar-news-card-link:hover {
    background: #d95a2b;
}

.dar-news-pagination {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 28px;
}

.dar-news-pagination button {
    min-width: 39px;
    height: 39px;
    border: 1px solid #ded9e4;
    border-radius: 10px;
    background: #fff;
    color: #3d3260;
    cursor: pointer;
}

.dar-news-pagination button.is-active {
    border-color: #2d176f;
    background: #2d176f;
    color: #fff;
}

.dar-news-message {
    grid-column: 1 / -1;
    padding: 55px 22px;
    border: 1px dashed #d8d2df;
    border-radius: 19px;
    background: #fff;
    text-align: center;
}

.dar-news-message strong {
    display: block;
    margin-bottom: 8px;
    color: #312451;
    font-size: 19px;
}

.dar-news-message p {
    margin: 0;
    color: #7c7482;
    font-size: 12px;
    line-height: 1.8;
}

/* News Details */

.dar-news-details-header {
    padding: 50px 0 47px;
    background:
        radial-gradient(
            circle at 88% 15%,
            rgba(217,90,43,.26),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #241169,
            #351d80 55%,
            #1b0e4b
        );
    color: #fff;
}

.dar-news-details-title {
    max-width: 900px;
    margin: 0;
    font-size: clamp(30px, 5vw, 51px);
    line-height: 1.35;
    font-weight: 900;
}

.dar-news-details-meta {
    margin-top: 14px;
    color: rgba(255,255,255,.72);
    font-size: 12px;
}

.dar-news-article {
    padding: 42px 0 75px;
}

.dar-news-article-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 285px;
    gap: 26px;
    align-items: start;
}

.dar-news-article-main {
    overflow: hidden;
    border: 1px solid #e8e4ec;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 12px 35px rgba(33,22,63,.06);
}

.dar-news-article-image {
    min-height: 380px;
    background:
        linear-gradient(
            145deg,
            #342078,
            #d95a2b
        );
}

.dar-news-article-image img {
    width: 100%;
    height: 100%;
    max-height: 530px;
    object-fit: cover;
}

.dar-news-article-body {
    padding: 29px;
}

.dar-news-article-summary {
    margin: 0 0 23px;
    padding: 17px;
    border-inline-start: 4px solid #d95a2b;
    border-radius: 10px;
    background: #f8f6fa;
    color: #554b60;
    font-size: 14px;
    line-height: 1.95;
    font-weight: 700;
}

.dar-news-article-content {
    color: #625969;
    font-size: 14px;
    line-height: 2.1;
    white-space: pre-line;
}

.dar-news-side-card {
    position: sticky;
    top: 90px;
    padding: 21px;
    border: 1px solid #e8e4ec;
    border-radius: 19px;
    background: #fff;
}

.dar-news-side-card h3 {
    margin: 0 0 15px;
    color: #302352;
    font-size: 16px;
    font-weight: 900;
}

.dar-news-side-card a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 43px;
    margin-top: 9px;
    border-radius: 11px;
    background: #2d176f;
    color: #fff;
    text-decoration: none;
    font-size: 11px;
    font-weight: 850;
}

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

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

    .dar-news-side-card {
        position: static;
    }
}

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

    .dar-news-hero {
        padding: 45px 0 55px;
    }

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

    .dar-news-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .dar-news-article-image {
        min-height: 250px;
    }

    .dar-news-article-body {
        padding: 19px;
    }
}
