/* University / units and departments */
.welcome .welcome-image {
    display: none;
}
.welcome .welcome-content {
    display: none;
}
div.welcome {
    padding: 0 !important;
}

/* News Article Styles */
.news-item {
    /* max-width: 900px; */
    margin: 0 auto;
    padding: 20px;
    padding-top: 0;
    background: white;
    line-height: 1.6;
}

.news-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.news-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
    line-height: 1.3;
}

.news-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    color: var(--light-text);
    font-size: 14px;
}

.news-date {
    background: var(--light);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 500;
}

.news-category {
    display: none;
    /* color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px; */
}

.news-hero {
    margin: 30px 0;
    position: relative;
}

.news-hero img {
    max-height: 500px;
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.image-caption {
    text-align: center;
    color: var(--gray);
    font-size: 14px;
    margin-top: 10px;
    font-style: italic;
}

.share-buttons {
    display: none;
}


/* Article Content */
.news-content {
    font-size: 16px;
    color: var(--dark-text);
}

.news-body h3{
    color: var(--primary) !important;
}

ul li::marker {
    color: var(--accent) !important;; /* bullet color */
    font-size: 20px;
}


@media (max-width: 768px) {
    .news-item {
        padding: 0;
    }
    .news-title{
        font-size: 1.3rem;
    }
}
/* @media (max-width: 576px) {
} */


@media print {
    body * {
        visibility: hidden;        /* hide everything */
    }

    .print-area, .print-area * {
        visibility: visible;        /* show only this */
    }

    .print-area {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
    }
}

.more-news-btn{
    background-color: var(--primary);
    color: var(--white);
}
.more-news-btn:hover{
    border-color: var(--primary);
    color: var(--primary);
}