/* AFun México — Design System
   Brand: Black #0a0a0a + Orange #ff5500 + Gold #ffc200
   Font: Space Grotesk + Nunito
*/
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700;800&family=Nunito:wght@400;500;600;700&display=swap');

:root {
    --black: #0a0a0a;
    --dark: #111111;
    --card: #181818;
    --border: rgba(255, 85, 0, 0.18);
    --orange: #ff5500;
    --orange-l: #ff7733;
    --gold: #ffc200;
    --teal: #00d4b4;
    --white: #ffffff;
    --text: #e8e8e8;
    --muted: #888888;
    --font-h: 'Space Grotesk', sans-serif;
    --font-b: 'Nunito', sans-serif;
    --r: 12px;
    --r-lg: 20px;
    --shadow: 0 4px 24px rgba(255, 85, 0, 0.12);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background: var(--black);
    color: var(--text);
    font-family: var(--font-b);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* ─── SKIP LINK ─── */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--orange);
    color: #fff;
    padding: 8px 16px;
    z-index: 999;
    border-radius: 0 0 8px 0;
    transition: top .3s;
}

.skip-link:focus {
    top: 0;
}

/* ─── HEADER ─── */
header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(10, 10, 10, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.header-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    height: 64px;
}

.logo {
    font-family: var(--font-h);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--white);
    text-decoration: none;
    letter-spacing: -1px;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.logo .logo-a {
    color: var(--orange);
}

.logo .logo-fun {
    color: var(--white);
}

nav {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
    flex-wrap: nowrap;
    overflow: hidden;
}

nav a {
    color: var(--muted);
    text-decoration: none;
    font-size: .84rem;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: 8px;
    white-space: nowrap;
    transition: color .2s, background .2s;
}

nav a:hover,
nav a.active {
    color: var(--orange);
    background: rgba(255, 85, 0, 0.1);
}

.btn-cta {
    background: linear-gradient(135deg, var(--orange), #cc4400);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: .85rem;
    padding: 9px 18px;
    border-radius: 30px;
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: 0 0 20px rgba(255, 85, 0, 0.35);
    transition: transform .2s, box-shadow .2s;
}

.btn-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 28px rgba(255, 85, 0, 0.5);
}

/* ─── MOBILE HEADER CTA BUTTON ─── */
/* Hidden on desktop, shows on mobile between logo and burger */
.btn-mob-header {
    display: none;
    background: linear-gradient(135deg, var(--orange), #cc4400);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: .78rem;
    padding: 8px 14px;
    border-radius: 30px;
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: 0 0 16px rgba(255, 85, 0, 0.4);
    transition: transform .2s, box-shadow .2s;
    margin-left: auto;
}

.btn-mob-header:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 24px rgba(255, 85, 0, 0.55);
}

/* Burger */
.burger {
    display: none;
    background: none;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 8px;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    flex-shrink: 0;
}

.burger span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all .3s;
}

/* ─── MOBILE MENU ─── */
.mob-menu {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--dark);
    z-index: 99;
    overflow-y: auto;
    padding: 16px;
    flex-direction: column;
    gap: 4px;
}

.mob-menu.open {
    display: flex;
}

.mob-tracker {
    background: linear-gradient(135deg, var(--orange), #cc4400);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    padding: 14px 20px;
    border-radius: var(--r);
    text-align: center;
    margin-bottom: 8px;
    font-size: .95rem;
    box-shadow: 0 0 20px rgba(255, 85, 0, 0.3);
}

.mob-menu a:not(.mob-tracker) {
    color: var(--text);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    padding: 12px 16px;
    border-radius: var(--r);
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background .2s, color .2s;
}

.mob-menu a:not(.mob-tracker):hover {
    background: rgba(255, 85, 0, 0.1);
    color: var(--orange);
}

/* ─── LAYOUT ─── */
.wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 72px 0;
}

section.alt {
    background: var(--dark);
}

section.dark {
    background: #0d0d0d;
}

.section-tag {
    display: inline-block;
    background: rgba(255, 85, 0, 0.15);
    color: var(--orange);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 30px;
    border: 1px solid rgba(255, 85, 0, 0.3);
    margin-bottom: 12px;
}

h2 {
    font-family: var(--font-h);
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--white);
    margin-bottom: 12px;
}

h2 em {
    color: var(--orange);
    font-style: normal;
}

