/* ============================================
   Author E-E-A-T — byline + author box
   ============================================ */

/* --- Byline (บนสุดของบทความ) --- */
.ch-byline {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0 16px;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.ch-byline-avatar {
    border-radius: 50%;
    flex-shrink: 0;
}

.ch-byline-text {
    line-height: 1.5;
    min-width: 0;
}

.ch-byline-name {
    font-size: 14px;
    color: #333;
}

.ch-byline-name a {
    color: #2271b1;
    text-decoration: none;
}

.ch-byline-name a:hover { text-decoration: underline; }

.ch-byline-title {
    color: #666;
    font-weight: 400;
}

.ch-byline-date {
    font-size: 13px;
    color: #888;
    margin-top: 2px;
}

.ch-byline-sep { margin: 0 2px; }

/* --- Author Box (ท้ายบทความ) --- */
.ch-author-box {
    display: flex;
    gap: 16px;
    background: #f8f9fa;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    padding: 20px;
    margin: 40px 0 20px;
}

.ch-author-avatar {
    border-radius: 50%;
    flex-shrink: 0;
    width: 80px;
    height: 80px;
}

.ch-author-info { min-width: 0; }

.ch-author-name {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
}

.ch-author-name a {
    color: #2271b1;
    text-decoration: none;
}

.ch-author-role {
    display: block;
    font-size: 13px;
    font-weight: 400;
    color: #666;
    margin-top: 2px;
}

.ch-author-bio,
.ch-author-exp,
.ch-author-cred {
    font-size: 14px;
    line-height: 1.65;
    color: #444;
    margin: 8px 0 0;
}

.ch-author-exp {
    background: #fff;
    border-left: 3px solid #27ae60;
    padding: 8px 12px;
    border-radius: 0 6px 6px 0;
}

.ch-author-links {
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ch-author-links a {
    font-size: 13px;
    color: #2271b1;
    text-decoration: none;
    border: 1px solid #d0deff;
    background: #f0f4ff;
    padding: 4px 12px;
    border-radius: 20px;
}

.ch-author-links a:hover {
    background: #2271b1;
    color: #fff;
}

/* --- Byline ในหน้าบ้านพัก (สไตล์ต่างเล็กน้อย) --- */
#carehome-single .ch-byline {
    border-bottom: none;
    border-top: 1px solid #eee;
    margin: 16px 0 0;
    padding: 12px 0 0;
}

/* --- มือถือ --- */
@media (max-width: 600px) {
    .ch-author-box {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    .ch-author-info { text-align: left; }
    .ch-author-links { justify-content: center; }
}
