.gks-news-section {
    background: #ffffff;
}

.gks-news-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e2ebf1;
    border-radius: 18px;
    box-shadow: 0 18px 42px rgba(15, 36, 56, 0.08);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.gks-news-card:hover {
    transform: translateY(-5px);
    border-color: #c8e7d8;
    box-shadow: 0 24px 54px rgba(15, 36, 56, 0.13);
}

.gks-news-media {
    display: block;
    position: relative;
    overflow: hidden;
    margin: 14px 14px 0;
    background: #edf4f7;
    border-radius: 14px;
    aspect-ratio: 16 / 10;
}

.gks-news-media::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 45%;
    background: linear-gradient(180deg, transparent, rgba(9, 23, 39, 0.22));
    pointer-events: none;
}

.gks-news-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.28s ease;
}

.gks-news-card:hover .gks-news-media img {
    transform: scale(1.035);
}

.gks-news-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 18px 20px 20px;
}

.gks-news-meta {
    display: grid;
    gap: 8px;
    margin-bottom: 14px;
    color: #68798f;
    font-family: "Jost", sans-serif;
    font-size: 14px;
    font-weight: 600;
}

.gks-news-meta a,
.gks-news-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    color: #68798f;
    line-height: 1.35;
}

.gks-news-meta a span {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.gks-news-meta i {
    flex: 0 0 auto;
    color: #158951;
}

.gks-news-title {
    min-height: 84px;
    margin: 0;
    color: #17243a;
    font-family: "Jost", sans-serif;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.32;
    letter-spacing: 0;
}

.gks-news-title a {
    display: -webkit-box;
    overflow: hidden;
    color: inherit;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.gks-news-title a:hover {
    color: #158951;
}

.gks-news-link {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    min-height: 44px;
    margin-top: auto;
    padding-top: 18px;
    color: #158951;
    font-family: "Jost", sans-serif;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.gks-news-link i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    color: #ffffff;
    background: #158951;
    border-radius: 50%;
    transition: transform 0.2s ease, background 0.2s ease;
}

.gks-news-card:hover .gks-news-link i {
    transform: translateX(3px);
    background: #116d42;
}

.gks-news-pagination {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 42px;
}

.gks-news-pagination a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 14px;
    color: #17243a;
    background: #ffffff;
    border: 1px solid #dfeaf0;
    border-radius: 12px;
    font-family: "Jost", sans-serif;
    font-size: 15px;
    font-weight: 800;
    box-shadow: 0 12px 28px rgba(15, 36, 56, 0.07);
}

.gks-news-pagination a:hover,
.gks-news-pagination a.active {
    color: #ffffff;
    background: #158951;
    border-color: #158951;
}

@media (max-width: 1199px) {
    .gks-news-title {
        font-size: 19px;
    }
}

@media (max-width: 767px) {
    .gks-news-card {
        border-radius: 16px;
    }

    .gks-news-media {
        margin: 12px 12px 0;
    }

    .gks-news-content {
        padding: 16px;
    }

    .gks-news-title {
        min-height: auto;
        font-size: 19px;
    }
}
