.page-home__content {
    padding: 60px 0 100px 0;
}

.blog-page {
    padding-top: 150px;
}


.blog-h1 {
    font-size: 60px;
    color: white;
    line-height: 119%;
    margin: 50px 0 25px 0;

}

@media (max-width: 1500px) {
    .blog-h1 {
        font-size: 34px;
    }
}

.blog-h1::after {
    content: "";
    width: 90px;
    height: 2px;
    background: white;
    margin-top: 17px;
    display: none;
}

@media (max-width: 991.98px) {
    .blog-h1::after {
        display: block;
        margin-top: 10px;
        width: 60px;
    }
}

.blog-page #breadcrumbs {
    margin-left: auto;
    margin-right: auto;
}

.blog-page h1 {
    font-size: 46px;
}

@media (max-width: 575px) {
    .blog-page h1 {
        font-size: 40px;
    }
}

.blog-page h1:first-child {
    margin-top: 0;
}

.blog-page h2 {
    font-size: 36px;
    margin: 50px 0 25px 0;
}

.blog-page strong {
    font-weight: 700 !important;
}

.blog-items {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px;
}



.service-card__footer {
    padding-top: 30px;
    height: auto;
}

.blog-card .card-name {
    border-right: 0;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
    display: box;
    display: -webkit-box;
    font-size: 21px;
    font-weight: 600;
    line-height: 25px;
}

.card-text {
    padding: 15px;
    background-color: white;
    height: 134px;
    overflow: hidden;
}

.text-excerpt {
    border-right: 0;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    display: box;
    display: -webkit-box;
    overflow: hidden;
}

.blog-page table:not([class]) {
    margin: 20px 0;
    border-spacing: 0;
    border-collapse: collapse;
}

.blog-page td:not([class]),
.blog-page th:not([class]) {
    padding: 10px;
    border: 1px solid #d0d2d7;
    font-weight: 400;
}

.blog-page td:not([class]),
.blog-page th:not([class]) {
    padding: 10px;
    border: 1px solid #d0d2d7;
    font-weight: 400;
}

.post__meta.with-author{
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    background: var(--gray-background-60, linear-gradient(45deg, rgba(255, 255, 255, 0) 55%, rgba(255, 255, 255, 0.07) 126.4%), linear-gradient(90deg, rgba(31, 33, 36, 0.4) -2.27%, rgba(11, 11, 11, 0.4) 40.9%, rgba(31, 33, 36, 0.4) 83.43%, rgba(31, 33, 36, 0.4) 130.46%), rgba(41, 40, 47, 0.6));
    box-shadow: 0 20px 55px 0 rgba(0, 0, 0, 0.07);
}
.author-meta {
    display: flex;
    align-items: flex-start;
    flex-wrap: nowrap;
    margin-bottom: 15px;
}
.author-meta .author-avatar{
    min-width: 70px;
    max-width: 70px;
    height: 70px;
    margin-right: 10px;
}
html[lang="ar"] .author-meta .author-avatar{
    margin-right: 0;
    margin-left: 10px;
}
.author-meta .author-avatar img {
    width: 100%;
    height: 100%;
    margin: 0 !important;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.author-info strong{
    line-height: 1.2em;
    display: block;
}
.author-meta .author-desc{
    line-height: 1.2em;
    margin: 10px 0;
}
.author-meta .author-info a {
    text-decoration: underline;
}
.author-meta .author-info a:hover {
    text-decoration: underline;
}
.article-meta-info .article-meta-item {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    margin-bottom: 5px;
}
.article-meta-info .article-meta-item svg{
    min-width: 20px;
    max-width: 20px;
    height: 20px;
    margin-right: 3px
}
html[lang="ar"] .article-meta-info .article-meta-item svg{
    margin-right: 0;
    margin-left: 3px;
}
.article-meta-info .article-meta-item span{
    padding-left: 5px;
    line-height: 1em;
}
.article-rating{
    margin-top: 8px;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
}
.article-rating .stars{
    width: 138px;
    margin-left: 10px;
    margin-top: -4px;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
}
.article-rating .star {
    min-width: 20px;
    height: 20px;
}
.article-rating .star:not(.full):not(.hover){
    background: url("../images/star.svg") center no-repeat;
}
.article-rating .star.full, .star.hover{
    background: url("../images/star-gold.svg") center no-repeat;
}

@media (max-width: 1000px) {
    .blog-items {
        grid-template-columns: repeat(2, 1fr);

    }


}

@media (max-width: 575px) {

    .blog-items {
        grid-template-columns: repeat(1, 1fr);

    }
}