.gks-news-detail-page {
    background: #f6f9fb;
    font-family: "Jost", sans-serif;
}

.gks-news-detail-card,
.gks-news-side-card {
    background: #ffffff;
    border: 1px solid #e1ebf1;
    border-radius: 18px;
    box-shadow: 0 18px 44px rgba(15, 36, 56, 0.08);
}

.gks-news-detail-card {
    overflow: hidden;
}

.gks-news-detail-image {
    margin: 18px 18px 0;
    overflow: hidden;
    background: #eef5f8;
    border-radius: 14px;
    max-height: 520px;
}

.gks-news-detail-image img {
    display: block;
    width: 100%;
    max-height: 520px;
    object-fit: contain;
    background: #eef5f8;
}

.gks-news-detail-content {
    padding: 30px;
}

.gks-news-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.gks-news-detail-meta a,
.gks-news-detail-meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 36px;
    padding: 8px 13px;
    color: #52657b;
    background: #f5faf7;
    border: 1px solid #dcece4;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
}

.gks-news-detail-meta i {
    color: #158951;
}

.gks-news-detail-content h2 {
    margin: 0 0 22px;
    color: #17243a;
    font-family: "Jost", sans-serif;
    font-size: 34px;
    font-weight: 800;
    line-height: 1.16;
    letter-spacing: 0;
}

.gks-news-body {
    color: #344459;
    font-size: 17px;
    line-height: 1.78;
}

.gks-news-body p {
    margin-bottom: 16px;
}

.gks-news-body img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

.gks-news-body a {
    color: #158951;
    font-weight: 700;
}

.gks-news-body ul,
.gks-news-body ol {
    padding-left: 22px;
    margin-bottom: 18px;
}

.gks-news-video {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 22px 0;
    background: #0d1725;
    border-radius: 14px;
    aspect-ratio: 16 / 9;
}

.gks-news-video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.gks-news-gallery {
    padding: 0 30px 30px;
}

.gks-news-gallery-head {
    margin-bottom: 18px;
    padding-top: 24px;
    border-top: 1px solid #e5eef3;
}

.gks-news-gallery-head span,
.gks-news-side-label {
    display: block;
    margin-bottom: 5px;
    color: #158951;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.gks-news-gallery-head h3 {
    margin: 0;
    color: #17243a;
    font-family: "Jost", sans-serif;
    font-size: 24px;
    font-weight: 800;
}

.gks-news-gallery-item {
    display: block;
    overflow: hidden;
    background: #eef5f8;
    border-radius: 12px;
    aspect-ratio: 1 / 1;
}

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

.gks-news-gallery-item:hover img {
    transform: scale(1.04);
}

.gks-news-sidebar {
    position: sticky;
    top: 110px;
    display: grid;
    gap: 20px;
}

.gks-news-side-card {
    padding: 24px;
}

.gks-news-side-card h3 {
    margin: 0 0 16px;
    color: #17243a;
    font-family: "Jost", sans-serif;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.2;
}

.gks-news-side-info {
    display: grid;
    gap: 12px;
}

.gks-news-side-info div {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 2px 12px;
    align-items: center;
    padding: 13px;
    background: #f7fafb;
    border: 1px solid #e3edf2;
    border-radius: 12px;
}

.gks-news-side-info i {
    grid-row: span 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    color: #158951;
    background: #ffffff;
    border-radius: 50%;
}

.gks-news-side-info span {
    color: #78889b;
    font-size: 13px;
    font-weight: 700;
}

.gks-news-side-info strong {
    color: #17243a;
    font-size: 15px;
    font-weight: 800;
}

.gks-news-side-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 46px;
    margin-top: 16px;
    color: #ffffff;
    background: #158951;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 800;
}

.gks-news-side-button:hover {
    color: #ffffff;
    background: #116d42;
}

.gks-news-side-list {
    display: grid;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.gks-news-side-list a {
    display: block;
    padding: 13px 14px;
    background: #f7fafb;
    border: 1px solid #e3edf2;
    border-radius: 12px;
}

.gks-news-side-list strong {
    display: -webkit-box;
    overflow: hidden;
    color: #17243a;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.gks-news-side-list span {
    display: block;
    margin-top: 5px;
    color: #78889b;
    font-size: 13px;
    font-weight: 700;
}

.gks-news-side-list a:hover {
    border-color: #c8e7d8;
}

.gks-news-side-list a:hover strong {
    color: #158951;
}

.gks-news-empty {
    margin: 0;
    color: #68798f;
    font-size: 15px;
    font-weight: 600;
}

@media (max-width: 991px) {
    .gks-news-sidebar {
        position: static;
        margin-bottom: 24px;
    }
}

@media (max-width: 767px) {
    .gks-news-detail-content,
    .gks-news-gallery,
    .gks-news-side-card {
        padding: 18px;
    }

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

    .gks-news-detail-content h2 {
        font-size: 27px;
    }

    .gks-news-body {
        font-size: 16px;
    }
}
