/*
 * Plugin: Takaaki Author Profile SEO Plugin
 * File: takaaki-author-profile.css
 */

.profile-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 15px;
    border: 1px solid #eee;
    background: #fcfcfc;
    border-radius: 8px;
    margin: 20px 0;
}

.profile-media img {
    border-radius: 50%; /* 画像を丸くする */
    display: block;
}

.profile-body {
    flex-grow: 1;
}

.profile-title {
    margin-top: 0;
    margin-bottom: 5px;
    font-size: 1.5em;
}

.profile-jobtitle {
    color: #555;
    font-size: 0.9em;
    margin-bottom: 10px;
}

.profile-desc strong {
    font-weight: bold;
}

.profile-tags {
    list-style: none;
    padding: 0;
    margin: 10px 0 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.profile-tags li {
    background: #eef;
    color: #448;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8em;
}

.profile-referrals__label {
    font-weight: normal;
    color: #777;
    font-size: 0.9em;
}

.profile-referrals__count {
    font-size: 1.1em;
    color: #c00;
}

.profile-links a {
    text-decoration: none;
    color: #0073aa;
}

/* レスポンシブ対応の例 */
@media (max-width: 600px) {
    .profile-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}