.blog-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: auto;
}
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
}
.section-title span {
    color: #4d4dff;
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}
.blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.2s ease;
}
.blog-card:hover {
    transform: translateY(-5px);
}
.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.blog-content {
    padding: 20px;
}
.blog-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}
.blog-content p {
    color: #666;
    font-size: 0.95rem;
}
.read-more {
    display: inline-block;
    margin-top: 10px;
    color: #4d4dff;
    text-decoration: none;
    font-weight: bold;
}
.read-more:hover {
    text-decoration: underline;
}
.pagination {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}
