/* ============================================================
   JORNALISTA PROFILE PAGE
   ============================================================ */

.jornalista-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px 20px;
    font-family: 'Comme', sans-serif;
}

/* Section labels */
.jornalista-section-label,
.jornalista-posts-label {
    font-family: 'Acto', 'Comme', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #111;
    border-bottom: 2px solid #111;
    padding-bottom: 8px;
    margin-bottom: 24px;
}

/* ============================================================
   PROFILE CARD
   ============================================================ */

.jornalista-header {
    background-color: #f5f0ea;
    border-radius: 4px;
    padding: 30px;
    margin-bottom: 48px;
}

.jornalista-card {
    display: flex;
    align-items: flex-start;
    gap: 32px;
}

/* Avatar */
.jornalista-avatar {
    flex-shrink: 0;
}

.jornalista-avatar-img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

/* Info block */
.jornalista-info {
    flex: 1;
}

.jornalista-name {
    font-family: 'Acto', 'Comme', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #111;
    margin: 0 0 4px;
    line-height: 1.2;
}

.jornalista-titulo {
    font-size: 1rem;
    color: #555;
    margin: 0 0 12px;
    font-style: italic;
}

.jornalista-formacao {
    font-size: 0.9rem;
    color: #555;
    margin: 0 0 10px;
}

.jornalista-about {
    font-size: 0.95rem;
    color: #333;
    line-height: 1.6;
    margin: 0 0 14px;
}

.jornalista-idade {
    font-size: 0.9rem;
    color: #555;
    margin: 0 0 14px;
}

/* Email button */
.jornalista-contacts {
    margin-top: 10px;
}

.jornalista-email-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 2px solid #111;
    border-radius: 50%;
    color: #111;
    font-size: 1.1rem;
    text-decoration: none;
    transition: background-color 0.2s, color 0.2s, border-color 0.2s;
}

.jornalista-email-btn:hover {
    background-color: #C52934;
    border-color: #C52934;
    color: #fff;
    text-decoration: none;
}

/* ============================================================
   POSTS LIST
   ============================================================ */

.jornalista-posts-label {
    margin-top: 0;
}

.jornalista-post-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
}

.jornalista-post-item:first-of-type {
    border-top: none;
}

.jornalista-post-date {
    flex-shrink: 0;
    width: 110px;
    font-size: 0.82rem;
    color: #999;
    padding-top: 3px;
}

.jornalista-post-body {
    flex: 1;
    min-width: 0;
}

.jornalista-post-title {
    margin: 0 0 6px;
    font-family: 'Acto', 'Comme', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.35;
}

.jornalista-post-title a {
    color: #111;
    text-decoration: none;
}

.jornalista-post-title a:hover {
    color: #C52934;
}

.jornalista-post-author {
    font-size: 0.82rem;
    color: #555;
    margin: 0;
}

.jornalista-post-thumb {
    flex-shrink: 0;
    display: block;
}

.jornalista-thumb-img {
    width: 120px;
    height: 80px;
    object-fit: cover;
    display: block;
}

.jornalista-no-posts {
    color: #999;
    font-size: 0.9rem;
    padding: 20px 0;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

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

    .jornalista-avatar-img {
        width: 130px;
        height: 130px;
    }

    .jornalista-post-item {
        flex-wrap: wrap;
    }

    .jornalista-post-date {
        width: 100%;
    }

    .jornalista-post-thumb {
        order: -1;
        width: 100%;
    }

    .jornalista-thumb-img {
        width: 100%;
        height: 160px;
    }
}
