.brand-section--healthytips {
    margin-bottom: 10.9rem;
}

.brand-section--healthytips .container {
    /* width: min(1100px, calc(100% - 40px)); */
}

.brand-section--healthytips .container > .title-wrapper {
    display: none;
}

.brand-section--healthytips .container > .title-wrapper.active {
    display: block;
    margin: 0;
    margin-bottom: 3rem;
    color: var(--main-color);
    font-weight: 700;
    font-size: 3.2rem;
    text-align: center;
}

.brand-section--healthytips .list-posts-wrapper {
    display: none;
}

.brand-section--healthytips .list-posts-wrapper.active {
    display: flex;
    flex-direction: column;
    gap: 8rem;
    /* width: min(1100px, calc(100% - 40px)); */
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.brand-section--healthytips .list-posts-wrapper .single-post {
    display: flex;
    gap: 5rem;
    box-shadow: 0px 2px 4px 2px #0000000D;
    border-radius: 20px;
    padding: 1.6rem 5rem;
}

.brand-section--healthytips .list-posts-wrapper .single-post .image-wrapper {
    width: 272px;
    height: 183px;
}

.brand-section--healthytips .list-posts-wrapper .single-post .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.brand-section--healthytips .list-posts-wrapper .single-post .title-wrapper {
    font-size: 3.2rem;
    margin-top: .8rem;
}

.brand-section--healthytips .list-posts-wrapper .single-post .shortdec-wrapper {
    font-size: 2rem;
    margin-top: .6rem;
}

.brand-section--healthytips .list-posts-wrapper .single-post .last-col {
    align-self: flex-end;
    margin-right: auto;
}

.brand-section--healthytips .list-posts-wrapper .single-post .button {
    background-color: var(--main-color);
    border-radius: 10px;
    width: 123px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2.4rem;
    margin-bottom: 1.4rem;
}

.brand-section--healthytips .full-posts-wrapper {
    display: none;
}

.brand-section--healthytips .full-posts-wrapper.active {
    display: block;
}

.full-posts-wrapper .back-button {
    margin-bottom: 30px;
}

.brand-section--healthytips .full-posts-wrapper .single-post {
    display: none;
}

.brand-section--healthytips .full-posts-wrapper .single-post.active {
/*     display: flex;
    flex-direction: row-reverse;
    gap: 4.5rem; */
	
	display: block;
}

.single-post.active .col:first-child {
	float: left;
	margin: 10px;
}

.single-post.active .image-wrapper {
    width: 480px;
    height: 380px;
}

.single-post.active .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.single-post.active h2 {
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--main-color);
    margin: 0;
}

.single-post.active p {
    font-size: 2.4rem;
    line-height: 3.3rem;
}

@media (max-width: 1023px) {
    .brand-section--healthytips .list-posts-wrapper .single-post {
        flex-direction: column;
        gap: 2rem;
    }

    .brand-section--healthytips .list-posts-wrapper .single-post .last-col {
        align-self: flex-start;
        margin-right: 0;
    }

    .brand-section--healthytips .full-posts-wrapper .single-post.active {
        flex-direction: column;
    }
	
	.single-post.active .image-wrapper {
		width: 100%;
		height: auto;
	}
	
	.full-posts-wrapper .back-button {
		width: 30px;
        height: 20px;
		margin-bottom: 0;
	}
	
	.full-posts-wrapper .back-button svg {
		width: 100%;
        height: 100%;
        object-fit: cover;
	}
	
	.single-post.active .col:first-child {
		margin: 0;
		margin-bottom: 10px;
	}
}

@media (max-width: 500px) {
    .brand-section--healthytips .list-posts-wrapper .single-post {
        padding: 1.5rem;
    }

    .brand-section--healthytips .list-posts-wrapper .single-post .image-wrapper {
        width: 100%;
        height: auto;
    }
}