/* ============================================================
   Tribune Theme — Mobile-first newspaper-style news portal
   Bootstrap 5 compatible, all classes prefixed trib-
   ============================================================ */

:root {
    --trib-primary:  #1a1a2e;
    --trib-accent:   #c7081b;
    --trib-nav-bg:   #272727;
    --trib-bg:       #f4f4f4;
    --trib-card-bg:  #ffffff;
    --trib-text:     #1e1e1e;
    --trib-muted:    #6c757d;
    --trib-border:   #e0e0e0;
}

/* ── Reset helpers ───────────────────────────────────────── */
.trib-page a { text-decoration: none; }
.trib-page img { max-width: 100%; display: block; }

/* ── Utility Bar ─────────────────────────────────────────── */
.trib-utility-bar {
    background: var(--trib-primary);
    color: #bbb;
    padding: 5px 0;
    font-size: 0.72rem;
    letter-spacing: 0.3px;
}
.trib-utility-bar a { color: #aaa; }
.trib-utility-bar a:hover { color: #fff; }
.trib-epaper-btn {
    background: var(--trib-accent);
    color: #fff !important;
    padding: 2px 10px;
    border-radius: 3px;
    font-weight: 600;
    margin-left: 10px;
}
.trib-epaper-btn:hover { background: #a00616; }
.trib-rss-icon { color: #f90 !important; font-size: 1rem; vertical-align: middle; }

/* ── Breaking Ticker ─────────────────────────────────────── */
.trib-ticker-bar {
    background: var(--trib-accent);
    color: #fff;
    display: flex;
    align-items: stretch;
    overflow: hidden;
    font-size: 0.8rem;
    min-height: 30px;
}
.trib-ticker-label {
    background: #8b0000;
    padding: 0 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.trib-ticker-content {
    padding: 0 16px;
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

/* ── Hero Block ──────────────────────────────────────────── */
.trib-hero-wrap {
    position: relative;
    overflow: hidden;
    background: #111;
}
.trib-hero-img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    display: block;
    opacity: 0.9;
    transition: opacity 0.3s;
}
.trib-hero-wrap:hover .trib-hero-img { opacity: 1; }
.trib-hero-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(0,0,0,.88) 0%, rgba(0,0,0,.3) 60%, transparent 100%);
    padding: 50px 24px 24px;
    color: #fff;
}
.trib-section-badge {
    background: var(--trib-accent);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 3px 8px;
    border-radius: 2px;
    display: inline-block;
    margin-bottom: 10px;
}
.trib-hero-title {
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 10px;
    color: #fff;
}
.trib-hero-title:hover { color: #f0c040; }
.trib-hero-excerpt {
    font-size: 0.85rem;
    opacity: 0.85;
    margin: 0;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ── Top Stories sidebar (beside hero) ──────────────────── */
.trib-topstories-wrap {
    background: var(--trib-card-bg);
    border-left: 3px solid var(--trib-accent);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.trib-block-title {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--trib-accent);
    border-bottom: 2px solid var(--trib-accent);
    padding: 10px 14px;
    margin: 0;
}
.trib-topstories-wrap .trib-block-title {
    background: var(--trib-primary);
    color: #fff;
    border-bottom: none;
}
.trib-topstory-item {
    display: flex;
    gap: 10px;
    padding: 10px 12px;
    border-bottom: 1px solid var(--trib-border);
    flex: 1;
    align-items: flex-start;
}
.trib-topstory-item:last-child { border-bottom: none; }
.trib-topstory-num {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--trib-accent);
    opacity: 0.25;
    line-height: 1;
    flex-shrink: 0;
    width: 24px;
    padding-top: 2px;
}
.trib-topstory-body h5 {
    font-size: 0.82rem;
    font-weight: 600;
    margin: 0 0 4px;
    line-height: 1.35;
    color: var(--trib-text);
}
.trib-topstory-body h5:hover { color: var(--trib-accent); }
.trib-topstory-body .trib-meta { font-size: 0.68rem; color: var(--trib-muted); }

/* ── Main content area ───────────────────────────────────── */
.trib-main-content { padding-top: 28px; background: var(--trib-bg); }
.trib-section-heading {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--trib-accent);
    border-bottom: 2px solid var(--trib-accent);
    padding-bottom: 6px;
    margin-bottom: 18px;
}

/* ── Story Grid (3-col card layout) ─────────────────────── */
.trib-grid { margin-bottom: 28px; }
.trib-card {
    background: var(--trib-card-bg);
    margin-bottom: 20px;
    overflow: hidden;
    border: 1px solid var(--trib-border);
    transition: box-shadow 0.2s;
}
.trib-card:hover { box-shadow: 0 3px 12px rgba(0,0,0,.1); }
.trib-card-img {
    width: 100%;
    height: 165px;
    object-fit: cover;
    display: block;
}
.trib-card-body { padding: 12px; }
.trib-card-category {
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--trib-accent);
    margin-bottom: 5px;
}
.trib-card h4 {
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.35;
    margin: 0 0 6px;
    color: var(--trib-text);
}
.trib-card h4:hover { color: var(--trib-accent); }
.trib-card .trib-excerpt {
    font-size: 0.77rem;
    color: var(--trib-muted);
    margin: 0 0 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.45;
}
.trib-card .trib-meta { font-size: 0.68rem; color: var(--trib-muted); }

/* ── Article list (thumbnail + text rows) ────────────────── */
.trib-stories { margin-bottom: 28px; }
.trib-article-item {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--trib-border);
    background: var(--trib-card-bg);
    margin-bottom: 2px;
}
.trib-article-item:last-child { border-bottom: none; }
.trib-article-thumb {
    width: 96px;
    height: 72px;
    object-fit: cover;
    flex-shrink: 0;
}
.trib-article-body { flex: 1; padding-right: 10px; }
.trib-article-body h4 {
    font-size: 0.87rem;
    font-weight: 700;
    margin: 0 0 5px;
    line-height: 1.3;
    color: var(--trib-text);
}
.trib-article-body h4:hover { color: var(--trib-accent); }
.trib-article-body .trib-excerpt {
    font-size: 0.76rem;
    color: var(--trib-muted);
    margin: 0 0 5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.trib-article-body .trib-meta { font-size: 0.68rem; color: var(--trib-muted); }

/* ── Sidebar ─────────────────────────────────────────────── */
.trib-sidebar { padding-left: 18px; }
.trib-sidebar-block {
    background: var(--trib-card-bg);
    border: 1px solid var(--trib-border);
    margin-bottom: 24px;
}
.trib-sidebar-block .trib-section-heading {
    padding: 8px 14px;
    margin: 0 0 0;
    border-bottom: 2px solid var(--trib-accent);
}
.trib-sidebar-item {
    display: flex;
    gap: 10px;
    padding: 9px 12px;
    border-bottom: 1px solid var(--trib-border);
    align-items: flex-start;
}
.trib-sidebar-item:last-child { border-bottom: none; }
.trib-sidebar-thumb {
    width: 64px;
    height: 50px;
    object-fit: cover;
    flex-shrink: 0;
}
.trib-sidebar-item h5 {
    font-size: 0.8rem;
    font-weight: 600;
    margin: 0 0 3px;
    line-height: 1.3;
    color: var(--trib-text);
}
.trib-sidebar-item h5:hover { color: var(--trib-accent); }
.trib-sidebar-item .trib-meta { font-size: 0.66rem; color: var(--trib-muted); }

/* ── ePaper Widget ───────────────────────────────────────── */
.trib-epaper-block {
    background: var(--trib-primary);
    color: #fff;
    padding: 22px 18px;
    text-align: center;
    margin-bottom: 24px;
}
.trib-epaper-block .trib-epaper-icon {
    font-size: 2.5rem;
    margin-bottom: 8px;
    display: block;
}
.trib-epaper-block h4 {
    font-size: 1rem;
    font-weight: 800;
    margin: 0 0 6px;
    color: #fff;
}
.trib-epaper-block p {
    font-size: 0.78rem;
    opacity: 0.75;
    margin-bottom: 16px;
    line-height: 1.5;
}
.trib-btn-epaper {
    display: inline-block;
    background: var(--trib-accent);
    color: #fff;
    padding: 9px 22px;
    border-radius: 3px;
    font-size: 0.83rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    width: 100%;
    text-align: center;
}
.trib-btn-epaper:hover { background: #a00616; color: #fff; }
.trib-btn-rss {
    display: inline-block;
    background: #e68000;
    color: #fff;
    padding: 7px 22px;
    border-radius: 3px;
    font-size: 0.8rem;
    font-weight: 600;
    width: 100%;
    text-align: center;
}
.trib-btn-rss:hover { background: #c46e00; color: #fff; }

/* ── Footer ──────────────────────────────────────────────── */
.trib-footer {
    background: var(--trib-primary);
    color: #aaa;
    padding: 30px 0 0;
    margin-top: 32px;
    font-size: 0.82rem;
}
.trib-footer h6 {
    color: #fff;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    padding-bottom: 6px;
    border-bottom: 1px solid #333;
}
.trib-footer a { color: #999; }
.trib-footer a:hover { color: #fff; }
.trib-footer ul { list-style: none; padding: 0; margin: 0; }
.trib-footer ul li { margin-bottom: 6px; }
.trib-footer-bottom {
    background: #111;
    padding: 12px 0;
    font-size: 0.75rem;
    color: #555;
    margin-top: 24px;
}
.trib-footer-epaper {
    background: var(--trib-accent);
    color: #fff !important;
    padding: 2px 10px;
    border-radius: 2px;
    margin-left: 8px;
}

/* ── Masthead ────────────────────────────────────────────── */
.trib-masthead {
    padding: 16px 0 14px;
    background: #fff;
    border-bottom: 3px solid var(--trib-primary);
}
.trib-brand-link {
    text-decoration: none;
    color: inherit;
    display: inline-block;
}
.trib-brand-link:hover { text-decoration: none; color: inherit; }
.trib-brand-name {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--trib-primary);
    letter-spacing: -0.5px;
    line-height: 1;
}
.trib-brand-tagline {
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 3.5px;
    color: var(--trib-muted);
    margin-top: 5px;
    border-top: 1px solid var(--trib-border);
    padding-top: 4px;
}
.trib-masthead-ad {
    min-width: 300px;
    text-align: right;
    color: var(--trib-muted);
    font-size: 0.7rem;
}

/* ── Footer brand + social ───────────────────────────────── */
.trib-footer-brand {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.3px;
}
.trib-footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}
.trib-footer-social a {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #999;
    border: 1px solid #333;
    padding: 4px 10px;
    border-radius: 2px;
    text-decoration: none;
}
.trib-footer-social a:hover {
    color: #fff;
    border-color: #555;
    background: #222;
}
.trib-rss-links {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.trib-rss-links a {
    font-size: 0.68rem;
    color: #888;
    border: 1px solid #333;
    padding: 2px 8px;
    border-radius: 2px;
    text-decoration: none;
}
.trib-rss-links a:hover { color: #fff; border-color: #555; background: #222; }

/* ── Agenda (Politics HOME) ──────────────────────────────── */
.trib-agenda-wrap {
    background: var(--trib-card-bg);
    border-left: 4px solid var(--trib-accent);
    height: 100%;
    padding: 18px 16px 12px;
    display: flex;
    flex-direction: column;
}
.trib-agenda-title {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--trib-accent);
    border-bottom: 2px solid var(--trib-accent);
    padding-bottom: 8px;
    margin-bottom: 14px;
}
.trib-agenda-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 10px 0;
    border-bottom: 1px solid var(--trib-border);
}
.trib-agenda-item:last-child { border-bottom: none; }
.trib-agenda-num {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--trib-accent);
    opacity: 0.25;
    line-height: 1;
    min-width: 28px;
    flex-shrink: 0;
}
.trib-agenda-body h5 {
    font-size: 0.84rem;
    font-weight: 700;
    margin: 0 0 4px;
    line-height: 1.35;
    color: var(--trib-text);
}
.trib-agenda-body h5 a:hover { color: var(--trib-accent); }
.trib-agenda-body .trib-meta { font-size: 0.66rem; color: var(--trib-muted); }

/* ── National (2-col political grid) ────────────────────── */
.trib-national {
    margin-bottom: 28px;
}
.trib-nat-card {
    background: var(--trib-card-bg);
    border: 1px solid var(--trib-border);
    overflow: hidden;
    height: 100%;
}
.trib-nat-img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    display: block;
}
.trib-nat-card--compact .trib-nat-img { height: 110px; }
.trib-nat-body {
    padding: 12px 14px 14px;
}
.trib-nat-body h4 {
    font-size: 0.92rem;
    font-weight: 700;
    margin: 6px 0 6px;
    line-height: 1.35;
    color: var(--trib-text);
}
.trib-nat-body h4 a:hover,
.trib-nat-body h5 a:hover { color: var(--trib-accent); }
.trib-nat-body h5 {
    font-size: 0.82rem;
    font-weight: 600;
    margin: 6px 0 5px;
    line-height: 1.35;
    color: var(--trib-text);
}
.trib-nat-body .trib-excerpt {
    font-size: 0.78rem;
    color: var(--trib-muted);
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.trib-nat-body .trib-meta { font-size: 0.68rem; color: var(--trib-muted); }
.trib-beat-tag {
    display: inline-block;
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    background: var(--trib-accent);
    padding: 1px 6px;
    border-radius: 2px;
}

/* ── Analysis & Opinion ──────────────────────────────────── */
.trib-analysis {
    margin-bottom: 28px;
}
.trib-analysis-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 14px 0;
    border-bottom: 1px solid var(--trib-border);
}
.trib-analysis-item:last-child { border-bottom: none; }
.trib-analysis-thumb {
    width: 100px;
    height: 76px;
    object-fit: cover;
    flex-shrink: 0;
}
.trib-analysis-body { flex: 1; }
.trib-analysis-body h4 {
    font-size: 0.9rem;
    font-weight: 700;
    margin: 4px 0 5px;
    line-height: 1.35;
    color: var(--trib-text);
}
.trib-analysis-body h4 a:hover { color: var(--trib-accent); }
.trib-analysis-body .trib-excerpt {
    font-size: 0.77rem;
    color: var(--trib-muted);
    margin-bottom: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.trib-analysis-body .trib-meta { font-size: 0.67rem; color: var(--trib-muted); }
.trib-opinion-tag {
    display: inline-block;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--trib-accent);
    border: 1px solid var(--trib-accent);
    padding: 1px 5px;
    border-radius: 2px;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 991px) {
    .trib-hero-img { height: 280px; }
    .trib-hero-title { font-size: 1.3rem; }
    .trib-topstories-wrap { border-left: none; border-top: 3px solid var(--trib-accent); }
    .trib-agenda-wrap { border-left: none; border-top: 3px solid var(--trib-accent); height: auto; }
    .trib-sidebar { padding-left: 0; margin-top: 24px; }
    .trib-nat-img { height: 140px; }
    .trib-brand-name { font-size: 2rem; }
}

@media (max-width: 575px) {
    .trib-hero-img { height: 210px; }
    .trib-hero-title { font-size: 1.05rem; }
    .trib-hero-excerpt { display: none; }
    .trib-card-img { height: 140px; }
    .trib-article-thumb { width: 72px; height: 55px; }
    .trib-analysis-thumb { width: 72px; height: 55px; }
    .trib-nat-img { height: 120px; }
    .trib-utility-bar .trib-date { display: none; }
    .trib-brand-name { font-size: 1.6rem; }
    .trib-brand-tagline { letter-spacing: 1.5px; }
}

/* ── Sports Section ──────────────────────────────────────── */

.trib-sport-pill {
    display: inline-block;
    font-size: 0.58rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #fff;
    padding: 2px 7px;
    border-radius: 2px;
    white-space: nowrap;
    flex-shrink: 0;
    margin-top: 2px;
}
.trib-sport-cricket   { background: #1a5c2a; }
.trib-sport-football  { background: #1a3a6e; }
.trib-sport-tennis    { background: #7a5a00; }
.trib-sport-hockey    { background: #6e1a1a; }
.trib-sport-athletics { background: #4a1a6e; }

/* Scoreboard items */
.trib-scoreboard-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 10px 0;
    border-bottom: 1px solid var(--trib-border);
}
.trib-scoreboard-item:last-child { border-bottom: none; }
.trib-scoreboard-body h5 {
    font-size: 0.84rem;
    font-weight: 700;
    margin: 0 0 4px;
    line-height: 1.35;
    color: var(--trib-text);
}
.trib-scoreboard-body h5 a:hover { color: var(--trib-accent); }
.trib-scoreboard-body .trib-meta { font-size: 0.66rem; color: var(--trib-muted); }

/* Matches featured lead */
.trib-matches-lead {
    display: flex;
    gap: 16px;
    padding-bottom: 18px;
    margin-bottom: 4px;
    border-bottom: 1px solid var(--trib-border);
}
.trib-matches-lead-img {
    width: 260px;
    height: 165px;
    object-fit: cover;
    display: block;
    flex-shrink: 0;
}
.trib-matches-lead-body { flex: 1; }
.trib-matches-lead-body h3 {
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1.3;
    margin: 8px 0 6px;
    color: var(--trib-text);
}
.trib-matches-lead-body h3 a { color: var(--trib-text); }
.trib-matches-lead-body h3 a:hover { color: var(--trib-accent); }
.trib-matches-lead-body .trib-excerpt {
    font-size: 0.78rem;
    color: var(--trib-muted);
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.trib-matches-lead-body .trib-meta { font-size: 0.68rem; color: var(--trib-muted); }

/* Reports & Columns 2x2 card grid */
.trib-report-card {
    background: var(--trib-card-bg);
    border: 1px solid var(--trib-border);
    overflow: hidden;
    height: 100%;
}
.trib-report-img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    display: block;
}
.trib-report-body { padding: 10px 12px 14px; }
.trib-report-body h4 {
    font-size: 0.88rem;
    font-weight: 700;
    margin: 6px 0 5px;
    line-height: 1.35;
    color: var(--trib-text);
}
.trib-report-body h4 a { color: var(--trib-text); }
.trib-report-body h4 a:hover { color: var(--trib-accent); }
.trib-report-body .trib-excerpt {
    font-size: 0.76rem;
    color: var(--trib-muted);
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.trib-report-body .trib-meta { font-size: 0.67rem; color: var(--trib-muted); }

/* Top Stories text-only sidebar */
.trib-result-item {
    padding: 10px 14px;
    border-bottom: 1px solid var(--trib-border);
}
.trib-result-item:last-child { border-bottom: none; }
.trib-result-item h5 {
    font-size: 0.82rem;
    font-weight: 600;
    margin: 5px 0 4px;
    line-height: 1.35;
    color: var(--trib-text);
}
.trib-result-item h5 a { color: var(--trib-text); }
.trib-result-item h5 a:hover { color: var(--trib-accent); }
.trib-result-item .trib-meta { font-size: 0.66rem; color: var(--trib-muted); }

@media (max-width: 767px) {
    .trib-matches-lead { flex-direction: column; }
    .trib-matches-lead-img { width: 100%; height: 200px; }
}

/* ── Business Section ─────────────────────────────────────── */

.trib-biz-pill {
    display: inline-block;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #fff;
    border-radius: 3px;
    padding: 2px 6px;
    margin-bottom: 4px;
}
.trib-biz-stocks      { background: #2e7d32; }
.trib-biz-banking     { background: #1565c0; }
.trib-biz-commodities { background: #e65100; }
.trib-biz-economy     { background: #00695c; }
.trib-biz-forex       { background: #6a1b9a; }

/* ── Science Section ──────────────────────────────────────── */

.trib-sci-pill {
    display: inline-block;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #fff;
    border-radius: 3px;
    padding: 2px 6px;
    margin-bottom: 4px;
}
.trib-sci-space    { background: #283593; }
.trib-sci-climate  { background: #00796b; }
.trib-sci-biology  { background: #558b2f; }
.trib-sci-physics  { background: #0277bd; }
.trib-sci-medicine { background: #c62828; }

/* ── Technology Section ───────────────────────────────────── */

.trib-tech-pill {
    display: inline-block;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #fff;
    border-radius: 3px;
    padding: 2px 6px;
    margin-bottom: 4px;
}
.trib-tech-ai       { background: #7b1fa2; }
.trib-tech-mobile   { background: #1565c0; }
.trib-tech-cloud    { background: #0288d1; }
.trib-tech-hardware { background: #37474f; }
.trib-tech-security { background: #b71c1c; }

/* ── Travel Section ───────────────────────────────────────── */

.trib-dest-pill {
    display: inline-block;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #fff;
    border-radius: 3px;
    padding: 2px 6px;
    margin-bottom: 4px;
}
.trib-dest-beach    { background: #0288d1; }
.trib-dest-mountain { background: #37474f; }
.trib-dest-city     { background: #7b1fa2; }
.trib-dest-culture  { background: #e65100; }
.trib-dest-wildlife { background: #2e7d32; }
