.author_warp {
    padding: 8rem 0 4rem 0;
    background: url(../author/img/bg.png) top no-repeat;
    background-size: 100% auto;
}

.author_main {
    max-width: 1260px;
    margin: 0 auto;
}

.author_hero {
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.author_hero h1 {
    font-family: Solitreo;
    font-weight: 400;
    font-size: 4rem;
    line-height: 1;
}

.author_tags {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin: 2rem 0 1rem 0;
}

.author_tags span {
    display: block;
    border-radius: 11px;
    padding: 5px 12px;
    font-family: Solitreo;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;

    border: 1px solid rgba(255, 246, 237, 1);
    background: linear-gradient(180deg, #ffecd8 0%, #ffe2c3 100%);
    color: #8f4417;
}

.author_tags span:nth-of-type(2) {
    background: linear-gradient(180deg, #ecf0ff 0%, #d9dfef 93.75%);
    border: 1px solid rgba(237, 243, 255, 1);
    color: #10439c;
}

.author_info p {
    max-width: 738px;
    font-size: 1.8rem;
}

.author_avatar {
    width: 140px;
    height: 140px;
    border-radius: 3rem;
    overflow: hidden;
    text-align: center;
}

.author_avatar img {
    display: block;
    width: 100%;
    height: 100%;
}

.author_experience {
    padding: 2.4rem;
    margin-top: 4rem;
    background: rgba(255, 255, 255, 0.45);
    border-radius: 30px;
}

.author_experience h2 {
    font-weight: 600;
    font-size: 2.4rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.author_experience li {
    margin: 10px 0 0 20px;
    font-size: 14px;
    list-style: disc;
}

.author_experience li span {
    color: #ff890f;
}

.articles_list {
    margin-top: 8rem;
    text-align: center;
}

.articles_list h2 {
    font-weight: 600;
    font-size: clamp(27px, 3.6rem, 36px);
    color: #000;
    margin-bottom: 6rem;
}

.articles_item {
    text-align: left;
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid #e5e5f2;
}

.articles_title {
    font-weight: 500;
    font-size: 2.6rem;
    color: #333;
}

.articles_title:hover {
    text-decoration: none;
}

.articles_item p {
    margin-top: 10px;
    font-size: clamp(14px, 1.6rem, 16px);
}

.article_meta {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    font-size: clamp(14px, 1.6rem, 16px);
    gap: 10px;
    flex-wrap: wrap;
}

.article_time {
    color: #999;
    background: url(../author/img/time.svg) center left no-repeat;
    padding-left: 30px;
    background-size: 25px;
    display: flex;
    align-items: center;
}

.article_time::after {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #c8ced8;
    flex: 0 0 auto;
    margin: 0 10px;
}

.article_cat {
    padding: 3px 13px;
    border-radius: 8px;
    background: #f2f6ff;
    border: 1px solid #dce7ff;
    color: var(--color-link);
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

.article_cat:hover {
    background: var(--color-link);
    border-color: var(--color-link);
    color: #fff;
    text-decoration: none;
}

.pagination {
    display: flex;
    justify-content: center;
}

.pagination ul {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.page-item {
    padding: 3px 1.35rem;
    border: 1px solid #e5e5f2;
    border-radius: 6px;
    color: #999;
    font-size: 2rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.25s ease-in-out;
}

.page-next {
    font-size: 1.6rem;
    padding: 6px 1.7rem;
}

.page-ellipsis {
    color: #999;
    font-size: 2rem;
}

.page-item:hover {
    text-decoration: none;
}

.page-item.active,
.page-item:hover {
    color: #fff;
    border-color: transparent;
    background: linear-gradient(135deg, #45b7ff 0%, #2f62f3 100%) padding-box;
}

@media (max-width: 1260px) {
    .author_main {
        padding: 0 21px;
    }
}

@media (max-width: 768px) {
    .author_warp {
        padding: 4rem 0;
    }

    .author_hero {
        text-align: center;
    }

    .author_tags {
        flex-wrap: wrap;
        justify-content: center;
    }

    .author_avatar {
        width: 100px;
        height: 100px;
    }

    .author_experience {
        padding: 2.4rem 0;
    }

    .articles_list {
        margin-top: 4rem;
    }

    .pagination ul {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .pagination ul {
        gap: 1.5rem;
    }
}