/* SEO Pega — Caixa de Autor (E-E-A-T) */
.seopega-author-box {
    margin: 2em 0;
    font-size: 15px;
    line-height: 1.6;
    color: #1f2937;
}

.seopega-author-box-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
}

.seopega-author-box-photo {
    flex: 0 0 96px;
    display: block;
}

.seopega-author-box-photo img {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    border: 3px solid #fff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
}

.seopega-author-box-content {
    flex: 1 1 auto;
    min-width: 0;
}

.seopega-author-box-name {
    margin: 0 0 4px;
    font-size: 1.25em;
    line-height: 1.3;
}

.seopega-author-box-name a {
    color: inherit;
    text-decoration: none;
    font-weight: 700;
}

.seopega-author-box-name a:hover,
.seopega-author-box-name a:focus {
    text-decoration: underline;
}

.seopega-author-box-jobtitle {
    margin: 0 0 10px;
    font-size: 0.88em;
    font-weight: 600;
    color: #4b5563;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.seopega-author-box-bio {
    margin: 0 0 12px;
}

.seopega-author-box-bio p {
    margin: 0 0 8px;
}

.seopega-author-box-bio p:last-child {
    margin-bottom: 0;
}

.seopega-author-box-specialties,
.seopega-author-box-socials {
    list-style: none;
    margin: 0 0 14px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.seopega-author-box-specialties li {
    background: #eef2ff;
    color: #3730a3;
    padding: 3px 12px;
    border-radius: 999px;
    font-size: 0.82em;
    font-weight: 600;
}

.seopega-author-box-socials {
    gap: 14px;
}

.seopega-author-box-socials li a {
    color: #1d4ed8;
    text-decoration: none;
    font-size: 0.9em;
    font-weight: 500;
}

.seopega-author-box-socials li a:hover,
.seopega-author-box-socials li a:focus {
    text-decoration: underline;
}

.seopega-author-box-more {
    display: inline-block;
    font-weight: 600;
    color: #111827;
    text-decoration: none;
    border-bottom: 2px solid currentColor;
    padding-bottom: 1px;
}

.seopega-author-box-more:hover,
.seopega-author-box-more:focus {
    color: #1d4ed8;
}

@media (max-width: 600px) {
    .seopega-author-box-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}