
h2 {
    text-align: center;
    color: #2c3e50;
    padding: 1rem;
}

.post-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    padding: 2rem;
}

.post-card {
    background: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

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

.post-card .content {
    padding: 1rem;
}

.post-card h3 {
    font-size: 1.2rem;
    margin: 0 0 0.5rem;
    color: #333;
}

.post-card .date {
    font-size: 0.9rem;
    color: #777;
}

.post-card p {
    font-size: 1rem;
    color: #555;
}

.post-card a {
    display: inline-block;
    margin-top: 0.5rem;
    text-decoration: none;
    color: #3498db;
}
