.posts-container {
    display: flex;
    flex-direction: column;
    gap: 1.2em;
    max-width: 800px;
	margin: auto;
}

.single-post {
    display: flex;
    flex-direction: column;
}

.single-main-infos h2 {
    margin: 0;
}
/* .single-infos p {
    margin: 10px 0;
} */

.single-svg-container {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
}
.single-svg-container img {
    width: 0.8rem;
    color: var(--darker-text);
}
.single-svg-container h4 {
    color: var(--darker-text);
    margin: 0;
}
.single-svg-container p {
    color: var(--darker-text);
    margin: 0;
}
.single-svg-container a {
    color: var(--darker-text);
}


.agenda-description {
    margin: 10px 0;;
}
.agenda-description * {
    margin: auto;
}


.single-btns-container {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: fit-content;
    margin: 10px auto 0 auto;
}





.single-separator {
	width: 90%;
	height: 1px;
	background-color: #e6e1d8cd;
    margin: auto;
	margin: 24px auto 14px auto;
}





@media (min-width: 800px) {
    .single-post {
        flex-direction: row;
        justify-content: space-between;
        gap: 5em;
    }
    
    .single-btns-container {
        justify-content: center;
    }

    /* .single-sub-container {
        width: 50%;
    } */
}