/* =========================================================
   Pub Creator — Author Box  |  author-box.css  v1.0.0
   ========================================================= */

/* ── Variables ──────────────────────────────────────────── */
.pcab-author-box {
    --pcab-bg:          #f8f7f4;
    --pcab-border:      #e2ddd6;
    --pcab-accent:      #2b6cb0;   /* bleu sobre */
    --pcab-accent-dark: #1a4a80;
    --pcab-text:        #2d2d2d;
    --pcab-muted:       #6b7280;
    --pcab-label:       #9ca3af;
    --pcab-radius:      12px;
    --pcab-photo-size:  110px;
    --pcab-font:        Georgia, 'Times New Roman', serif;
    --pcab-font-ui:     -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ── Conteneur principal ────────────────────────────────── */
.pcab-author-box {
    margin: 2.5em 0;
    padding: 0;
    font-family: var(--pcab-font-ui);
    color: var(--pcab-text);
    line-height: 1.6;
}

.pcab-author-box__inner {
    display: flex;
    gap: 1.75rem;
    align-items: flex-start;
    background: var(--pcab-bg);
    border: 1px solid var(--pcab-border);
    border-radius: var(--pcab-radius);
    padding: 1.75rem 2rem;
    position: relative;
    overflow: hidden;
}

/* Trait accent gauche */
.pcab-author-box__inner::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 4px;
    background: var(--pcab-accent);
    border-radius: var(--pcab-radius) 0 0 var(--pcab-radius);
}

/* ── Photo ──────────────────────────────────────────────── */
.pcab-author-box__photo {
    flex-shrink: 0;
}

.pcab-author-box__avatar {
    width:  var(--pcab-photo-size);
    height: var(--pcab-photo-size);
    border-radius: 50%;
    object-fit: cover;
    display: block;
    border: 3px solid #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,.12);
    transition: box-shadow .2s ease, transform .2s ease;
}

.pcab-author-box__photo a:hover .pcab-author-box__avatar {
    transform: scale(1.04);
    box-shadow: 0 4px 20px rgba(0,0,0,.18);
}

/* ── Contenu ────────────────────────────────────────────── */
.pcab-author-box__content {
    flex: 1 1 0;
    min-width: 0;
}

.pcab-author-box__header {
    margin-bottom: .6rem;
}

.pcab-author-box__label {
    display: block;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--pcab-label);
    margin-bottom: .25rem;
    font-family: var(--pcab-font-ui);
}

.pcab-author-box__name {
    font-family: var(--pcab-font);
    font-size: 1.35rem;
    font-weight: 700;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    line-height: 1.25;
}

.pcab-author-box__name a {
    color: var(--pcab-text);
    text-decoration: none;
    transition: color .2s ease;
}
.pcab-author-box__name a:hover {
    color: var(--pcab-accent);
}

/* ── Biographie ─────────────────────────────────────────── */
.pcab-author-box__bio {
    margin-top: .85rem;
    font-size: .95rem;
    color: var(--pcab-text);
    font-family: var(--pcab-font-ui);
    line-height: 1.7;
}

.pcab-author-box__bio p {
    margin: 0 0 .6em;
}
.pcab-author-box__bio p:last-child {
    margin-bottom: 0;
}

.pcab-author-box__bio h2 {
    font-family: var(--pcab-font);
    font-size: 1.05rem;
    font-weight: 700;
    margin: 1em 0 .3em;
    color: var(--pcab-text);
    border-bottom: 1px solid var(--pcab-border);
    padding-bottom: .2em;
}

.pcab-author-box__bio h3 {
    font-family: var(--pcab-font-ui);
    font-size: .95rem;
    font-weight: 700;
    margin: .8em 0 .2em;
    color: var(--pcab-accent);
}

.pcab-author-box__bio strong { font-weight: 700; }
.pcab-author-box__bio em     { font-style: italic; }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 600px) {
    .pcab-author-box__inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1.4rem 1.2rem;
    }

    .pcab-author-box__inner::before {
        left: 0; right: 0; top: 0; bottom: auto;
        width: auto;
        height: 4px;
        border-radius: var(--pcab-radius) var(--pcab-radius) 0 0;
    }

    .pcab-author-box__label {
        text-align: center;
    }
}

/* ── Dark mode ──────────────────────────────────────────── */
@media (prefers-color-scheme: dark) {
    .pcab-author-box {
        --pcab-bg:     #1e2433;
        --pcab-border: #2e3a50;
        --pcab-text:   #e8e8e8;
        --pcab-muted:  #9ca3af;
        --pcab-label:  #6b7280;
        --pcab-accent: #63a0d4;
    }
}
