.blog {
    margin-top: 30px;
}
.header-line {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;

}
.header-line h2 {
    line-height: 3.4rem;
    margin-bottom: 2rem;
    font-family: "Manrope", sans-serif;
    font-weight: 700;
}
.header-line a {
    padding: 10px 15px;
    background: var(--theme-color);
    border-radius: 10px;
    cursor: pointer;
    color: white;
    transition: background-color 0.3s ease, transform 0.3s ease;
}
.header-line a:hover {
    background: var(--second-theme-color);

}

.blog__post__list {
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(320px,1fr));
    grid-gap: 24px
}

ul.blog__post__list {
    position: relative;
    display: grid
;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    grid-gap: 24px;
}

.blog__post {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    border: 1px solid var(--border-theme-color);
}

.blog__post .image__wrapper {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    padding-top: 66%;
    overflow: hidden
}

.blog__post .image__wrapper img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    -o-object-position: center;
    object-position: center;
    -o-object-fit: cover;
    object-fit: cover;
    transition: all .6s ease-in-out

}

.blog__post:hover {
    border-color: var(--clr-1)
}

.blog__post:hover img {
    transform: scale(1.15)
}

.blog__post .info {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px
}

.blog__post .info .name {
    position: relative;
    display: block;
    font-size: var(--h4);
    font-weight: 500;
    margin-bottom: 8px
}

.blog__post .info .date {
    font-size: var(--h6);
    font-weight: 500;
    color: grey
}

.blog__post .button,.richtext {
    margin-top: 24px
}

.richtext {
    position: relative;
    display: block;
    line-height: 2
}

.richtext * {
    line-height: 1.75;
    color: inherit
}

.richtext br,.richtext p {
    display: block;
    margin-bottom: 16px
}

.richtext .h1,.richtext .h2,.richtext .h3,.richtext h1,.richtext h2,.richtext h3 {
    padding-top: 24px;
    padding-bottom: 24px
}

.richtext :first-child,.richtext h1 {
    padding-top: 0
}

.richtext .h2,.richtext .h3,.richtext h2,.richtext h3 {
    font-weight: 600
}

.richtext li {
    display: list-item;
    text-align: match-parent;
    padding-left: var(--px16)
}

.richtext li:before {
    content: "\2022";
    color: var(--clr-2);
    font-weight: 900;
    font-size: var(--px20);
    line-height: 1.5;
    display: inline-block;
    padding-right: var(--px12);
    margin-right: 12px
}

.richtext b,.richtext strong {
    font-weight: 600
}

.richtext img {
    width: 100%!important;
    height: auto!important;
    margin: 24px 0;
    border-radius: 4px
}

p {
    line-height: 1.75
}

.blog__post {
    position: relative;
    display: block;
    max-width: 960px;
    margin: 0 auto
}

.blog__post .image {
    position: relative;
    width: calc(100% + 64px);
    height: auto;
    padding-top: 66%;
    margin-left: -32px;
    margin-bottom: 40px
}

.blog__post .image img {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center
}

.blog__post .name {
    display: block;
    font-weight: 600;
    margin-bottom: 8px
}

.blog__post .date {
    display: block;
    color: grey;
    margin-bottom: 32px
}

.blog__post .richtext {
    display: block;
    margin-bottom: 48px
}

.blog__post__images {
    position: relative;
    display: block;
    margin-bottom: 64px!important
}

.blog__post__images .galery  {
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(200px,1fr));
    grid-gap: 16px
}

.blog__post__images .galery a {
    position: relative
}

.blog__post__images .galery a img {
    width: 100%
}

.social-share {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between
}

.social-share a {
    display: inline-block;
    margin: 0 10px
}

@media only screen and (max-width: 767px) {
    .social-share .push {
        margin:10px;
        width: 40px;
        height: 40px;
        display: inline-block
    }

    .social-share .fa {
        font-size: 16px
    }
}