h3 {
    font-family: var(--font-h);
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 8px;
}

.lead {
    color: var(--muted);
    max-width: 600px;
    margin-bottom: 32px;
    line-height: 1.7;
}

/* ─── HERO ─── */
.hero {
    position: relative;
    overflow: hidden;
    min-height: 480px;
    display: flex;
    align-items: center;
    background: var(--black);
}

.hero-img-wrap {
    position: absolute;
    inset: 0;
}

.hero-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: .55;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10, 10, 10, 0.95) 40%, rgba(10, 10, 10, 0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 580px;
    padding: 60px 20px;
    margin-left: calc((100vw - 1200px)/2);
    margin-right: 20px;
}

@media(max-width:1240px) {
    .hero-content {
        margin-left: 20px;
    }
}

.hero h1 {
    font-family: var(--font-h);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 16px;
}

.hero h1 strong {
    color: var(--orange);
}

.hero p {
    color: var(--text);
    font-size: 1rem;
    max-width: 480px;
    margin-bottom: 28px;
    line-height: 1.7;
}

.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--orange), #cc4400);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    padding: 13px 28px;
    border-radius: 30px;
    box-shadow: 0 0 24px rgba(255, 85, 0, 0.4);
    transition: transform .2s, box-shadow .2s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 32px rgba(255, 85, 0, 0.55);
}

.btn-outline {
    display: inline-block;
    border: 1.5px solid rgba(255, 85, 0, 0.5);
    color: var(--orange);
    text-decoration: none;
    font-weight: 700;
    padding: 12px 26px;
    border-radius: 30px;
    transition: background .2s, color .2s;
}

.btn-outline:hover {
    background: rgba(255, 85, 0, 0.1);
}

/* ─── STAT PILLS ─── */
.stat-pills {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.stat-pill {
    background: rgba(255, 85, 0, 0.1);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 14px 20px;
    text-align: center;
    min-width: 100px;
}

.stat-num {
    font-family: var(--font-h);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--orange);
}

.stat-lbl {
    font-size: .72rem;
    color: var(--muted);
    margin-top: 2px;
}

/* ─── CARDS GRID ─── */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.grid-2-3 {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 28px;
}

.grid-3-2 {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 28px;
}

@media(max-width:900px) {

    .grid-3,
    .grid-2,
    .grid-2-3,
    .grid-3-2 {
        grid-template-columns: 1fr;
    }
}

.card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 24px;
    transition: border-color .2s, transform .2s;
}

.card:hover {
    border-color: rgba(255, 85, 0, 0.4);
    transform: translateY(-2px);
}

.card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 14px;
}

.ci-orange {
    background: rgba(255, 85, 0, 0.15);
}

.ci-gold {
    background: rgba(255, 194, 0, 0.15);
}

.ci-teal {
    background: rgba(0, 212, 180, 0.15);
}

/* ─── TABLES ─── */
.tbl-wrap {
    overflow-x: auto;
    border-radius: var(--r);
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: .88rem;
}

caption {
    font-size: .75rem;
    color: var(--muted);
    text-align: left;
    padding: 0 0 10px;
}

thead tr {
    background: rgba(255, 85, 0, 0.08);
}

th {
    padding: 12px 14px;
    text-align: left;
    font-family: var(--font-h);
    font-weight: 700;
    color: var(--white);
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .5px;
    border-bottom: 1px solid var(--border);
}

td {
    padding: 11px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    color: var(--text);
}

tbody tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.td-o {
    color: var(--orange);
    font-weight: 700;
}

.td-g {
    color: var(--gold);
    font-weight: 600;
}

.td-t {
    color: var(--teal);
    font-weight: 600;
}

.td-m {
    color: var(--muted);
}

/* ─── RATING STARS ─── */
.stars {
    color: var(--gold);
    font-size: .9rem;
    letter-spacing: 1px;
}

/* ─── CHART BOXES ─── */
.chart-box {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 24px;
}

.chart-title {
    font-family: var(--font-h);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    font-size: .95rem;
}

/* Horizontal bar chart */
.hbar {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hbar-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hbar-lbl {
    width: 130px;
    font-size: .78rem;
    color: var(--muted);
    flex-shrink: 0;
    text-align: right;
}

.hbar-track {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 4px;
    overflow: hidden;
}

.hbar-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 1s;
}

