/* Blog Pages Styles */

/* Blog Header */
.blog-header {
    padding: 120px 20px 40px;
    max-width: 900px;
    margin: 0 auto;
}

.blog-title {
    font-size: 36px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 20px;
}

.blog-date {
    color: #666;
    font-size: 14px;
    margin-bottom: 40px;
}

/* Blog Content */
.blog-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px 60px;
}

.blog-hero-image {
    width: 100%;
    max-width: 700px;
    margin: 0 auto 40px;
    text-align: center;
}

.blog-hero-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.blog-text {
    line-height: 1.8;
    color: #333;
    margin-bottom: 30px;
}

/* Event Details */
.event-details {
    background-color: #f8f8f8;
    padding: 30px;
    border-radius: 10px;
    margin: 40px 0;
}

.event-details h3 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 500;
}

.event-details ul {
    list-style: none;
    padding: 0;
}

.event-details li {
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
}

.event-details li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #666;
}

.event-details a {
    color: #0066cc;
    text-decoration: none;
}

.event-details a:hover {
    text-decoration: underline;
}

/* Share Section */
.blog-share {
    margin: 60px 0;
    text-align: center;
}

.blog-share-text {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

/* Related Articles */
.related-articles {
    background-color: #f5f5f5;
    padding: 60px 0;
}

.related-articles-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.related-articles h2 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 40px;
    text-align: center;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.article-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s;
    display: block;
}

.article-card:hover {
    transform: translateY(-5px);
}

.article-card-image {
    width: 100%;
    height: 200px;
    background-color: #e0e0e0;
    overflow: hidden;
}

.article-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-card-content {
    padding: 20px;
}

.article-card-title {
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 1.5;
}

.article-card-date {
    font-size: 14px;
    color: #666;
}

/* Show More/Less Button */
.show-more-container {
    text-align: center;
}

.show-more-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 5px;
    text-decoration: none;
    color: #333;
    cursor: pointer;
    transition: all 0.3s;
}

.show-more-btn:hover {
    background-color: #f8f8f8;
}

/* Hidden articles */
.articles-grid.collapsed .article-card:nth-child(n+4) {
    display: none;
}

/* Responsive */
@media (max-width: 768px) {
    .blog-title {
        font-size: 28px;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .event-details {
        padding: 20px;
    }
}