.blog-container {
    max-width: 1000px;
    margin: 30px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-radius: 12px;
}

.blog-title {
    font-size: 2rem;
    color: #b30000;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
}

.blog-image {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 25px;
}

.blog-meta {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
    text-align: center;
}

.blog-content {
    font-size: 1rem;
    color: #333;
    line-height: 1.8em;
    text-align: justify;
}

@media (max-width: 768px) {
    .blog-title {
        font-size: 1.5rem;
    }

    .blog-container {
        padding: 15px;
        margin: 15px;
    }
}

@media (max-width: 480px) {
    .blog-title {
        font-size: 1.3rem;
    }

    .blog-meta {
        font-size: 0.8rem;
    }
}