/* News Teaser (Padrão Fitness 2026) */
.news-teaser {
    background: #fff;
    padding: 25px;
    border-radius: var(--radius-lg);
    border-left: 5px solid #10b981; /* Esmeralda */
    box-shadow: var(--shadow-card);
    margin-bottom: 30px;
}
.news-tag {
    background: #10b981;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 12px;
}

/* Container de Resultados em Grid */
.result-box-flex {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid #bbf7d0;
    text-align: center;
}
.res-item { flex: 1; }
.res-divider { width: 1px; height: 60px; background: #bbf7d0; margin: 0 20px; }
.res-value { font-size: 2.5rem; font-weight: 800; color: var(--primary); margin: 5px 0; }
.res-unit { font-size: 0.9rem; font-weight: 600; color: #065f46; }

/* Tabelas e Fórmulas */
.formula-box {
    background: #f8fafc;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--border-soft);
    margin: 20px 0;
}
.table-wrapper { overflow-x: auto; margin: 25px 0; }
.data-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}
.data-table th, .data-table td { padding: 12px; border-bottom: 1px solid var(--border-soft); text-align: left; }
.data-table th { background: #f1f5f9; font-weight: 700; }

@media (max-width: 600px) {
    .result-box-flex { flex-direction: column; gap: 20px; }
    .res-divider { display: none; }
}