.hunter-feed-item {
    /* Variáveis Locais */
    --bg-card: #0f1219;
    --accent: #d4af37; /* Amarelo queimado "Backrooms" */
    --accent-glow: rgba(212, 175, 55, 0.15);
    --text-main: #e2e8f0;
    --text-muted: #94a3b8;
    --border-color: rgba(255, 255, 255, 0.1);
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.8; /* Aumentado para melhor leitura de textos longos */
    color: var(--text-main);
    background-color: var(--bg-card);
    padding: 40px; /* Mais respiro */
    border-radius: 8px;
    width: 100%;
    box-sizing: border-box;
    padding-top: 0;
}

    .hunter-feed-item * {
        box-sizing: border-box;
    }

    /* --- HEADER --- */
    .hunter-feed-item .category-tag {
        text-transform: uppercase;
        font-size: 0.75rem;
        font-weight: 800;
        color: #0f1219;
        background-color: var(--accent);
        padding: 4px 12px;
        border-radius: 4px;
        margin-bottom: 25px;
        display: inline-block;
        letter-spacing: 1px;
        box-shadow: 0 0 15px var(--accent-glow);
    }

    .hunter-feed-item h1.article-title {
        font-size: 2.5rem;
        line-height: 1.2;
        margin: 0 0 20px 0;
        color: #fff;
        font-weight: 800;
        letter-spacing: -1px;
    }

    .hunter-feed-item h2.article-subtitle {
        font-size: 1.25rem;
        font-weight: 400;
        color: var(--text-muted);
        margin: 0 0 40px 0;
        line-height: 1.6;
        border-bottom: 1px solid var(--border-color);
        padding-bottom: 30px;
    }

    /* Meta Info */
    .hunter-feed-item .article-meta {
        display: flex;
        align-items: center;
        margin-bottom: 40px;
        font-size: 0.95rem;
    }

    .hunter-feed-item .author-name {
        font-weight: 700;
        color: var(--accent);
        margin-right: 20px;
    }

    .hunter-feed-item .date-pub {
        color: var(--text-muted);
        display: flex;
        align-items: center;
        gap: 8px;
    }

    /* --- IMAGEM --- */
    .hunter-feed-item .main-image-container {
        margin-bottom: 40px;
    }

    .hunter-feed-item .main-image {
        width: 100%;
        height: auto;
        border-radius: 12px;
        display: block;
        border: 1px solid var(--border-color);
        max-height: 500px;
        object-fit: cover;
    }

    .hunter-feed-item .content-image {
        width: 100%;
        height: auto;
        border-radius: 8px;
        margin: 40px 0 15px 0;
        border: 1px solid var(--border-color);
        box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    }

    .hunter-feed-item .image-caption {
        font-size: 0.9rem;
        color: var(--text-muted);
        margin-top: 12px;
        text-align: center;
        font-style: italic;
        border: none;
        padding: 0;
    }

    /* --- CONTEÚDO --- */
    .hunter-feed-item .article-lead {
        font-weight: 400;
        font-size: 1.3rem;
        margin-bottom: 40px;
        color: #fff;
        line-height: 1.6;
    }

        .hunter-feed-item .article-lead::first-letter {
            font-size: 3.5rem;
            float: left;
            line-height: 0.8;
            margin-right: 15px;
            color: var(--accent);
            font-weight: 800;
        }

    .hunter-feed-item .article-body {
        font-size: 1.1rem;
        color: var(--text-main);
    }

        .hunter-feed-item .article-body h3 {
            font-size: 1.8rem;
            margin-top: 60px;
            margin-bottom: 25px;
            color: #fff;
            position: relative;
        }

            .hunter-feed-item .article-body h3::after {
                content: '';
                display: block;
                width: 60px;
                height: 4px;
                background: var(--accent);
                margin-top: 10px;
                border-radius: 2px;
            }

        .hunter-feed-item .article-body strong {
            color: #fff;
            font-weight: 700;
        }

        .hunter-feed-item .article-body p {
            margin-bottom: 25px;
            text-align: justify;
        }

    /* Dossie de Monstros */
    .hunter-feed-item .entity-card {
        background: rgba(20, 20, 20, 0.6);
        border: 1px solid rgba(212, 175, 55, 0.3);
        border-left: 6px solid var(--accent);
        padding: 25px;
        margin-bottom: 30px;
        border-radius: 0 8px 8px 0;
    }

    .hunter-feed-item .entity-title {
        color: var(--accent);
        font-size: 1.3rem;
        font-weight: 800;
        text-transform: uppercase;
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 15px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding-bottom: 10px;
    }

    .hunter-feed-item .danger-level {
        font-size: 0.8rem;
        background: #333;
        padding: 3px 8px;
        border-radius: 4px;
        color: #fff;
    }

        .hunter-feed-item .danger-level.extreme {
            background: #ff2a2a;
        }

        .hunter-feed-item .danger-level.high {
            background: #ff9100;
            color: #000;
        }

        .hunter-feed-item .danger-level.med {
            background: #d4af37;
            color: #000;
        }

    /* Blockquote */
    .hunter-feed-item blockquote {
        background: linear-gradient(90deg, rgba(212,175,55,0.05) 0%, rgba(0,0,0,0) 100%);
        border-left: 4px solid var(--accent);
        margin: 40px 0;
        padding: 25px 30px;
        font-style: italic;
        font-size: 1.2rem;
        color: #fff;
        position: relative;
    }

    /* --- TAGS --- */
    .hunter-feed-item .tags-container {
        margin: 60px 0 30px 0;
        padding-top: 30px;
        border-top: 1px solid var(--border-color);
    }

    .hunter-feed-item .tag {
        background: rgba(255,255,255,0.05);
        border: 1px solid var(--border-color);
        padding: 6px 14px;
        border-radius: 50px;
        font-size: 0.85rem;
        text-decoration: none;
        color: var(--text-muted);
        margin-right: 8px;
        display: inline-block;
        margin-bottom: 8px;
        transition: 0.3s;
    }

        .hunter-feed-item .tag:hover {
            border-color: var(--accent);
            color: var(--accent);
            background: rgba(212, 175, 55, 0.1);
        }

    /* --- FOOTER --- */
    .hunter-feed-item .article-footer {
        background: #000;
        padding: 20px;
        border-radius: 8px;
        margin-top: 40px;
        border: 1px solid var(--border-color);
    }

