/* Blog-specific styles */

.blog-intro {
    margin-bottom: 40px;
    text-align: center;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.blog-card {
    background: #fff;
    border: 1px solid #d4b483;
    border-radius: 5px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.blog-image {
    height: 180px;
    background: #8b0000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-image {
    font-family: 'Cinzel', serif;
    color: #f4e4bc;
    font-size: 2rem;
    font-weight: bold;
}

.blog-content {
    padding: 20px;
}

.blog-content h3 {
    font-family: 'Cinzel', serif;
    margin-bottom: 10px;
}

.blog-content h3 a {
    color: #8b0000;
    text-decoration: none;
    transition: color 0.3s;
}

.blog-content h3 a:hover {
    color: #6b0000;
}

.blog-date {
    font-style: italic;
    color: #666;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.blog-excerpt {
    margin-bottom: 15px;
    line-height: 1.5;
}

.read-more {
    display: inline-block;
    color: #8b0000;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s;
}

.read-more:hover {
    color: #6b0000;
}

/* Individual blog post styles */
.blog-post {
    background: #fff;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.blog-post-header {
    margin-bottom: 30px;
    text-align: center;
}

.blog-post-header h2 {
    font-family: 'Cinzel', serif;
    color: #8b0000;
    margin-bottom: 10px;
}

.blog-post-meta {
    font-style: italic;
    color: #666;
    margin-bottom: 20px;
}

.blog-post-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.blog-post-content h3 {
    font-family: 'Cinzel', serif;
    color: #8b0000;
    margin: 30px 0 15px;
}

.blog-post-content ul, 
.blog-post-content ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.blog-post-content li {
    margin-bottom: 10px;
}

.blog-post-content blockquote {
    border-left: 4px solid #8b0000;
    padding-left: 20px;
    margin: 20px 0;
    font-style: italic;
    color: #555;
}

.blog-post-content img {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
    border-radius: 5px;
}

.blog-post-footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #d4b483;
}

.blog-post-tags {
    margin-bottom: 20px;
}

.blog-post-tags span {
    display: inline-block;
    background: #f4e4bc;
    padding: 5px 10px;
    margin-right: 10px;
    border-radius: 3px;
    font-size: 0.9rem;
}

.blog-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.blog-navigation a {
    color: #8b0000;
    text-decoration: none;
    transition: color 0.3s;
}

.blog-navigation a:hover {
    color: #6b0000;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-post {
        padding: 20px;
    }
}