/**
 * Module: article_author_box
 * Auto-extracted from style.css
 */

/* ============================================
   MODULE: Author Box
   ============================================ */

.t1-author-box {
    background: var(--pearl);
    border-radius: 12px;
    padding: 2rem;
    margin: 3rem 0;
}

.t1-author-box__inner {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.t1-author-box__photo {
    flex-shrink: 0;
}

.t1-author-box__photo img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.t1-author-box__content {
    flex: 1;
    min-width: 0;
}

.t1-author-box__label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--jade);
    margin: 0 0 0.25rem;
}

.t1-author-box__name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 0.25rem;
    line-height: 1.3;
}

.t1-author-box__name a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.t1-author-box__name a:hover {
    color: var(--jade);
}

.t1-author-box__title {
    font-size: 0.9375rem;
    color: var(--charcoal);
    margin: 0 0 0.75rem;
}

.t1-author-box__bio {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--charcoal);
    margin: 0;
}

.t1-author-box__social {
    display: flex;
    gap: 1rem;
    margin: 1rem 0 0;
    padding: 0;
    list-style: none;
}

.t1-author-box__social a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--jade);
    text-decoration: none;
    transition: color 0.2s;
}

.t1-author-box__social a:hover {
    color: var(--jade-dark);
    text-decoration: underline;
}

/* Responsive author box */
@media (max-width: 480px) {
    .t1-author-box {
        padding: 1.5rem;
    }
    
    .t1-author-box__inner {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .t1-author-box__social {
        justify-content: center;
    }
}

