/* Blog specific styling */

.blog-posts-wrapper {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}

.blog-post-card {
    background-color: white;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.blog-title {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.3;
    margin: 0 0 16px 0;
    text-decoration: none;
}

.blog-title-link {
    text-decoration: none;
    color: inherit;
}

.blog-title-link:hover .blog-title {
    color: #007bff;
}

.post-info-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.post-info {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.post-summary {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin: 0 0 24px 0;
}

.button-round-2 {
    display: inline-block;
    background-color: #007bff;
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

.button-round-2:hover {
    background-color: #0056b3;
    color: white;
    text-decoration: none;
}

.body-copy {
    max-width: 800px;
    margin: 0 auto;
}

.body-copy p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #333;
}

.body-copy img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 24px 0;
}

.button-wrapper {
    text-align: center;
}

@media (max-width: 768px) {
    .blog-post-card {
        padding: 24px;
        margin-bottom: 24px;
    }
    
    .blog-title {
        font-size: 20px;
    }
    
    .post-summary {
        font-size: 15px;
    }
}