﻿.gp-news-page {
    background-color: #f8f9fa;
    padding: 50px 0;
}

/* News Row */
.gp-news-row {
    background: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    padding: 15px;
    margin-bottom: 20px;
}

/* Image */
.gp-news-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 4px;
    background-color: #e9ecef;
}

/* Title */
.news-title {
    font-size: 18px;
    font-weight: 600;
    color: #0d6efd;
    margin-bottom: 6px;
}

/* Date */
.news-date {
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
}

/* Read More */
.gp-read-more-btn {
    border: 1px solid #0d6efd;
    padding: 6px 14px;
    font-size: 14px;
    text-decoration: none;
    color: #0d6efd;
    border-radius: 4px;
}

    .gp-read-more-btn:hover {
        background-color: #0d6efd;
        color: #ffffff;
    }

/* Right box */
.gp-side-box {
    background: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    padding: 15px;
}

.side-title {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 10px;
}

.side-list {
    list-style: none;
    padding-left: 0;
}

    .side-list li {
        margin-bottom: 8px;
    }

    .side-list a {
        text-decoration: none;
        color: #212529;
    }

        .side-list a:hover {
            text-decoration: underline;
        }
/* Related news item */
.related-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

    /* Thumbnail image */
    .related-item img {
        width: 60px;
        height: 60px;
        object-fit: cover;
        border-radius: 4px;
        border: 1px solid #dee2e6;
        background-color: #e9ecef;
    }

    /* Title link */
    .related-item a {
        font-size: 14px;
        font-weight: 500;
        color: #212529;
        text-decoration: none;
    }

        .related-item a:hover {
            text-decoration: underline;
        }

/* Date */
.related-date {
    font-size: 12px;
    color: #666;
    margin-top: 2px;
}

/* Divider */
.gp-side-box hr {
    margin: 12px 0;
    border-color: #dee2e6;
}
