/* Blog Section Styling */
.blog-section {
    max-width: 1200px;
    margin: 50px auto;
    text-align: center;
}

.section-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
}

/* Blog Container */
.blog-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    justify-content: center;
}

/* Blog Card */
.blog-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
    text-align: left;
}

/* Hover Effect */
.blog-card:hover {
    transform: translateY(-5px);
}

/* Blog Image */
.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Blog Content */
.blog-content {
    padding: 15px;
}

.blog-category {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.blog-content h3 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.blog-content h3 a {
    text-decoration: none;
    color: #007bff;
    transition: color 0.3s ease;
}

.blog-content h3 a:hover {
    color: #0056b3;
}

.blog-content p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
}
