﻿h2 {
    margin-bottom: 5px;
}

.blog-section {
    width: 70vw;
    margin: 0 auto;
    padding: 2rem 0;
}

.blog-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.blog-card {
    display: flex;
    background: #faedcd;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
    color: inherit;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.blog-card img {
    width: 150px;
    height: 100%;
    object-fit: cover;
}

.blog-info {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-date {
    font-size: 0.875rem;
    color: gray;
}

.blog-title {
    font-size: 1.2rem;
    margin-top: 0.5rem;
    font-weight: bold;
}
