/* Blog Section */
.blog-section {
    padding: 60px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background-color: var(--card-background);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow-color);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
}

.blog-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 20px;
}

.blog-category {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    margin-bottom: 10px;
}

.blog-title {
    font-size: 18px;
    margin-bottom: 10px;
}

.blog-excerpt {
    font-size: 14px;
    color: #b2bec3;
    margin-bottom: 15px;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #b2bec3;
    margin-bottom: 15px;
}

.blog-link {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 500;
}

.blog-link:hover {
    color: var(--secondary-color);
}

.blog-action {
    text-align: center;
    margin-top: 30px;
}