/* Main Content Layout */
.expo-list-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    padding: 30px 0;
}

/* Events List Section */
.expo-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;
}


.expo-items {
    display: grid;
    gap: 25px;
}

.expo-item {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 20px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
}

.expo-image img {
    width: 100%;
    max-height: 120px;
    object-fit: cover;
    border-radius: 4px;
}


.expo-content h3 {
    font-size: 1.2rem;
	line-height: 1.5rem;
}

.expo-content h3 a {
    color: #222;
    text-decoration: none;
}

.expo-content h3 a:hover {
    color: #0066cc;
}

.expo-content .excerpt ,.meta{
    color: #555;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 8px 0;
}


/* 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;
}

/* news Cards */
.news-card {
    margin-bottom: 20px;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-thumbnail {
    position: relative;
    margin-bottom: 10px;
}

.news-thumbnail img {
    width: 100%;
    max-height: 120px;
    object-fit: cover;
    border-radius: 4px;
}

.news-info h3 a{
	font-size:1rem;
}

.news-info .news-meta{
    color: #555;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 8px 0;
}

.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;
    }
    
    .expo-item {
        grid-template-columns: 1fr;
    }
    
    .expo-image img {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .nav-links {
        display: none;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}