/* Main Content Layout */
.news-list-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    padding: 30px 0;
}

/* news List Section */
.news-section {
    margin-bottom: 30px;
}

.pagenav{ 
	margin-top: 40px;
	margin-bottom: 20px;
	color:#666666;
	font-size: 1rem
}

.pagenav a{ 
	color:darkred;
	font-weight: bold;
	font-size: 1rem;
}

.section-title {
	font-size: 1.8rem;
    color: #222;
    margin-bottom: 20px;
    border-bottom: 2px solid #0066cc;
    padding-bottom: 10px;
}


.news-items {
    display: grid;
    gap: 25px;
}

.news-item {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 20px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
}

.news-image img {
    width: 100%;
    max-height: 120px;
    object-fit: cover;
    border-radius: 4px;
}


.news-content .category {
    display: inline-block;
    color: #0066cc;
    margin: 0;padding: 0;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
}

.news-content h3 {
    font-size: 1.2rem;
	line-height: 1.5rem;
}

.news-content h3 a {
    color: #222;
    text-decoration: none;
}

.news-content h3 a:hover {
    color: #0066cc;
}

.news-content .excerpt {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 8px 0;
}

.news-content .meta {
    color: #666;
    font-size: 0.8rem;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

/* Pagination */
.pagination {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.pagination-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.page-prev, .page-next {
    padding: 8px 15px;
    background: #f8f8f8;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #555;
    cursor: pointer;
    transition: all 0.3s ease;
}

.page-prev:hover:not(:disabled), 
.page-next:hover:not(:disabled) {
    background: #0066cc;
    color: white;
    border-color: #0066cc;
}

.page-prev:disabled, 
.page-next:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.page-numbers {
    display: flex;
    gap: 5px;
}

.page-number {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #555;
    cursor: pointer;
}

.page-number.active {
    background: #0066cc;
    color: white;
    border-color: #0066cc;
}

.page-info {
    color: #666;
    font-size: 0.9rem;
}

/* Sidebar Styles */
.sidebar {
    display: block;
    gap: 30px;
}

.sidebar-section {
	margin-bottom: 20px;
    background: #f8f8f8;
    padding: 20px;
    border-radius: 8px;
}

/* Video Cards */
.video-card {
    margin-bottom: 20px;
}

.video-thumbnail {
    position: relative;
    margin-bottom: 10px;
}

.video-thumbnail img {
    width: 100%;
    border-radius: 6px;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 102, 204, 0.8);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.4rem;
}

.video-info h3 {
    font-size: 1rem;
    margin: 0 0 5px;
}

.video-info h3 a {
    color: #222;
    text-decoration: none;
}

.video-info h3 a:hover {
    color: #0066cc;
}

.video-meta {
    color: #666;
    font-size: 0.8rem;
    display: flex;
    gap: 15px;
}

/* Event Cards */
.event-card {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.event-img {
	width: 100px;
	max-height: 100px;
    background: #0066cc;
    color: white;
    text-align: center;
    padding: 0;
    border-radius: 6px;
    margin: 0;
}
.event-img img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
}

/*.event-date .day {
    display: block;
    font-size: 1.1rem;
    font-weight: bold;
    line-height: 1;
}*/



.event-info h3 {
    font-size: 1rem;
    margin: 0 0 5px;
}

.event-info h3 a {
    color: #222;
    text-decoration: none;
}

.event-info h3 a:hover {
    color: #0066cc;
}

.event-info .month {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
	 color: #666;
}

.location {
    color: #666;
    font-size: 0.8rem;
}

.view-all {
    display: inline-block;
    color: #0066cc;
    font-weight: bold;
    text-decoration: none;
    margin-top: 10px;
}

.view-all:hover {
    text-decoration: underline;
}

/* Footer (Same as lightreading.html) */
.site-footer {
    background-color: #222;
    color: #fff;
    padding: 40px 0 0;
}

.footer-main {
    padding-bottom: 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.footer-column h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    color: #aaa;
    text-decoration: none;
}

.footer-column a:hover {
    color: #fff;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: #fff;
    font-size: 1.2rem;
}

.footer-bottom {
    background-color: #111;
    padding: 15px 0;
}

.copyright {
    color: #777;
    font-size: 0.9rem;
}

.legal-links {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.legal-links a {
    color: #777;
    font-size: 0.9rem;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .news-list-grid {
        grid-template-columns: 1fr;
    }
    
    .news-item {
        grid-template-columns: 1fr;
    }
    
    .news-image img {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .nav-links {
        display: none;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}