.home.top_section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.home main, .error404 main {
    background: var(--new-white);
    border-radius: 25px 25px 0 0;
    margin: auto;
    height: 100%;
    z-index: -1;
    width: 92vw; 
    max-width: 1760px;
    /* padding-bottom: 60px; */
}

.posts_row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.posts_row article {
    min-height: 445px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.posts_row .line {
    display: none;
}
.posts_row .post_main {
    height: 100%;
    justify-content: space-between;
    display: flex;
    flex-direction: column;
}

.posts_column {
    display: flex;
    flex-direction: column;
    /* width: 58%; */
    position: relative;
    z-index: 1; 
}

.posts_column .post_card {
    display: flex;           
    gap: 30px;
}
.posts_column article .post_inner {
    min-height: auto !important;
}
.posts_column .post_main {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 30px;
}
.posts_white .posts_column article {
    max-width: 100% !important;
}
.posts_column .post_card .post_image img {
    width: 100%;
    height: auto;
    display: block;
}
.posts_white .posts_column article .title_date::after {
    width: 100%;
    max-width: 100%;
}
.posts_column article .post_inner {
    padding:0;
}

.posts_white {
    width: 100%;
    padding-bottom: 100px;
    border-bottom: 1px solid var(--new-blue);
}
.home .posts_row article .post_inner {
    flex-direction: column;
}
.posts_white article {
    padding:40px 0 50px;
    /* border-bottom: 1px dashed var(--blue); */
    width: 100%;
    max-width: 930px;
}
.posts_column .posts_white article {
    padding: 20px 0 50px 0;
}
.posts_white .line {
    /* height: 1px;
    background: repeating-linear-gradient( to right, var(--blue) 0px, var(--blue) 5px, transparent 5px, transparent 10px); */
    border-bottom: 1px dotted var(--blue);
}
.home .posts_white .line {
    width: 100%;
}

.posts_white article .text {
    width: 100%;
    max-width: 570px;
}
/* .day_nav {
    margin-right: 6vw;
} */
button.day_btn {
    background: transparent;
    border: none;
    color: var(--blue);
    font-family: var(--font-main);
    font-size: var(--font-size-small);
    font-style: normal;
    font-weight: var(--font-weight-medium);
    line-height: normal;
    cursor: pointer;
}
button.day_btn.active {
    opacity: 0.5;
}

.home.posts_white .posts_column .line:last-of-type {
    display: none !important;
}

@media (min-width: 993px) and (max-width: 1600px) {

.posts_row, .posts_column {
    width: 97%;
}
}
@media (max-width: 1400px) {
.posts_white article {
    max-width: 100%;
}
article img {
    max-width: 500px;
}
}
@media (min-width: 993px) and (max-width: 1250px) {
.posts_row {
    grid-template-columns: repeat(2, 1fr);
}
.posts_row article {
    min-height: 100%;
}
}
@media (max-width: 992px) {
/* .home main {
    margin-bottom: 50px;
} */
.home.top_section {
    flex-direction: column;
    align-items: start;
    gap: 25px;
}
article .post_inner {
    flex-direction: column;
}
.posts_white article {
    padding: 40px 0;
}
.posts_white article:last-of-type {
    padding: 40px 0 0 0;
}
.posts_white article .text {
    max-width: 100%;
}
.posts_row {
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
}
.posts_row article {
    min-height: auto;
    padding: 50px 0 20px 0;
}
.posts_row .line {
    display: block;
}
.home .posts_white .line {
    width: 100%;
}
/* .home .posts_column {
    padding-inline: 20px !important;
} */
.posts_column .post_card {
    flex-direction: column;
    gap: 0;
}
.home .posts_column .post_card:nth-child(2) {
    padding-top: 40px;
}

article img {
    max-width: 100%;
}
.home_colored_bg {
    border-radius: 35px;
    height: calc(100vh - 180px);
}
}      
