
.main-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

.page-header {
    margin-bottom: 3rem;
    text-align: center;
}

.page-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.page-subtitle {
    color: #9ca3af;
    font-size: 1.125rem;
}

.news-grid {
    width: 90%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .news-grid {
        grid-template-columns: 2fr 1fr;
    }
}

.news-main {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.news-article {
    background-color: #111827;
    border-radius: 0.75rem;
    padding: 2rem;
    border: 1px solid #374151;
    transition: transform 0.2s, border-color 0.2s;
}

.news-article:hover {
    transform: translateY(-2px);
    border-color: #0393E3;
}

.article-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.article-category {
    background-color: #0393E3;
    color: #ffffff;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.article-date {
    color: #9ca3af;
    font-size: 0.875rem;
}

.article-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #ffffff;
}

.article-excerpt {
    color: #d1d5db;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    color: #9ca3af;
}

.article-photos {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.meta-item svg {
    width: 1rem;
    height: 1rem;
}

.read-more-btn {
    background-color: #0393E3;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    text-decoration: none;
    display: inline-block;
}

.read-more-btn:hover {
    background-color: #0284C7;
}

/* Sidebar */
.news-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-card {
    background-color: #111827;
    border-radius: 0.75rem;
    padding: 1.5rem;
    border: 1px solid #374151;
}

.sidebar-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #0393E3;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trending-item {
    padding: 1rem 0;
    border-bottom: 1px solid #374151;
}

.trending-item:last-child {
    border-bottom: none;
}

.trending-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
    font-size: 0.9rem;
}

.trending-meta {
    color: #9ca3af;
    font-size: 0.75rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.newsletter-input {
    background-color: #1f2937;
    border: 1px solid #374151;
    color: #ffffff;
    padding: 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
}

.newsletter-input:focus {
    outline: none;
    border-color: #0393E3;
}

.newsletter-btn {
    background-color: #0393E3;
    color: #ffffff;
    padding: 0.75rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.newsletter-btn:hover {
    background-color: #0284C7;
}

.social-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background-color: #1f2937;
    border-radius: 0.5rem;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: #0393E3;
}

.stat-label {
    font-size: 0.75rem;
    color: #9ca3af;
    text-transform: uppercase;
}

/* Footer */
.footer {
    border-top: 1px solid #374151;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

.footer-section h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.footer-placeholder {
    background-color: #111827;
    border-radius: 0.5rem;
    padding: 1rem;
    border: 1px solid #374151;
    height: 8rem;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.social-links a {
    color: #0393E3;
    text-decoration: underline;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #0284C7;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1f2937;
}

::-webkit-scrollbar-thumb {
    background: #374151;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #4b5563;
}

/* Mobile menu toggle */
.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

/* Mobile Navigation */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #000000;
    z-index: 1000;
    padding: 2rem;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.125rem;
    padding: 1rem 0;
    border-bottom: 1px solid #374151;
}

.mobile-nav a:hover,
.mobile-nav a.active {
    color: #0393E3;
}

/* Mobile responsive improvements */
@media (max-width: 768px) {
    .main-content {
        padding: 1rem;
    }
    
    .page-header {
        margin-bottom: 2rem;
    }
    
    .page-title {
        font-size: 1.75rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .news-article {
        padding: 1.5rem;
    }
    
    .article-title {
        font-size: 1.25rem;
    }
    
    .article-header {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .article-meta {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .sidebar-card {
        padding: 1rem;
    }
    
    .sidebar-title {
        font-size: 1.125rem;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 1rem;
    }
    
    .logo {
        font-size: 1.25rem;
    }
    
    .subtitle {
        display: none;
    }
    
    .main-content {
        padding: 0.75rem;
    }
    
    .page-title {
        font-size: 1.5rem;
    }
    
    .news-article {
        padding: 1rem;
    }
    
    .article-title {
        font-size: 1.125rem;
    }
    
    .article-meta {
        font-size: 0.75rem;
    }
    
    .meta-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.125rem;
    }
    
    .read-more-btn {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
    
    .trending-title {
        font-size: 0.875rem;
    }
    
    .trending-meta {
        font-size: 0.6875rem;
    }
}