/* Badge de Categoria Dinâmico */
.category-badge {
    display: inline-flex;
    align-items: center;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 2px 8px;
    border-radius: 2px;
}

/* Imagem Base */
.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.group:hover .card-img {
    transform: scale(1.05);
}

/* Títulos Globais dos Cards */
.card-title {
    margin: 0;
    font-family: system-ui, -apple-system, sans-serif;
    font-weight: 600;
    color: var(--foreground);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* line-clamp-2 */
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s ease;
}
.group:hover .card-title {
    color: var(--primary);
}

/* Meta Infos */
.card-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}
.card-date, .card-platform, .card-date-isolated {
    font-size: 12px;
    color: var(--muted-foreground);
}

/* ==========================================
   ESTILOS: VARIANTE ROW
   ========================================== */
.article-card-row {
    display: flex;
    gap: 16px;
    align-items: start;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
    text-decoration: none;
}
.article-card-row:last-child {
    border-bottom: 0;
}
.card-image-wrapper-row {
    width: 112px; /* w-28 */
    height: 80px; /* h-20 */
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 6px;
    background-color: var(--border);
}
.card-content-row {
    min-w: 0;
    display: flex;
    flex-direction: column;
}
.card-author-name-simple {
    margin: 4px 0 0 0;
    font-size: 14px;
    color: var(--muted-foreground);
}

/* ==========================================
   ESTILOS: VARIANTE DEFAULT (GRID)
   ========================================== */
.article-card-default {
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    overflow: hidden;
    background-color: #131722; /* Equivalente ao bg-card do tema escuro */
    border: 1px solid var(--border);
    text-decoration: none;
    transition: all 0.3s ease;
}
.article-card-default:hover {
    border-color: rgba(60, 131, 246, 0.5);
    transform: translateY(-4px);
}
.card-image-wrapper-default {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background-color: var(--border);
}

/* Score Redondo (Nota do Review) */
.card-score-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background-color: rgba(11, 15, 25, 0.9);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(60, 131, 246, 0.4);
    color: var(--primary);
    font-weight: 700;
    font-size: 14px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-content-default {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px;
}

.card-excerpt {
    margin: 0;
    font-size: 14px;
    color: var(--muted-foreground);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Footer do Card Default */
.card-footer {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid rgba(30, 38, 56, 0.6);
}
.card-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
}
.card-author-name {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}
.card-date-isolated {
    margin-left: auto;
}