.post-container {
    background-color: var(--Post-Background);
    padding: 2.375rem 0.688rem;
}

h2 {
    color: var(--primary-color);
    font-family: "Heebo", sans-serif;
    font-size: 18px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 1rem;
}

h6 {
    display: none;
}

.flex-container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
}

.posts {
    border-radius: 4px;
    background: #FFF;
    box-shadow: 0px 4px 10px 0px rgba(187, 225, 250, 0.25);
    padding: 1.5rem;
}

.post-title{
    color: var(--primary-color);
    font-family: "Heebo", sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: left;
}

.date-topic {
   display: flex;
   gap: 1rem;
   margin-bottom: 1rem;
}

.date, .topic{
    color: var(--primary-color);
    font-family: Heebo;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.content {
    color: var(--primary-color);
    font-family: "Heebo", sans-serif;
    font-size: 16px;
    font-weight: 400;
}

/* Media Query for Large Screens */
@media (min-width: 992px) {
    .post-container {
        padding: 2.5rem 7.5rem;
    }

    .title-container {
        display: flex;
        justify-content: space-between;
        margin-bottom: 1rem;
     }

    h2 {
      font-size: 22px;
    }

    h6 {
        display: block;
        color: var(--View-Color );
        text-align: right;
        font-family: "Heebo", sans-serif;
        font-size: 16px;
        font-weight: 400;
    }

    .post-title {
        font-size: 26px;
    }

    .date, .topic {
        font-size: 18px;
    }

    .flex-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .posts {
        padding: 2.5rem;
    }
}