.single-post-article {
    padding: 160px 0 96px;
}

.single-post-article .section-title {
    color: rgba(32, 52, 75, 1);
	margin-bottom: 24px;
}

.single-post-article .post-meta-row {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin: 8px 0 24px;
	display: none;
}

.single-post-article .post-author {
    text-transform: capitalize;
}

.single-post-article .post-author,
.single-post-article .post-date {
    color: rgba(33, 37, 41, 0.5);
    font-size: 18px;
    font-weight: 500;
}

.single-post-article .post-image img {
    width: 100%;
    border-radius: 40px;
}

.single-post-article .post-content {
    position: relative;
}

.single-post-article .post-content.collapsed::before {
    position: absolute;
    content: '';
    left: 0;
    bottom: 0;
    width: 100%;
    height: 64px;
    backdrop-filter: blur(1px);
    background: linear-gradient(180deg, #fff0 -306%, #FFFFFF 100%);
}

.single-post-article .post-content-row {
    display: flex;
    gap: 64px;
    align-items: start;
    margin-top: 40px;
}

.single-post-article .post-share-buttons {
    display: flex;
    flex-direction: column;
    gap: 38px;
}
.single-post-article .post-share-buttons a{
	width: 48px;
    height: 48px;
}
.single-post-article .read-more-btn {
    margin: 48px auto 0;
}


.blog-section {
    margin-bottom: 150px;
}

.blog-section .blog-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}
.blog-section .section-title{
	text-align: center;
  	margin-bottom: 80px;
}

.blog-section .blog-card {
    width: calc((100% / 4) - 40px / 4 * 3);
    padding: 44px 32px;
    border-radius: 44px;
    background-color: rgba(245, 244, 241, 1);
    height: 412px;
    transition: all 0.3s;
}

.blog-section .blog-card:hover {
    background-color: var(--secondary);
}

.blog-section .blog-card-date {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    color: rgba(33, 37, 41, 0.5);
    margin-bottom: 8px;
    transition: color 0.3s;
}

.blog-section .blog-card:hover .blog-card-date {
    color: var(--primary);
}

.blog-section .blog-card-title {
    font-size: 24px;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 24px;
    min-height: 2lh;
    transition: color 0.3s;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
}

.blog-section .blog-card:hover .blog-card-title {
    color: var(--white);
}

.blog-section .blog-card-desc {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.3;
    transition: color 0.3s;
    margin-bottom: 16px;
}

.blog-section .blog-card:hover .blog-card-desc {
    color: var(--white);
}

.blog-section .blog-card-content {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-section .blog-card-content .btn {
    margin-top: auto;
}

.blog-section .pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 60px;
}

.blog-section .pagination .page-numbers {
    width: 55px;
    height: 55px;
    border-radius: 10px;
    background-color: rgba(243, 243, 243, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-section .pagination .page-numbers.current {
    background-color: rgba(254, 153, 37, 1);
    color: var(--white);
}

.blog-section .pagination .page-numbers.next {
    font-size: 0;
    background-image: url('../img/blog-next-icon.svg');
    background-size: auto;
    background-repeat: no-repeat;
    background-position: center;
}

.blog-section .pagination .page-numbers.prev {
    font-size: 0;
    background-image: url('../img/blog-prev-icon.svg');
    background-size: auto;
    background-repeat: no-repeat;
    background-position: center;
}



@media (min-width: 768px) {
    .blog-section .blog-card:hover {
        transform: translateY(-40px);
    }
}

@media (min-width: 1400px) {
    .single-post-article .container {
        max-width: 1154px;
    }
}

@media (max-width: 1200px) {
    .blog-section .blog-card {
        width: calc((100% / 3) - 40px / 3 * 2);
    }

    .single-post-article {
        padding: 120px 0 60px;
    }

    .blog-section {
        margin-bottom: 80px;
    }
}

@media (max-width: 992px) {
    .blog-section .blog-card {
        width: calc((100% / 2) - 40px / 3 * 2);
    }

    .single-post-article .post-content-row {
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .blog-section .blog-container {
        gap: 20px;
    }

    .blog-section .blog-card {
        width: calc((100% / 2) - 20px / 3 * 2);
        height: auto;
    }

    .blog-section .blog-card-title {
        min-height: unset;
    }

    .blog-section .pagination {
        margin-top: 40px;
    }
	
	.blog-section .section-title{
		margin-bottom: 40px;
	}

    .single-post-article .post-content-row {
        flex-direction: column;
    }

    .single-post-article .post-share-buttons {
        flex-direction: row;
        gap: 16px;
		margin-inline: auto;
    }
	

    /* .single-post-article .post-share-buttons img {
        width: 32px;
        height: 32px;
    } */
}

@media (max-width: 576px) {
	.single-post-article{
		padding: 80px 0 40px;
	}
	.single-post-article .post-share-buttons{
		gap: 32px;
	}
	.single-post-article .post-share-buttons a{
		width: 40px;
  		height: 40px;
	}
	.single-post-article .post-content-row{
		margin-top: 24px;
	}
	.single-post-article .post-content-row{
		gap: 24px;
	}
	.single-post-article .read-more-btn{
		margin: 24px auto 0;
	}
	.single-post-article .post-meta-row{
		margin: 12px 0;
	}
	.blog-section{
		padding: 0 !important;
		margin-bottom: 40px;
	}
    .blog-section .blog-card {
        width: 100%;
    }
	.blog-section .section-title{
		margin-bottom: 16px;
	}
	.blog-section .blog-container{
		margin-top: 0 !important;
	}
	.single-post-article .section-title{
		margin-bottom: 12px;
	}
	
}
@media (max-width: 400px) {
	.single-post-article .post-meta-row{
		flex-direction: column;
  		align-items: center;
	}
}