/* ============================================================
   Single do CPT Tempo Real (single-42wp_liveblog) — header de matéria
   + embed de liveblog (Arena) + texto. Escopo: .gp-lblog.
   Asset standalone (fora do pipeline Tailwind). Fonte herdada (Inter).
   ============================================================ */

.gp-lblog {
    --gp-red: #e5202a;
    --gp-ink: #14151a;
    --gp-muted: #71757e;
    --gp-line: #e6e6ea;
}

.gp-lblog-wrap {
    max-width: 820px;
    margin: 0 auto;
    padding: 28px 16px 56px;
}

/* ===== header ===== */
.gp-lblog-kicker {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}
.gp-lblog-live {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-weight: 800;
    font-size: 12.5px;
    letter-spacing: 0.08em;
    color: #fff;
    background: var(--gp-red);
    padding: 4px 10px;
    border-radius: 4px;
}
.gp-lblog-live .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff;
    animation: gp-lblog-pulse 1.4s ease-in-out infinite;
}
@keyframes gp-lblog-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.35; transform: scale(0.7); }
}
.gp-lblog-chip {
    display: inline-flex;
    align-items: center;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 12.5px;
    line-height: 1.2;
    padding: 4px 10px;
    border-radius: 4px;
    color: #fff;
}
.gp-lblog-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: var(--gp-ink);
    margin: 0;
}
.gp-lblog-dek {
    font-size: clamp(16px, 1.7vw, 20px);
    color: #3a3d45;
    line-height: 1.5;
    margin: 14px 0 0;
    max-width: 64ch;
}

.gp-lblog-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--gp-line);
}
.gp-lblog-author {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--gp-ink);
    font-weight: 700;
    font-size: 14.5px;
}
.gp-lblog-author img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    background: #ececef;
}
.gp-lblog-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #d9dade;
}
.gp-lblog-when {
    font-size: 13.5px;
    color: var(--gp-muted);
}

/* ===== feed (embed do Arena) ===== */
.gp-lblog-feed {
    margin: 26px 0;
    min-height: 200px;
}
.gp-lblog-feed--empty {
    display: grid;
    place-items: center;
    min-height: 160px;
    border: 1px dashed var(--gp-line);
    border-radius: 10px;
    color: var(--gp-muted);
    font-size: 14px;
    text-align: center;
    padding: 24px;
}

/* ===== texto / descrição ===== */
.gp-lblog-body {
    margin-top: 30px;
    font-size: 17px;
    line-height: 1.7;
    color: #23252b;
}
.gp-lblog-body p { margin: 0 0 18px; }
.gp-lblog-body a { color: var(--gp-red); text-decoration: underline; }
.gp-lblog-body h2 { font-size: 24px; font-weight: 800; margin: 32px 0 12px; }
.gp-lblog-body h3 { font-size: 20px; font-weight: 700; margin: 26px 0 10px; }
.gp-lblog-body img { max-width: 100%; height: auto; border-radius: 8px; }

/* ===== tags ===== */
.gp-lblog-tags {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 34px;
}
.gp-lblog-tags .lbl {
    font-weight: 700;
    font-size: 13px;
    color: var(--gp-muted);
    margin-right: 2px;
}
.gp-lblog-tag {
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    font-weight: 600;
    color: #3a3d45;
    background: #f1f1f4;
    padding: 5px 11px;
    border-radius: 999px;
    transition: background 0.15s, color 0.15s;
}
.gp-lblog-tag:hover {
    background: var(--gp-ink);
    color: #fff;
}

/* ===== card de autor ===== */
.gp-lblog-authorcard {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-top: 34px;
    padding: 18px;
    border: 1px solid var(--gp-line);
    border-radius: 12px;
    background: #fafafb;
}
.gp-lblog-authorcard img {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover;
    background: #ececef;
    flex-shrink: 0;
}
.gp-lblog-authorcard .n {
    font-weight: 800;
    font-size: 16px;
    color: var(--gp-ink);
}
.gp-lblog-authorcard .role {
    font-size: 13px;
    color: var(--gp-red);
    font-weight: 700;
    margin-top: 1px;
}
.gp-lblog-authorcard .bio {
    font-size: 14px;
    color: var(--gp-muted);
    line-height: 1.5;
    margin-top: 7px;
}
