.hero-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--primary-grey);
    margin-bottom: 2rem;
    padding: 1rem;
    overflow: hidden;
}

.hero-image {
    flex: 1;
    max-width: 40%;
    height: auto;
    padding: 2rem;
}

.hero-text {
    flex: 1;
    padding: 1rem;
}

.hero-text h1 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
    }

    .hero-image {
        width: auto;
        max-width: 85%;
        height: auto;
        padding: 0.5rem;
        flex: none;
    }

    .hero-text {
        padding: 0.5rem;
    }
}

.post-list-section h2 {
    text-align: center;
    font-size: 1.6rem; /* Adjust size if needed */
    font-weight: 700;
    color: var(--primary-black);
    margin-bottom: 1.5rem;
}

/* Post Card Grid */
.post-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.post-card {
    background-color: var(--secondary-sage); /* Accent Color */
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: none;
}

.post-card a {
    display: block;
    text-decoration: none;
    color: var(--primary-black);
}

.post-card-image img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    background-color: var(--secondary-pink); /* Default Image Background */
}

.post-card-content {
    padding: 1rem;
    background-color: var(--secondary-mist); /* Clean flat look */
}

.post-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.1rem;
    color: var(--primary-black);
}

.post-card-date {
    font-size: 1rem;
    color: var(--primary-black);
    margin-bottom: 0.5rem;
}

.post-card-excerpt {
    font-size: 1rem;
    color: var(--primary-black);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .post-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .post-card-grid {
        grid-template-columns: 1fr;
    }
}