/* Publications and Articles Page Styles */

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    margin: 0;
    padding: 0;
}

.news-hero {
    background: linear-gradient(rgba(3, 3, 51, 0.8), rgba(3, 3, 51, 0.8)), url('../img/news-hero-bg.jpg') no-repeat center center;
    background-size: cover;
    color: #fff;
    padding: 100px 0;
    text-align: center;
    margin-bottom: 3rem; /* Increased space below hero section */
}

.news-hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.news-hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.8;
}

.publications-section {
    padding: 4rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.publication-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.publication-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
}

.publication-details {
    flex: 1;
}

.publication-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 0.75rem;
}

.publication-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 0.5rem;
}

.publication-meta {
    font-size: 0.9rem;
    color: #888;
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.download-icon {
    font-size: 2rem;
    color: #007bff;
    cursor: pointer;
    transition: color 0.3s ease;
}

.download-icon:hover {
    color: #0056b3;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .publication-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .download-icon {
        margin-top: 1rem;
    }
}
