/* ========================================
   ABC Dental - About The Author
   Theme: Imperial Hotel Style
   ======================================== */

/* セクション全体 */
.abc-author {
    background: linear-gradient(180deg, #002b55 0%, #001a33 100%);
    padding: 100px 20px;
    position: relative;
}

/* 上部のゴールドライン */
.abc-author::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #c5a059 50%, transparent 100%);
}

/* !important はテーマスタイル上書きのため必要 */
.abc-author a {
    text-decoration: none !important;
}

/* 内部コンテナ */
.abc-author__inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* ラベル */
.abc-author__label {
    font-size: 11px;
    letter-spacing: 0.3em;
    color: #c5a059;
    margin-bottom: 40px;
    display: block;
    font-family: "adobe-garamond-pro", serif;
}

/* 写真ラッパー（ゴールド枠） */
.abc-author__photo-wrap {
    position: relative;
    display: inline-block;
    margin-bottom: 32px;
}



/* 写真 */
.abc-author__photo {
    width: 160px;
    height: 160px;
    border-radius: 4px;
    object-fit: cover;
}

/* 名前 */
.abc-author__name {
    font-size: 28px;
    color: #fff;
    margin-bottom: 8px;
    letter-spacing: 0.1em;
    font-family: "adobe-garamond-pro", serif;
    font-weight: 400;
}

/* 役職 */
.abc-author__role {
    font-size: 14px;
    color: #c5a059;
    margin-bottom: 32px;
    letter-spacing: 0.15em;
}

/* 資格タグ */
.abc-author__credentials {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}

.abc-author__credentials span {
    background: rgba(197, 160, 89, 0.1);
    border: 1px solid rgba(197, 160, 89, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    color: #e6dcc5;
}

/* 紹介文 */
.abc-author__bio {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 2;
    max-width: 700px;
    margin: 0 auto 32px !important;
}

/* リンクボタン（光沢エフェクト付き） */
.abc-author__link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #c5a059 0%, #a3823d 100%);
    color: #fff;
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 14px;
    text-decoration: none;
    letter-spacing: 0.1em;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    overflow: hidden;
}

/* 光沢エフェクト削除 */
.abc-author__link:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(197, 160, 89, 0.4);
    text-decoration: none;
    color: #fff;
}

/* ----------------------------------------
   レスポンシブ
   ---------------------------------------- */
@media (max-width: 768px) {
    .abc-author {
        padding: 80px 20px;
    }

    .abc-author__photo {
        width: 120px;
        height: 120px;
    }



    .abc-author__name {
        font-size: 22px;
    }

    .abc-author__credentials span {
        font-size: 11px;
        padding: 6px 14px;
    }

    .abc-author__bio {
        font-size: 13px;
        line-height: 1.9;
    }

    .abc-author__link {
        padding: 14px 28px;
        font-size: 13px;
    }
}