




.list-group-item:not(.active) {

    border-radius: 0.25rem;
    padding: 15px;
    transition: background-color 0.3s, transform 0.2s;
	
}





.news_body_list {
    font-size: 14px;
    line-height: 1.6;
}

.news_date_list {
    font-size: 12px;
    color: #666;
}

.list-group-item:not(.active) h5 {
    font-size: 18px;
    font-weight: bold;
    
}

@media screen and (max-width: 576px) {
    .list-group-item:not(.active) h5 {
        font-size: 16px;
    }

    .news_body_list {
        font-size: 12px;
    }
}


.news-title {
    font-size: 1.75rem; /* Adjust title size */
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); /* Subtle shadow effect */
}

/* Style for the link inside the news title */
.news-title-link {
    color: #333; /* Dark color for the title */
    text-decoration: none; /* Remove underline */
    transition: color 0.3s, transform 0.2s ease-in-out; /* Add smooth hover effects */
}

/* Hover effect for the link */
.news-title-link:hover {
    color: #007bff; /* Change color on hover */
    transform: scale(1.05); /* Slightly enlarge the text */
    text-decoration: underline; /* Add underline on hover */
}

/* Optional: Add a shadow effect to the title */
.news-title-link:hover::after {
    content: ''; /* Add an underline animation */
    display: block;
    width: 100%;
    height: 2px;
    background-color: #007bff;
    margin-top: 4px;
    transition: width 0.3s ease-in-out;
}


.news-item-row {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.news-thumb {
    width: 160px;
    height: 120px;
    object-fit: cover;
    display: block;
    border-radius: 0.375rem;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .news-thumb {
        display: none;
    }
}


.news-image-expand-link {
    text-decoration: none;
}

.news-image-expand-link img {
    display: block;
}

.news-expand-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    border-radius: 50%;
    font-size: 16px;
    opacity: 0;
    transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out;
}

.news-image-expand-link:hover .news-expand-icon,
.news-image-expand-link:focus .news-expand-icon {
    opacity: 1;
    transform: scale(1.06);
}


