.author-page-container {
    /*padding: 2rem 0;*/
    margin-top: 48px;
    margin-bottom: 100px;
}

.author-page-container .author-header {
    display: grid;
    grid-template-columns: 288px 1fr;
}

.author-page-container .author-avatar {
    max-width: 288px;
    height: 288px;
}

.author-page-container .author-avatar img {
    width: 100%;
    height: auto;
    border-top-left-radius: 16px;
    border-bottom-left-radius: 16px;
}

.author-page-container .author-info {
    background-color: white;
    height: 288px;
    border-top-right-radius: 16px;
    border-bottom-right-radius: 16px;
    position: relative;
    padding-left: 32px;
    padding-right: 32px;
    padding-top: 24px;
}

.author-page-container .author-info::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background-image: url("../images/Ellipse 670.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: -1;
    top: -15px;
    /*right: -94px;*/
    filter: blur(50px);
}

.author-page-container .author-title {
    font-family: Satoshi, sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 48px;
    color: #1D144D;
    margin-top: 0;
    margin-bottom: 0;
}

.author-page-container .author-bio {
    font-family: Inter, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    color: #4a4470;
    height: 104px;
    overflow: auto;
}

.author-page-container .author-meta {
    margin-top: 1rem;
}

.author-page-container .author-posts h2.section-title {
    font-family: "Satoshi", sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 50px;
    text-align: center;
    color: #1e144d;
    margin-top: 95px;
    margin-bottom: 41px;
}

.author-page-container .posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 2rem;
}

.author-page-container .post-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px 0 #0000000D;
    transition: transform 0.2s ease;
    max-width: 370px;
}


.author-page-container .post-thumbnail img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.2s ease;
}

.author-page-container .post-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
    padding: 30px 20px;
}

.author-page-container span.posted-on {
    font-family: Inter, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #1e144d;
}

.author-page-container .entry-title {
    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 25px;
    letter-spacing: 0.02rem;
}

.author-page-container .entry-title a {
    text-decoration: none;
    color: #333333;
}

.author-page-container .entry-title a:hover {
    color: #924ac7;
}

.author-page-container .entry-meta {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.author-page-container .entry-summary {
    color: #666;
    margin-bottom: 1rem;
}

.author-page-container footer.entry-footer {
    display: flex;
    align-items: center;
    gap: 10px;
}

.author-page-container footer.entry-footer .author-avatar-post img {
    width: 30px;
    height: 30px;
    border-radius: 100%;
    aspect-ratio: 1;
}

.author-page-container footer.entry-footer .author-name-post {
    font-family: Inter, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
    color: #1D144D;
}

.author-page-container .author-position {
    font-family: Satoshi, sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    color: #1D144D;
}

.author-page-container .author-position p {
    margin-bottom: 10px;
    margin-top: 8px;
}

.author-page-container .cta-box-section {
    max-width: 1170px;
    margin: 198px auto 0;
    position: relative;
    background-color: transparent;
    padding-top: 85px;
    padding-bottom: 80px;
    background-image: url("../images/new/Vector.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.author-page-container .cta-box-section::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    background-repeat: no-repeat;
    /* left: 0; */
    z-index: -1;
    border-radius: 20px;
    background: linear-gradient(-200deg, #fe906d 0%, #934ac5 100%);
}

.author-page-container h2.cta-box__title {
    font-family: Satoshi, sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 50px;
    color: white;
    text-align: center;
    margin-bottom: 10px;
}

.author-page-container .cta-box__text {
    font-family: Inter, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 25px;
    text-align: center;
    max-width: 1050px;
    margin: 0 auto;
    color: white;
}

.author-page-container a.cta-button {
    font-family: Inter, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 160px;
    padding: 10px 15px;
}

.author-page-container .orange-fill a.cta-button {
    background-color: #fe906b;
    color: #1D144D;
    border: 1px solid #fe906b;
}

.author-page-container .white-border a.cta-button {
    border: 1px solid white;
    color: white;
}

.author-page-container .cta-buttons-group {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.author-page-container #loadMore {
    border-radius: 100px;
    background: linear-gradient(207.12deg, #FE906D 0%, #934AC5 100%);
    color: white;
    font-family: Inter, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 25px;
    max-width: 171px;
    text-align: center;
    display: flex;
    justify-content: center;
    margin: 39px auto 0;
}

.author-page-container .post-card {
    display: none;
}

.author-page-container .post-card.visible {
    display: flex;
    flex-direction: column;
}


@media (max-width: 995px) {

    .author-page-container .cta-box-section {
        padding-top: 45px;
    }

    .author-page-container a.cta-button {
        width: 279px;
    }

    .author-page-container .author-title {
        font-size: 32px;
        line-height: 40px;
    }

    .author-page-container .author-info {
        height: auto;
        border-radius: 0 0 16px 16px;
    }

    .author-page-container .author-header {
        grid-template-columns: 1fr;
        max-width: 343px;
        margin: 0 auto;
    }

    .author-page-container .posts-grid {
        display: flex;
        width: max-content;
    }

    .author-page-container .posts-grid-wrapper {
        overflow: auto;
        padding-bottom: 30px;
    }

    .author-page-container .author-bio {
        height: auto;
    }

    .author-page-container .author-avatar img {
        border-radius: 16px 16px 0 0;
    }

    .author-page-container .author-avatar {
        max-width: 343px;
    }

    .author-page-container .container {
        overflow: hidden;
    }

    .author-page-container .author-info::after {
        background-image: url("../images/Ellipse 670 (1).svg");
        top: 100px;
        left: 0;
    }

}

@media screen and (max-width: 700px) {
    .author-page-container .cta-box-wrapper {
        padding-inline: 32px;
    }
}

@media screen and (max-width: 650px) {

    .author-page-container .cta-buttons-group {
        flex-direction: column;
        align-items: center;
    }

}

@media screen and (max-width: 450px) {
    .author-page-container .post-card {
        max-width: 300px;
    }
}

