/* Container for the entire list of posts */
.post-list-wrapper {
    padding: 20px;
}

/* Grid layout for the post cards */
.post-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

/* Individual post card */
.post-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Post card image */
.post-card-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-bottom: 1px solid #ddd;
}

/* Post card content (title & excerpt) */
.post-card-content {
    padding: 15px;
}

.post-card-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.post-card-excerpt {
    font-size: 14px;
    color: #555;
}

/* Hover effect for cards */
.post-card:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Header */

/* Style Header */
.section-title--with-border {
    padding-bottom: 15px;
    border-bottom: 1px solid #dde6e8;
    margin-bottom: 20px;
}

.section-title h2 {
    margin-top: 30px;
    font-size: 2rem;
}