.news-title-cs {
    font-size: 30px;
    font-weight: 700;
    color: #3a3a3a;
    margin-bottom: 30px;
}

/* news list */
.news-list-cop {
    display: flex;
    gap: 0px;
    margin-bottom: 40px;
}

.news-list-left {
    width: 75%;
    padding: 0px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news-grid-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.no-data-box {
    background: #ffffff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.news-list-right {
    width: 25%;
    padding: 0px 0px 0px 19px;
}

.blog-pos {
    position: sticky;
    top: 20px;
    transition: 0.45s ease-in-out;
}

.blog-img a img {
    width: 100%;
    height: 220px;
    border-radius: 7px;
    object-fit: cover;
}

.sidebar-blog {
    margin-bottom: 20px;
}

.sidebar-blog a img {
    width: 100%;
    height: 355px;
    border-radius: 7px;
    object-fit: cover;
}

.blog-list {
    border-radius: 7px;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.blog-list:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.blog-top {
    display: flex;
    margin: 12px 0px 12px 10px;
}

.blog-top span img {
    width: 20px;
    height: 20px;
}

.blog-author {
    margin-left: 5px;
    font-size: 12px;
}

.blog-author a {
    text-decoration: none;
    font-weight: bold;
}

.blog-content {
    margin: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-linkr {
    font-weight: 600;
    color: #3a3a3a;
    transition: 0.3s ease-in-out;
    text-transform: none;
    text-decoration: none;
    font-size: 16px;
    line-height: 1.4;
    display: block;
    margin-bottom: 10px;
}

.blog-linkr:hover {
    color: #e60023;
}

.blog-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    flex: 1;
}

.blog-link {
    margin-top: auto;
    font-size: 12px;
}

.blog-link a {
    text-decoration: none;
    color: #3a3a3a;
    font-weight: 500;
    transition: color 0.3s ease;
}

.blog-link a:hover {
    color: #f79853;
}

.blog-link .icon {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.blog-link a:hover .icon {
    transform: translateX(3px);
}

.no-data {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
    background: #f9f9f9;
    border-radius: 10px;
    border: 2px dashed #ddd;
}

.no-data-content {
    text-align: center;
    padding: 40px;
}

.no-data-icon {
    font-size: 60px;
    color: #ccc;
    margin-bottom: 20px;
}

.no-data-title {
    font-size: 24px;
    color: #666;
    margin-bottom: 10px;
    font-weight: 600;
}

.no-data-text {
    font-size: 16px;
    color: #999;
    line-height: 1.5;
}

.news-page .title-main {
    text-align: left;
}

/* 4K and Ultra-wide Screens */
@media (min-width: 1600px) {
}

/* Ultra Large Devices (Extra Large Desktop) */
@media (max-width: 1599px) {
}

/* XXL Devices (Large Desktop) */
@media (max-width: 1399px) {
}

/* Extra Large Devices (Small Desktop) */
@media (max-width: 1199px) {
}

/* Large Devices (Tablets) */
@media (max-width: 991px) {
    .news-list-cop {
        flex-direction: column;
        gap: 16px;
    }
    .news-list-left {
        width: 100%;
    }

    .news-list-right {
        width: 100%;
        padding-left: 0px;
    }

    .news-page .title-main {
        text-align: center;
    }
}

/* Medium Devices (Tablets) */
@media (max-width: 767px) {
    .news-grid-box {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Small Devices (Phones) */
@media (max-width: 575px) {
}

/* Extra Small Devices */
@media (max-width: 374px) {
    .news-grid-box {
        grid-template-columns: repeat(1, 1fr);
    }
}
