/* 基礎樣式 - 適用於側邊欄（垂直版）*/
.author-profile-block {
    padding: 20px 20px;
    border-radius: 10px;
}

.author-profile-block .block-title {
    font-size: 18px;
    font-weight: bold;
    color: #707070;
    text-align: center;
    margin: 0;

    display: flex;
    border-left: 5px solid #0EC8BF;
    padding-left: 12px;
}

.author-profile-block .author-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}

.author-profile-block .author-avatar {
    width: 150px;
    height: 150px;
    margin-bottom: 10px;
    border-radius: 60% 40% 58% 42% / 55% 60% 40% 45%;
    overflow: hidden;
    flex-shrink: 0;
}

.author-profile-block .author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-profile-block .author-info {
    text-align: center;
    width: 100%;
}

.author-profile-block .author-info h4 {
    font-size: 18px;
    font-weight: bold;
    margin: 0;
}

.author-profile-block .author-info h4 a {
    color: #33B6B0;
}

.author-profile-block .author-info .author-title {
    font-size: 14px;
    color: #6A6A6A;
    margin-top: 4px;
}

.author-profile-block .author-info .author-intro {
    margin-top: 16px;
    color: #6A6A6A;
    font-size: 14px;
    text-align: start;
}

.author-profile-block .social-links {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.author-profile-block .social-links a {
    display: inline-block;
    transition: transform 0.2s ease;
}

.author-profile-block .social-links a:hover {
    transform: scale(1.1);
}

.author-profile-block .social-links .social-icon {
    width: 32px;
    height: 32px;
    display: block;
}

.author-profile-block .block-action {
    margin-top: 30px;
    text-align: center;
}

.author-profile-block .block-action .ts-button {
    background-color: #33B6B0;
    border: 2px solid #33B6B0;
    color: white;
    width: 100%;
}

.author-profile-block .block-action .ts-button:hover {
    background-color: #0ec8bf;
    border: 2px solid #0ec8bf;
}

/* 水平版 - 文章底部（桌面版）*/
@media (min-width: 769px) {
    .author-profile-block--horizontal {
        background-color: #F5F5F5;
        padding: 30px 30px;
    }

    .author-profile-block--horizontal .author-content {
        flex-direction: row;
        align-items: flex-start;
        gap: 30px;
        margin-top: 0;
    }

    .author-profile-block--horizontal .author-avatar {
        margin-bottom: 0;
    }

    .author-profile-block--horizontal .author-info {
        text-align: left;
        flex: 1;
    }

    .author-profile-block--horizontal .social-links {
        justify-content: flex-start;
    }
}

/* 手機版：隱藏文章底部的水平版區塊 */
@media (max-width: 768px) {
    .author-profile-block--horizontal {
        display: none;
    }

    /*.author-profile-block {*/
    /*    margin: 0 -5%;*/
    /*    border-radius: 0;*/
    /*}*/
}