/* CARD DE AUTOR - ESTILO TECH ELEGANTE */
.author-card-minimal {
    display: flex;
    align-items: flex-start;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.03), transparent);
    border: 1px solid #333;
    border-left: 4px solid #00f3ff;
    border-radius: 12px 0px 14px;
    padding: 9px 30px 8px;
    margin-top: 30px;
    border-right: 4px solid #00f3ff;
    color: #bbb;
    transition: all 0.3s ease;
}

    .author-card-minimal:hover {
        /* Leve deslocamento para a direita e brilho no fundo */
        transform: translateX(5px);
        background: linear-gradient(to right, rgba(255,255,255,0.05), transparent);
        box-shadow: 0 5px 20px rgba(0,0,0,0.4);
    }

.author-avatar-small {
    width: 70px; /* Um pouco maior */
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 25px;
    /* Borda escura para separar do fundo */
    border: 3px solid #222;
    filter: grayscale(100%);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Efeito elástico */
}

.author-card-minimal:hover .author-avatar-small {
    filter: grayscale(0%);
    border-color: var(--neon-blue); /* A borda acende na cor neon */
    transform: scale(1.1);
}

.author-info-minimal h4 {
    margin: 0 0 8px 0;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase; /* Mais autoridade */
}

.author-info-minimal p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 650px;
    color: #999;
}

.author-links {
    margin-top: 15px;
    font-size: 0.85rem;
    display: flex;
    gap: 15px;
}

    .author-links a {
        color: #777;
        text-decoration: none;
        transition: 0.3s;
        /* Estilo de botão "pill" sutil */
        padding: 5px 12px;
        border: 1px solid transparent;
        border-radius: 20px;
        background: rgba(0,0,0,0.2);
    }

        .author-links a:hover {
            color: #fff;
            background: var(--neon-blue);
            border-color: var(--neon-blue);
            box-shadow: 0 0 10px var(--neon-blue); /* Brilho neon no botão */
            text-shadow: none;
        }

/* Responsivo */
@media (max-width: 768px) {
    .author-card-minimal {
        align-items: center;
        text-align: center;
    }

    .author-avatar-small {
        margin-right: 0;
        margin-bottom: 20px;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .hunter-feed-item {
        padding: 20px;
    }

        .hunter-feed-item h1.article-title {
            font-size: 1.8rem;
        }

        .hunter-feed-item .article-lead {
            font-size: 1.1rem;
        }
}
