.author-profile-hero {
    position: relative;
    max-width: 1186px;
    margin-top: 32px;
    padding: 24px 20px;
    background: #fff;
    overflow: hidden;
}

.author-avatar-wrapper {
    position: relative;
    margin-bottom: 90px;
}

.author-avatar-image {
    position: relative;
    max-width: 274px;
    width: 100%;
    margin: 0 auto;
    aspect-ratio: 1 / 1;
    border: 8px solid #fff;
    border-radius: 50%;
    box-shadow: 0px 0px 0px 2px rgba(213, 236, 228, 1);
    overflow: hidden;
}

.icon-shape-1 {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 107px;
    height: 97px;
    background: url("../../images/icon-shape-1.svg") no-repeat center/contain;
    transform: translate(-237%, -156%);
}

.icon-shape-2 {
    position: absolute;
    top: -8%;
    left: -16%;
    width: 128%;
    height: 121%;
    background: url("../../images/icon-shape-2.svg") no-repeat center/contain;
}

.icon-shape-3 {
    position: absolute;
    top: -2%;
    right: 8%;
    width: 47px;
    height: 46px;
    background: url("../../images/icon-shape-3.svg") no-repeat center/contain;
}

.icon-shape-4 {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 140%;
    height: 130%;
    background: url("../../images/icon-shape-4.svg") no-repeat center/contain;
    transform: translate(-49%, -46%);
}

.author-avatar-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.breadcrumbs {
    margin-bottom: 46px;
}

.author-info-wrapper {
    position: relative;
    z-index: 2;
}

.author-name {
    margin-bottom: 16px;
    color: var(--color-9);
}

.author-bio {
    margin-bottom: 48px;
}

.author-bio p {
    font-weight: 500;
    font-size: 18px;
    line-height: 1.4;
}

.author-bio p:not(:nth-last-child(1)) {
    margin-bottom: 25px;
}

.badges-wrapper {
    margin-top: 17px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.author-focus-areas--title,
.author-socials--title {
    color: var(--color-9);
}

.author-focus-areas {
    margin-bottom: 50px;
}

.social-icons-list {
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.social-icons-list a {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid var(--color-6);
    background: var(--color-1);
    transition: background 0.3s;
}

.social-icons-list a:hover {
    background: var(--color-6);
}

.social-icons-list a path {
    transition: fill 0.3s;
}
.social-icons-list a:hover path {
    fill: #fff;
}


.author-articles-section {
   padding: 68px 0 0;
}

.author-articles-title {
    margin-bottom: 19px;
    font-size: 36px;
    color: var(--color-9);
}

.author-articles-swiper {
    width: 100%;
    overflow: hidden;
    padding: 0 20px 2px;
}

.author-articles-swiper .swiper-slide {
    max-width: 261px;
    width: 100%;
    height: auto;
    display: flex;
}

.author-articles-swiper .post-card {
    width: 100%;
}

.post-card-thumbnail {
    padding-top: 83%;
}

/*.infinite-scroll-loader {*/
/*    text-align: center;*/
/*    padding: 30px 0;*/
/*    width: 100%;*/
/*}*/

/*.infinite-scroll-loader::after {*/
/*    content: "";*/
/*    display: inline-block;*/
/*    width: 30px;*/
/*    height: 30px;*/
/*    border: 3px solid #e33621;*/
/*    border-radius: 50%;*/
/*    border-top-color: transparent;*/
/*    animation: btn-spin 0.8s linear infinite;*/
/*}*/
.blog-grid {
    margin: 0;
}
.blog-pagination-wrapper {
    text-align: center;
}

.post-card-meta .meta-text--time-read {
    display: inline-block;
}
@media screen and (min-width: 750px) {
    .breadcrumbs {
        margin-bottom: 56px;
    }

    .author-profile-hero {
        margin: 44px auto 0;
        padding: 46px;
        border-radius: 24px;
    }

    .author-avatar-wrapper {
        margin-bottom: 50px;
    }

    .author-avatar-image {
        max-width: 392px;
    }

    .author-articles-section {
        padding: 101px 0 15px;
    }

    .author-articles-swiper {
        padding-bottom: 32px;
    }

    .author-articles-swiper .swiper-slide {
        max-width: 297px;
    }

    .post-card-thumbnail {
        padding-top: 72%;
    }

    .blog-pagination-wrapper {
        margin: 0;
    }
}

@media screen and (min-width: 990px) {
    .author-profile-hero {
        align-items: center;
        display: grid;
        grid-template-columns: 39.5% 1fr;
        gap: 0 48px;
        margin-top: 50px;
        padding: 43px 96px 96px;
    }

    .author-profile-hero .breadcrumbs {
        grid-area: 1 / 2 / 2 / 3;
        margin-bottom: 30px;
    }

    .author-avatar-wrapper {
        grid-area: 1 / 1 / 3 / 2;
        margin: 0;
    }

    .author-info-wrapper {
        grid-area: 2 / 2 / 3 / 3;
    }

    .post-card-thumbnail {
        padding-top: 73%;
    }

    .author-articles-swiper {
        padding: 0 0 32px;
    }

    .author-focus-areas {
        margin-bottom: 48px;
    }
}

@media screen and (max-width: 989px) {
    .blog-grid {
        display: flex;
        gap: 0;
    }
    .author-articles-swiper {
        max-width: calc(100% + 40px);
        width: calc(100% + 40px);
        margin-left: -20px;
    }
}

@media screen and (max-width: 749px) {
    .author-profile-hero {
        max-width: calc(100% + 40px);
        width: calc(100% + 40px);
        margin-left: -20px;
    }

    .post-card-body {
        padding-bottom: 11px;
    }

    .blog-pagination-wrapper .btn span {
        min-height: 64px;
        padding: 0 23px;
        font-size: 18px;
    }
}