.publication-container {
    padding: 40px 0;
    max-width: 1200px;
    margin: 0 auto;
}

/* Title */
.publication-title {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

/* Meta Information */
.publication-meta {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.publication-meta p {
    margin-bottom: 10px;
    color: #555;
}

.publication-meta strong {
    color: #333;
}

/* Abstract Section */
.publication-abstract {
    margin-bottom: 30px;
}

.publication-abstract h3 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.publication-abstract p {
    line-height: 1.6;
    color: #444;
}

/* Full Text Section */
.publication-full-text {
    margin-bottom: 30px;
}

.publication-full-text h3 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.text-preview p {
    line-height: 1.6;
    color: #444;
}

.show-more-btn {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 15px;
    transition: background-color 0.3s ease;
}

.show-more-btn:hover {
    background-color: #0056b3;
}

/* Right Column */
.featured-image {
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Downloadable Files Section */
.downloadable-files {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
}

.downloadable-files h3 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.file-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.file-list li {
    margin-bottom: 10px;
}

.file-list a {
    display: block;
    padding: 12px 15px;
    background: white;
    border-radius: 5px;
    color: #007bff;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #dee2e6;
}

.file-list a:hover {
    background: #e9ecef;
    color: #0056b3;
    text-decoration: none;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .publication-container {
        padding: 20px;
    }
    
    .publication-title {
        font-size: 2rem;
    }
    
    .col-md-8,
    .col-md-4 {
        padding: 0 15px;
    }
    
    .featured-image {
        margin-top: 30px;
    }
}

/* Full Content Animation */
.full-content {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
}

.full-content.show {
    opacity: 1;
    max-height: none;
} 