#archive_posts_wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 800px; /* Adjust as needed */
    margin: 0 auto;
    flex: 1; /* Отступ для футера */
}

#archive_post {
    display: flex;
    align-items: flex-start;
    flex-direction: row;
    padding: 15px 0 0.1em 0;
    gap: 2.75rem;
    width: 100%;
}

#archive_author_date {
    min-width: 150px;
}

#archive_author_date p {
    display: inline;
    align-items: start;
    margin: 0;
    line-height: 1.4;
    font-size: 0.95em; 
    color: #555;
}

#title_summary {
    padding-left: 0.01rem; /* Padding to separate it from the author/date section */
    display: flex; /* Use flexbox to arrange title and summary vertically */
    flex-direction: column; /* Stack children (h2 and p) vertically */
    flex-grow: 1; /* Allow this section to grow and take available space */
    align-items: flex-start;

}

/* Styles for the post title */
#title_summary h2 {
    margin-top: 0.5em; /* Remove default top margin */
    margin-bottom: 5px; /* Add a small margin between the title and the summary */
    font-size: 1.5em; /* Adjust title font size as needed */
}

/*removes visited link color and underline*/
#title_summary a {
    text-decoration: none;
    color: inherit;
}

#title_summary a:hover {
    color: rgb(95, 95, 95);
    transition-timing-function: ease-out;
    transition: 0.2s;
}

/* Styles for the post summary */
#title_summary p {
    font-size: 0.95em; /* Adjust summary font size as needed */
    color: #555; /* Slightly muted color for summary */
    margin: 0;
}
@media (max-width: 810px) {
    #archive_post {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
        padding-left: 5rem;
    }
    #title_summary {
        width: 100%;
    }

    #title_summary h2 {
        padding-right: 5rem; /* Remove left padding on smaller screens */
    }

    #archive_author_date {
        width: 100%;
        min-width: 0;
    }
    
    .left_support_area {
        margin-top: 0;
    }

    .left_support_area p {
        margin-bottom: 1em;
    }
}