.hf-orange {
    background: linear-gradient(90deg, #cc4400, var(--orange));
}

.hf-gold {
    background: linear-gradient(90deg, #b38600, var(--gold));
}

.hf-teal {
    background: linear-gradient(90deg, #009d87, var(--teal));
}

.hf-white {
    background: rgba(255, 255, 255, 0.4);
}

.hbar-val {
    width: 44px;
    font-size: .78rem;
    color: var(--white);
    font-weight: 700;
    flex-shrink: 0;
}

/* Donut chart (CSS-only) */
.donut-wrap {
    display: flex;
    gap: 28px;
    align-items: center;
    flex-wrap: wrap;
}

.donut {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    flex-shrink: 0;
    background: conic-gradient(var(--orange) 0% 38%,
            var(--gold) 38% 60%,
            var(--teal) 60% 75%,
            #9b59b6 75% 87%,
            rgba(255, 255, 255, 0.15) 87% 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.donut::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    background: var(--card);
    border-radius: 50%;
}

.donut-legend {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dl-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .8rem;
    color: var(--text);
}

.dl-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Funnel */
.funnel {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.funnel-step {
    border-radius: 8px;
    padding: 10px 16px;
    text-align: center;
    font-family: var(--font-h);
    font-weight: 700;
    color: var(--white);
    transition: transform .2s;
}

.funnel-step:hover {
    transform: scaleX(1.02);
}

/* ─── STEPS ─── */
.steps {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.step {
    display: flex;
    gap: 16px;
    position: relative;
}

.step-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--orange);
    color: #fff;
    font-family: var(--font-h);
    font-weight: 800;
    font-size: .9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.step-line {
    width: 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.step-connector {
    width: 2px;
    flex: 1;
    background: var(--border);
    min-height: 32px;
}

.step-body {
    padding-bottom: 28px;
}

.step-body h3 {
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 6px;
}

.step-body p {
    font-size: .85rem;
    color: var(--muted);
    line-height: 1.6;
}

/* ─── RATING BAR ─── */
.rating-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.rating-label {
    width: 120px;
    font-size: .82rem;
    color: var(--muted);
    flex-shrink: 0;
}

.rating-bar {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 3px;
    overflow: hidden;
}

.rating-fill {
    height: 100%;
    border-radius: 3px;
    background: linear-gradient(90deg, #cc4400, var(--orange));
}

.rating-score {
    width: 36px;
    font-size: .8rem;
    color: var(--white);
    font-weight: 700;
    flex-shrink: 0;
}

/* ─── FEATURE HIGHLIGHT ─── */
.highlight-band {
    background: linear-gradient(135deg, rgba(255, 85, 0, 0.08), rgba(255, 194, 0, 0.05));
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 32px;
    display: flex;
    gap: 24px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.highlight-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

/* ─── IMAGE BLOCKS ─── */
.img-full {
    width: 100%;
    border-radius: var(--r-lg);
    display: block;
    object-fit: cover;
}

.img-hero-page {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: var(--r-lg);
}

.img-side-portrait {
    width: 100%;
    height: 440px;
    object-fit: cover;
    border-radius: var(--r-lg);
}

/* ─── SEO ARTICLE ─── */
.seo-block {
    background: var(--dark);
    padding: 64px 0;
}

.seo-article {
    max-width: 820px;
}

.seo-article h2 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.seo-article h3 {
    font-size: 1.1rem;
    color: var(--orange);
    margin: 24px 0 10px;
}

.seo-article p {
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 14px;
}

.seo-article a {
    color: var(--orange);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ─── AUTHOR ─── */
.author-card {
    display: flex;
    gap: 20px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 24px;
    margin-top: 32px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.author-pic {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid var(--orange);
}

.author-meta {
    flex: 1;
    min-width: 200px;
}

.author-badge {
    font-size: .68rem;
    color: var(--orange);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 4px;
}

.author-name {
    font-family: var(--font-h);
    font-size: 1rem;
    color: var(--white);
    font-weight: 700;
}

.author-role {
    font-size: .8rem;
    color: var(--muted);
    margin-bottom: 8px;
}

.author-bio {
    font-size: .83rem;
    color: var(--muted);
    line-height: 1.6;
}

.author-chips {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.author-chip {
    background: rgba(255, 85, 0, 0.1);
    color: var(--orange);
    font-size: .72rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 30px;
    border: 1px solid rgba(255, 85, 0, 0.2);
}

/* ─── BREADCRUMBS ─── */
.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .78rem;
    color: var(--muted);
    padding: 16px 0;
    flex-wrap: wrap;
}

.breadcrumbs a {
    color: var(--muted);
    text-decoration: none;
}

.breadcrumbs a:hover {
    color: var(--orange);
}

.breadcrumbs span {
    color: rgba(255, 255, 255, 0.2);
}

.breadcrumbs strong {
    color: var(--text);
}

/* ─── CTA BAND ─── */
.cta-band {
    background: linear-gradient(135deg, #1a0a00, #0a0a0a);
    border: 1px solid rgba(255, 85, 0, 0.25);
    border-radius: var(--r-lg);
    padding: 48px 40px;
    text-align: center;
    box-shadow: 0 0 60px rgba(255, 85, 0, 0.08);
}

.cta-band h2 {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    margin-bottom: 12px;
}

.cta-band p {
    color: var(--muted);
    max-width: 480px;
    margin: 0 auto 28px;
}

/* ─── QUICK NAV LINKS ─── */
.quick-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.ql {
    background: rgba(255, 85, 0, 0.1);
    color: var(--orange);
    text-decoration: none;
    font-size: .82rem;
    font-weight: 700;
    padding: 7px 14px;
    border-radius: 30px;
    border: 1px solid rgba(255, 85, 0, 0.2);
    transition: background .2s;
}

.ql:hover {
    background: rgba(255, 85, 0, 0.2);
}

/* ─── FOOTER ─── */
footer {
    background: #080808;
    border-top: 1px solid var(--border);
    padding: 56px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

@media(max-width:800px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:500px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.footer-brand .logo {
    font-size: 1.4rem;
}

.footer-brand p {
    font-size: .82rem;
    color: var(--muted);
    margin-top: 12px;
    line-height: 1.6;
    max-width: 240px;
}

.footer-col h4 {
    font-family: var(--font-h);
    font-size: .8rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 14px;
}

.footer-col a {
    display: block;
    color: var(--muted);
    text-decoration: none;
    font-size: .83rem;
    margin-bottom: 8px;
    transition: color .2s;
}

.footer-col a:hover {
    color: var(--orange);
}

.age-pill {
    display: inline-block;
    background: rgba(255, 85, 0, 0.15);
    color: var(--orange);
    border: 1px solid rgba(255, 85, 0, 0.3);
    font-weight: 800;
    font-size: .72rem;
    padding: 4px 12px;
    border-radius: 30px;
    margin-top: 14px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-legal {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.footer-legal a {
    color: var(--muted);
    text-decoration: none;
    font-size: .8rem;
}

.footer-legal a:hover {
    color: var(--orange);
}

.footer-disclaimer {
    font-size: .75rem;
    color: var(--muted);
    line-height: 1.6;
    max-width: 640px;
}

.footer-copy {
    font-size: .78rem;
    color: var(--muted);
}

.footer-badge {
    font-size: .75rem;
    color: var(--muted);
}

/* ─── RESPONSIVE ─── */
@media(max-width: 768px) {
    nav {
        display: none;
    }

    .btn-cta {
        display: none;
    }

    .btn-mob-header {
        display: inline-block;
    }

    .burger {
        display: flex;
    }

    section {
        padding: 48px 0;
    }

    .hero {
        min-height: 360px;
    }

    .hero-content {
        padding: 40px 20px;
    }
}

/* ─── UTILITIES ─── */
.mt-0 {
    margin-top: 0;
}

.mb-24 {
    margin-bottom: 24px;
}

.text-center {
    text-align: center;
}

.text-orange {
    color: var(--orange);
}

.text-gold {
    color: var(--gold);
}

.text-teal {
    color: var(--teal);
}

.fw-700 {
    font-weight: 700;
}

.td-r {
    color: #ff4444;
    font-weight: 600;
}

.mob-menu a.active {
    color: var(--orange);
    background: rgba(255, 85, 0, 0.08);
}

.badge {
    display: inline-block;
    font-size: .7rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    margin-left: 6px;
    vertical-align: middle;
}

.badge-new {
    background: var(--orange);
    color: #fff;
}

.badge-hot {
    background: var(--gold);
    color: #000;
}