/* blog.css */
.blog-section {
    padding: 80px 0;
    background: var(--black);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.blog-card {
    background: var(--gray);
    position: relative;
}

.blog-image {
    position: relative;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-date {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--red);
    color: var(--white);
    width: 50px;
    height: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: var(--font-heading);
    line-height: 1;
}

.blog-date span:first-child {
    font-size: 1.2rem;
}

.blog-date span:last-child {
    font-size: 0.7rem;
}

.blog-content {
    padding: 20px;
}

.blog-link {
    color: var(--red);
    text-decoration: none;
    font-family: var(--font-accent);
    font-size: 1.1rem;
    display: inline-block;
    margin-top: 15px;
    transition: color 0.3s ease;
}

.blog-link:hover {
    color: var(--white);
}

.blog-link i {
    margin-left: 5px;
}