/*Tác giả*/
/* ===================================
   NỘI DUNG GIỚI THIỆU TÁC GIẢ GETIS
=================================== */

.getis-author-detail {
    padding: 60px 20px;
    background: #f7f9fb;
    color: #4c5564;
}

.getis-author-detail__container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.getis-author-detail__section {
    margin-bottom: 50px;
}

.getis-author-detail__section:last-child {
    margin-bottom: 0;
}

/* Tiêu đề chính */

.getis-author-detail__heading {
    position: relative;
    margin: 0 0 24px;
    padding-bottom: 15px;
    color: #004c84;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.3;
}

.getis-author-detail__heading::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 65px;
    height: 4px;
    border-radius: 10px;
    background: #f58220;
}

/* Nội dung văn bản */

.getis-author-detail p {
    margin: 0 0 18px;
    font-size: 17px;
    line-height: 1.8;
}

.getis-author-detail p:last-child {
    margin-bottom: 0;
}

.getis-author-detail strong {
    color: #004c84;
    font-weight: 700;
}

.getis-author-detail a {
    color: #004c84;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.getis-author-detail a:hover {
    color: #f58220;
    text-decoration: underline;
}

/* Ba trụ cột */

.getis-author-detail__pillars {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 25px;
    margin-top: 32px;
}

.getis-author-detail__pillar {
    position: relative;
    padding: 35px 28px 30px;
    overflow: hidden;
    border: 1px solid #e2eaf0;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 8px 28px rgba(0, 76, 132, 0.08);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.getis-author-detail__pillar:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 35px rgba(0, 76, 132, 0.14);
}

.getis-author-detail__number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    margin-bottom: 23px;
    border-radius: 50%;
    background: #004c84;
    color: #ffffff;
    font-size: 17px;
    font-weight: 700;
}

.getis-author-detail__pillar h3 {
    position: relative;
    margin: 0 0 20px;
    padding-bottom: 14px;
    color: #004c84;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.4;
}

.getis-author-detail__pillar h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 45px;
    height: 3px;
    border-radius: 10px;
    background: #f58220;
}

.getis-author-detail__pillar p {
    font-size: 16px;
    line-height: 1.75;
}

/* Danh sách chuyên môn */

.getis-author-detail__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 22px;
    margin: 25px 0 0;
    padding: 0;
    list-style: none;
}

.getis-author-detail__list li {
    position: relative;
    padding: 17px 20px 17px 50px;
    border-radius: 8px;
    background: #eaf5fc;
    color: #004c84;
    font-size: 16px;
    line-height: 1.55;
}

.getis-author-detail__list li::before {
    content: "✓";
    position: absolute;
    top: 16px;
    left: 20px;
    color: #00a260;
    font-size: 20px;
    font-weight: 700;
}

/* Tablet */

@media (max-width: 991px) {
    .getis-author-detail {
        padding: 50px 20px;
    }

    .getis-author-detail__pillars {
        grid-template-columns: 1fr;
    }
}

/* Điện thoại */

@media (max-width: 767px) {
    .getis-author-detail {
        padding: 40px 15px;
    }

    .getis-author-detail__section {
        margin-bottom: 40px;
    }

    .getis-author-detail__heading {
        font-size: 24px;
    }

    .getis-author-detail p {
        font-size: 16px;
        line-height: 1.7;
    }

    .getis-author-detail__pillar {
        padding: 28px 22px;
    }

    .getis-author-detail__pillar h3 {
        font-size: 20px;
    }

    .getis-author-detail__list {
        grid-template-columns: 1fr;
    }
}
/* ===================================
   HEADER HỒ SƠ TÁC GIẢ
=================================== */

.author-profile__header {
    position: relative;
    padding: 50px 45px;
    overflow: hidden;
    border-radius: 14px;
    background: linear-gradient(
        135deg,
        #004c84 0%,
        #0063a5 100%
    );
    color: #ffffff;
    box-shadow: 0 12px 35px rgba(0, 76, 132, 0.18);
}

/* Chi tiết trang trí nền */

.author-profile__header::after {
    content: "";
    position: absolute;
    top: -90px;
    right: -70px;
    width: 260px;
    height: 260px;
    border: 55px solid rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    pointer-events: none;
}

/* Nhãn Tác giả / Author */

.author-profile__label {
    position: relative;
    z-index: 1;
    display: inline-block;
    margin-bottom: 16px;
    color: #f58220;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Tên tác giả */

.author-profile__name {
    position: relative;
    z-index: 1;
    margin: 0 0 18px;
    padding: 0;
    color: #ffffff;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
}

/* Chức vụ */

.author-profile__position {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 7px;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 17px;
    line-height: 1.6;
}

.author-profile__position strong {
    color: #ffffff;
    font-weight: 600;
}

.author-profile__position span {
    color: #ffffff;
}

/* Đường nhấn màu cam */

.author-profile__position::after {
    content: "";
    display: block;
    width: 55px;
    height: 3px;
    margin-left: 8px;
    border-radius: 10px;
    background: #f58220;
}

/* Tablet */

@media (max-width: 991px) {
    .author-profile__header {
        padding: 42px 35px;
    }

    .author-profile__name {
        font-size: 36px;
    }
}

/* Điện thoại */

@media (max-width: 767px) {
    .author-profile__header {
        padding: 32px 22px;
        border-radius: 10px;
    }

    .author-profile__label {
        margin-bottom: 12px;
        font-size: 12px;
        letter-spacing: 1.5px;
    }

    .author-profile__name {
        margin-bottom: 14px;
        font-size: 30px;
    }

    .author-profile__position {
        display: block;
        font-size: 15px;
    }

    .author-profile__position strong {
        margin-right: 4px;
    }

    .author-profile__position::after {
        width: 45px;
        margin: 16px 0 0;
    }
}