.post_list_1  {
    background-color: var(--light-primary-bkgd);
    padding-top: 75px;
    padding-bottom: 75px;
}

.post_list_1 .content_div {
    width: 80%;
}

.post_list_1  .columns .column_1 {
    width: 65%;
    padding-right: 65px;
}

.post_list_1  .columns .column_1 .primary_button:hover {
    cursor: pointer;
    text-decoration: none;
}

.post_list_1  .columns .column_2 {
    width: 35%;
}

.post_list_1  .repeater {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    width: 100%;
    column-gap: 50px;
    row-gap: 125px;
}

.post_list_1  .repeater .item {
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.post_list_1  .repeater .image img {
    width: 100%;
    object-fit: cover;
    height: 400px;
    border-radius: var(--button-radius);
    box-shadow: var(--shadow);
}

.post_list_1  .repeater h3 {
    color: var(--secondary);
    font-size: 32px;
    margin-block-start: 0em;
    margin-block-end: 0em;
    margin-bottom: 10px;
    min-height: 60px;
}

.post_list_1  .repeater .excerpt p {
    max-width: 95%;

}

@media (max-width: 992px)
{
    .post_list_1  .repeater {
        display: flex;
        flex-direction: column;
    }

    .post_list_1  .columns {
        display: flex;
        flex-direction: column-reverse;
    }


    .post_list_1 .content_div {
        width: 100%;
    }
    

    .post_list_1  {
        padding-bottom: 20px;
    }

    .post_list_1  .columns .column_1 {
        width: 100%;
        padding-right: 0px;
    }
    
    .post_list_1  .columns .column_2 {
        width: 100%;
    }

    .post_list_1  .repeater .item {

       margin-bottom: 35px;
    }

    .post_list_1  .repeater .primary_button {
        margin-top: 15px;
        margin-left: 0px;
        max-width: 100%;
        position: static;
    
    }

    .post_list_1  .repeater .image img {
        height: 400px;
        margin-bottom: 50px;
    }

    .post_list_1  .repeater h3 {

        min-height: unset;
        margin-bottom: 25px;
    }
    
    .post_list_1  .repeater .excerpt {
        max-width: unset;
    }

    .post_list_1 .repeater {
        row-gap: 50px;
        margin-bottom: 50px;
    }
    
    
}