.posts-container *::before {
    content: none !important;
    display: none !important;
}
.posts-container *::after {
    content: none !important;
    display: none !important;
}

.posts-container {
    display: flex;
    flex-direction: column;
    gap: 1.2em;

    width: 800px;
	
	margin: auto;
}

.single-post {
    border-style: solid;
    border-color: rgba(211, 211, 211, 0);
    border-width: 1px;
    background-color: #E7EAEC63;
    overflow: hidden;

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 1em;
}

.single-separator {
	width: 100%;
	height: 1px;
	background-color: #C7CED2;
	margin: auto;
	margin-top: 2em;
	margin-bottom: 2em;
}

.single-sub-container {
    display: flex;
    flex-direction: row;
    gap: 0.9em;
    max-width: 80%;
}



.single-img-container {
    max-height: 100%;
    height: 100%;
    width: 30%;
	min-width: 30%;
}
.single-img-container img {
    height: inherit;
    object-fit: cover;
	width: 100%;
}




.single-infos h2, .single-infos h4, .single-infos p{
    margin: 0;
    padding: 0;
}
.single-infos h2 {
    font-size: 2em;
}

.single-infos {
    display: flex;
    flex-direction: column;
    /*gap: 10px;*/

    padding-top: 0.5em;
    padding-bottom: 0.5em;
}

.single-svg-container {
    display: flex;
    flex-direction: row;
    gap: 0.3em;
    align-items: center;

    font-size: 1em;
    color: #504e4e;
    width: 100%;

    white-space: nowrap;
}
.single-svg-container h4 {
    font-size: 0.9em;
	margin-bottom: 0px !important;
}

.single-svg-container img {
    max-width: 0.7em;
}



.single-btns-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5em;

    min-width: 20%;
}

.single-btns-container a {
    text-decoration: none;
    padding: 0.3em;
    white-space: nowrap;
    text-align: center;
    margin-right: 0.5em;

    width: 80%;
}

.single-btn-buy {
    background-color: rgb(39, 168, 69);
    color: rgb(249, 245, 245);
    border-color: rgb(39, 168, 69);
    border-width: 1px;
    border-style: solid;

    transition: 100ms;
}
.single-btn-buy:hover {
    background-color: rgb(38, 193, 74);
    color: rgb(255, 255, 255);
    border-color: rgb(39, 168, 69);

    transition: 100ms;
}

.single-btn-info {
    border-color: black;
    border-width: 1px;
    border-style: solid;

    transition: 100ms;
}
.single-btn-info:hover {
    border-color: rgba(0, 0, 0, 0);
    border-width: 1px;
    border-style: solid;
    color: white;
    background-color: black;

    transition: 100ms;
}