
.news-marquee {
    height: 250px;
    overflow: hidden;
    position: relative;
    background: #f8f9fa;
    border-top: 1px solid #ddd;
}

.news-list {
    list-style: none;
    padding: 0;
    margin: 0;
    animation: scrollUp 18s linear infinite;
}

.news-list li {
    padding: 12px 15px;
    border-bottom: 1px solid #ddd;
}

.news-list li a {
    text-decoration: none;
    color: #000;
    display: block;
}

.news-list li a:hover {
    background-color: #e9ecef;
}

.news-list .date {
    font-size: 12px;
    color: #0d6efd;
    font-weight: bold;
}

.news-list p {
    font-size: 14px;
    font-weight: 600;
    margin: 5px 0 0;
    text-align: justify;
}

.card-content {
    height: 300px;
    overflow: hidden;
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
    border-bottom: 1px solid #dee2e6;
    padding-left: 15px;   /* LEFT padding */
    padding-top: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
}

/* Pause on hover */
.news-marquee:hover .news-list {
    animation-play-state: paused;
}

/* Carousel image */
.carousel-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    cursor: pointer;
}

/* Modal gallery images */
.gallery-img {
    width: 100%;
    height: 180px;          /* same height for all images */
    object-fit: cover;     /* crop properly */
    border-radius: 6px;
    border: 2px solid #fff;
    cursor: zoom-in;
    transition: transform 0.3s ease;
}

.gallery-img:hover {
    transform: scale(1.05);
}

/* Dark modal background */
.modal-content {
    background: #000;
}

/* Animation */
@keyframes scrollUp {
    0% { transform: translateY(100%); }
    100% { transform: translateY(-100%); }
}

