﻿/* =========================================================================
   karlobag.eu — Portal New Design (P3 redizajn)
   Brand foundation: B-European Gazette + C-Stadium Roar (sport zone) + A žuti hot badge
   Verzija: 0.1.0 (28-04-2026) — početni skeleton
   Scope: aktivira se SAMO na elementima unutar .theme-new wrapera
   ========================================================================= */

/* --- 1. CSS VARIJABLE (brand tokens iz BRAND_FINAL spec-a) --- */
.theme-new,
.theme-new * {
    --tn-bg-base:        #1A1B23;
    --tn-bg-card:        #252631;
    --tn-bg-card-hover:  #2D2E3B;
    --tn-bg-input:       #1F2029;

    --tn-cta-primary:    #FF6B35;  /* CTA narandžasta */
    --tn-cta-hover:      #FF8559;
    --tn-hot-badge:      #FFD60A;  /* hot/live žuta */
    --tn-info-badge:     #3B82F6;  /* info/affiliate plava */
    --tn-watchlist:      #3B82F6;  /* watchlist plava */

    --tn-text-base:      #EAEAE6;
    --tn-text-muted:     #9CA3AF;
    --tn-text-disabled:  #6B6B7A;

    --tn-win:            #22C55E;
    --tn-loss:           #EF4444;
    --tn-draw:           #EAB308;
    --tn-pending:        #9CA3AF;

    --tn-border:         #3F3F4D;
    --tn-divider:        rgba(255,255,255,0.08);

    --tn-radius-sm:      6px;
    --tn-radius-md:      12px;
    --tn-radius-lg:      18px;

    --tn-shadow-card:    0 4px 16px rgba(0,0,0,0.25);
    --tn-shadow-hover:   0 8px 28px rgba(0,0,0,0.4);

    --tn-font-sans:      'Manrope', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    --tn-font-serif:     'Lora', Georgia, serif;
    --tn-font-mono:      'JetBrains Mono', 'IBM Plex Mono', Menlo, Consolas, monospace;
}

/* --- 2. RESET / OVERRIDE existing styles (samo unutar .theme-new) --- */
html, body.theme-new {
    overflow-x: hidden;
    max-width: 100vw;
}
.theme-new,
.theme-new *,
.theme-new *::before,
.theme-new *::after {
    box-sizing: border-box;
}
.theme-new {
    background-color: var(--tn-bg-base);
    color: var(--tn-text-base);
    font-family: var(--tn-font-sans);
    font-size: 17px;
    line-height: 1.65;
    font-weight: 400;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.theme-new a {
    color: var(--tn-cta-primary);
    text-decoration: none;
    transition: color 0.15s ease;
}
.theme-new a:hover {
    color: var(--tn-cta-hover);
    text-decoration: none;
}

.theme-new img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* --- 3. TIPOGRAFIJA ---
   !important na color jer postojeci /css/style.css i /css/crododo.css iz MasterPage-a imaju
   h1/h2/h3 boje koje pobjedjuju zbog specificity-a (npr. .featured-posts h2 {color: #333}).
   U redizajnu od nule kasnije ce se ucitati samo portalNew.css i ovo se moze maknuti.
*/
.theme-new h1, .theme-new .tn-h1 {
    font-family: var(--tn-font-sans) !important;
    font-weight: 800 !important;
    font-size: 52px !important;
    line-height: 1.1 !important;
    letter-spacing: -0.02em !important;
    margin: 0 0 16px !important;
    color: var(--tn-text-base) !important;
}
.theme-new h2, .theme-new .tn-h2 {
    font-family: var(--tn-font-sans) !important;
    font-weight: 700 !important;
    font-size: 32px !important;
    line-height: 1.2 !important;
    letter-spacing: -0.01em !important;
    margin: 0 0 14px !important;
    color: var(--tn-text-base) !important;
}
.theme-new h3, .theme-new .tn-h3 {
    font-family: var(--tn-font-sans) !important;
    font-weight: 700 !important;
    font-size: 24px !important;
    line-height: 1.3 !important;
    margin: 0 0 12px !important;
    color: var(--tn-text-base) !important;
}
.theme-new h4, .theme-new .tn-h4 {
    font-family: var(--tn-font-sans) !important;
    font-weight: 600 !important;
    font-size: 18px !important;
    line-height: 1.4 !important;
    margin: 0 0 8px !important;
    color: var(--tn-text-base) !important;
}
.theme-new p {
    color: var(--tn-text-base) !important;
}

.theme-new .tn-meta {
    font-size: 13px;
    color: var(--tn-text-muted);
    font-weight: 400;
}

@media (max-width: 768px) {
    .theme-new h1, .theme-new .tn-h1 { font-size: 36px; }
    .theme-new h2, .theme-new .tn-h2 { font-size: 24px; }
    .theme-new h3, .theme-new .tn-h3 { font-size: 20px; }
}

/* --- 4. CONTAINER (širi od Bootstrap default-a, magazin feel) --- */
.theme-new .tn-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}
@media (max-width: 768px) {
    .theme-new .tn-container { padding: 0 16px; }
}

/* --- 5. BADGES --- */
.theme-new .tn-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: var(--tn-radius-sm);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1.2;
    vertical-align: middle;
}
.theme-new .tn-badge-live {
    background: var(--tn-hot-badge);
    color: #1A1B23;
    animation: tn-pulse 1.5s ease-in-out infinite;
}
.theme-new .tn-badge-info {
    background: var(--tn-info-badge);
    color: #fff;
}
.theme-new .tn-badge-warning {
    background: var(--tn-cta-primary, #FFB800);
    color: #1A1B23;
}
.theme-new .tn-hero-ticket-price {
    font-size: 22px;
    font-weight: 800;
    color: var(--tn-cta-primary, #FFB800);
    line-height: 1;
    letter-spacing: -0.01em;
}
.theme-new .tn-hero-ticket .tn-hero-feature-actions {
    align-items: center;
    gap: 16px;
}

/* --- E-E-A-T blok (autoritet medija na naslovnici) --- */
.theme-new .tn-eeat-section {
    background: linear-gradient(135deg, var(--tn-bg-card) 0%, var(--tn-bg-card-hover) 100%);
    padding: 56px 0;
    margin-bottom: 48px;
    border-radius: var(--tn-radius-lg);
}
.theme-new .tn-eeat {
    text-align: center;
    max-width: 880px;
    margin: 0 auto;
}
.theme-new .tn-eeat-badge {
    display: inline-block;
    padding: 6px 14px;
    border: 2px solid var(--tn-cta-primary, #FFB800);
    border-radius: 999px;
    font-size: 13px;
    letter-spacing: 0.08em;
    color: var(--tn-cta-primary, #FFB800);
    margin-bottom: 16px;
    text-transform: uppercase;
}
.theme-new .tn-eeat-title {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 0 0 12px 0;
    color: var(--tn-text-base);
}
.theme-new .tn-eeat-lead {
    font-size: 17px;
    color: var(--tn-text-muted);
    line-height: 1.6;
    margin: 0 0 32px 0;
}
.theme-new .tn-eeat-authors {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
    margin: 0 0 32px 0;
}
.theme-new .tn-eeat-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: inherit;
    transition: transform 0.15s ease;
}
.theme-new .tn-eeat-author:hover { transform: translateY(-2px); }
.theme-new .tn-eeat-author-img {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 12px;
    background: var(--tn-bg-card);
    border: 2px solid var(--tn-divider);
}
.theme-new .tn-eeat-author-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--tn-text-base);
    margin-bottom: 4px;
}
.theme-new .tn-eeat-author-role {
    font-size: 13px;
    color: var(--tn-text-muted);
}
.theme-new .tn-eeat-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}
@media (max-width: 640px) {
    .theme-new .tn-eeat-title { font-size: 26px; }
    .theme-new .tn-eeat-author-img { width: 80px; height: 80px; }
}

@keyframes tn-pulse {
    0%,100% { opacity: 1; }
    50%     { opacity: 0.6; }
}

/* --- 6. BUTTONS --- */
.theme-new .tn-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: var(--tn-radius-md);
    font-family: var(--tn-font-sans);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.01em;
    border: none;
    cursor: pointer;
    transition: all 0.18s ease;
    text-decoration: none !important;
    line-height: 1.2;
    white-space: nowrap;
    min-height: 44px;
}
.theme-new .tn-btn-primary {
    background: var(--tn-cta-primary);
    color: #fff;
}
.theme-new .tn-btn-primary:hover {
    background: var(--tn-cta-hover);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(255,107,53,0.4);
}
.theme-new .tn-btn-ghost {
    background: transparent;
    color: var(--tn-text-base);
    border: 1px solid var(--tn-border);
}
.theme-new .tn-btn-ghost:hover {
    background: var(--tn-bg-card-hover);
    color: var(--tn-text-base);
    border-color: var(--tn-text-muted);
}
.theme-new .tn-btn-sm { padding: 8px 14px; font-size: 13px; min-height: 36px; }

/* --- 7. HEADER (top navigation) --- */
.theme-new .tn-header {
    background: var(--tn-bg-base);
    border-bottom: 1px solid var(--tn-divider);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(8px);
}
.theme-new .tn-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.theme-new .tn-logo {
    font-family: var(--tn-font-sans);
    font-weight: 800;
    font-size: 22px;
    letter-spacing: -0.02em;
    color: var(--tn-text-base);
    text-decoration: none !important;
    line-height: 1;
}
.theme-new .tn-logo .tn-logo-dot {
    color: var(--tn-cta-primary);
    font-family: var(--tn-font-serif);
    font-size: 26px;
    line-height: 1;
    margin: 0 1px;
}
.theme-new .tn-nav {
    display: flex;
    gap: 24px;
    align-items: center;
}
.theme-new .tn-nav-link {
    color: var(--tn-text-muted);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.15s ease;
}
.theme-new .tn-nav-link:hover { color: var(--tn-text-base); }
.theme-new .tn-nav-link.active,
.theme-new .tn-nav-active { color: var(--tn-text-base); }

/* === Dropdown nav (Glazba s Festivali, Putovanja s 5 sub-rubrika) === */
.theme-new .tn-nav-item {
    position: relative;
}
.theme-new .tn-nav-link-with-arrow {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.theme-new .tn-nav-arrow {
    font-size: 10px;
    line-height: 1;
    transition: transform 0.15s ease;
    color: var(--tn-text-muted);
}
.theme-new .tn-nav-has-sub:hover .tn-nav-arrow,
.theme-new .tn-nav-sub-open .tn-nav-arrow {
    transform: rotate(180deg);
    color: var(--tn-text-base);
}
.theme-new .tn-nav-sub {
    position: absolute;
    top: 100%;
    left: -16px;
    min-width: 220px;
    background: var(--tn-bg-card);
    border-radius: var(--tn-radius-md);
    padding: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    border: 1px solid var(--tn-divider);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.15s ease, transform 0.15s ease, visibility 0s linear 0.15s;
    z-index: 100;
    display: flex;
    flex-direction: column;
}
.theme-new .tn-nav-has-sub:hover .tn-nav-sub,
.theme-new .tn-nav-sub-open .tn-nav-sub {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition-delay: 0s;
}
.theme-new .tn-nav-sub-link {
    display: block;
    padding: 8px 12px;
    color: var(--tn-text-muted);
    font-size: 14px;
    font-weight: 500;
    border-radius: var(--tn-radius-sm, 4px);
    text-decoration: none;
    transition: background 0.12s ease, color 0.12s ease;
}
.theme-new .tn-nav-sub-link:hover {
    background: var(--tn-bg-card-hover);
    color: var(--tn-text-base);
}
@media (max-width: 991px) {
    .theme-new .tn-nav-sub {
        position: static;
        opacity: 1;
        visibility: hidden;
        transform: none;
        max-height: 0;
        overflow: hidden;
        padding: 0;
        border: none;
        box-shadow: none;
        background: transparent;
        transition: max-height 0.2s ease;
    }
    .theme-new .tn-nav-sub-open .tn-nav-sub {
        visibility: visible;
        max-height: 600px;
        padding: 4px 0 8px 16px;
    }
    .theme-new .tn-nav-has-sub:hover .tn-nav-sub {
        visibility: hidden;
        max-height: 0;
    }
    .theme-new .tn-nav-sub-open .tn-nav-sub {
        visibility: visible;
        max-height: 600px;
    }
}

/* === STATIC stranica (O nama, Redakcija, Impressum, Kontakt itd.) === */
.theme-new .tn-static-page {
    padding: 32px 0 64px;
}
.theme-new .tn-static-article {
    max-width: 760px;
    margin: 0 auto;
    background: var(--tn-bg-card);
    border-radius: var(--tn-radius-lg);
    padding: 48px;
    box-shadow: var(--tn-shadow-card);
}
@media (max-width: 768px) {
    .theme-new .tn-static-article { padding: 28px 20px; }
}
.theme-new .tn-static-header {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--tn-divider);
}
.theme-new .tn-static-header-center {
    text-align: center;
}
.theme-new .tn-static-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.16em;
    color: var(--tn-cta-primary, #FF6B35);
    margin-bottom: 12px;
}
.theme-new .tn-static-title {
    font-size: 38px !important;
    font-weight: 900 !important;
    line-height: 1.1 !important;
    letter-spacing: -0.02em !important;
    margin: 0 0 16px !important;
    color: var(--tn-text-base) !important;
}
@media (max-width: 768px) { .theme-new .tn-static-title { font-size: 28px !important; } }
.theme-new .tn-static-lead {
    font-size: 18px;
    line-height: 1.55;
    color: var(--tn-text-muted);
    margin: 0;
}
.theme-new .tn-static-issn-card {
    background: linear-gradient(135deg, var(--tn-bg-card-hover) 0%, var(--tn-bg-card) 100%);
    border: 1px solid var(--tn-divider);
    border-radius: var(--tn-radius-md);
    padding: 24px;
    margin: 32px 0;
}
.theme-new .tn-static-issn-badge {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom: 1px dashed var(--tn-divider);
}
.theme-new .tn-static-issn-badge strong {
    font-size: 18px;
    color: var(--tn-cta-primary, #FF6B35);
    letter-spacing: 0.04em;
    flex-shrink: 0;
    white-space: nowrap;
}
.theme-new .tn-static-issn-badge span {
    font-size: 13px;
    color: var(--tn-text-muted);
}
.theme-new .tn-static-issn-history p {
    margin: 0 0 8px;
    font-size: 14px;
    color: var(--tn-text-muted);
    line-height: 1.6;
}
.theme-new .tn-static-h2 {
    font-size: 22px !important;
    font-weight: 800 !important;
    margin: 32px 0 12px !important;
    color: var(--tn-text-base) !important;
}
.theme-new .tn-static-list {
    padding-left: 20px;
    margin: 0 0 20px;
}
.theme-new .tn-static-list li {
    margin-bottom: 6px;
    color: var(--tn-text-muted);
    line-height: 1.6;
}
.theme-new .tn-static-list li strong {
    color: var(--tn-text-base);
}
.theme-new .tn-static-cta {
    margin-top: 40px;
    padding: 24px;
    background: var(--tn-bg-card-hover);
    border-radius: var(--tn-radius-md);
    text-align: center;
}
.theme-new .tn-static-cta h3 {
    font-size: 18px !important;
    margin: 0 0 8px !important;
    color: var(--tn-text-base) !important;
}
.theme-new .tn-static-cta p {
    color: var(--tn-text-muted);
    margin: 0 0 20px;
}
.theme-new .tn-static-cta-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}
.theme-new .tn-breadcrumb-sep {
    margin: 0 8px;
    color: var(--tn-text-muted);
}

/* === Redakcija grid (popis autora portala — E-E-A-T autoritet) === */
.theme-new .tn-redakcija-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 40px;
}
.theme-new .tn-redakcija-card {
    display: flex;
    flex-direction: column;
    background: var(--tn-bg-card);
    border: 1px solid var(--tn-divider);
    border-radius: var(--tn-radius-md);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}
.theme-new .tn-redakcija-card:hover {
    transform: translateY(-2px);
    border-color: var(--tn-cta-primary, #FF6B35);
    box-shadow: 0 6px 20px rgba(0,0,0,0.18);
    text-decoration: none;
    color: inherit;
}
.theme-new .tn-redakcija-card-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    background: var(--tn-bg-card-hover);
}
.theme-new .tn-redakcija-card-body {
    padding: 16px 18px 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}
.theme-new .tn-redakcija-card-name {
    font-size: 17px !important;
    font-weight: 700 !important;
    margin: 0 !important;
    color: var(--tn-text-base) !important;
    line-height: 1.3;
}
.theme-new .tn-redakcija-card-writes {
    font-size: 13px;
    color: var(--tn-text-muted);
    line-height: 1.45;
    flex: 1;
}
.theme-new .tn-redakcija-card-stats {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-top: 8px;
    padding-top: 10px;
    border-top: 1px solid var(--tn-divider);
}
.theme-new .tn-redakcija-card-count {
    font-size: 16px;
    font-weight: 800;
    color: var(--tn-cta-primary, #FF6B35);
}
.theme-new .tn-redakcija-card-count-lbl {
    font-size: 12px;
    color: var(--tn-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* === Impressum (pravna identifikacija portala) === */
.theme-new .tn-impressum-block {
    margin: 32px 0;
    padding: 24px;
    background: var(--tn-bg-card);
    border: 1px solid var(--tn-divider);
    border-radius: var(--tn-radius-md);
}
.theme-new .tn-impressum-section-title {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: var(--tn-cta-primary, #FF6B35) !important;
    margin: 0 0 16px !important;
    padding-bottom: 10px;
    border-bottom: 1px dashed var(--tn-divider);
    letter-spacing: 0.02em;
}
.theme-new .tn-impressum-dl {
    display: grid;
    grid-template-columns: minmax(140px, max-content) 1fr;
    column-gap: 24px;
    row-gap: 10px;
    margin: 0;
}
.theme-new .tn-impressum-dl dt {
    font-size: 13px;
    font-weight: 600;
    color: var(--tn-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    align-self: start;
}
.theme-new .tn-impressum-dl dd {
    margin: 0;
    font-size: 15px;
    color: var(--tn-text-base);
    line-height: 1.5;
}
.theme-new .tn-impressum-dl dd a {
    color: var(--tn-cta-primary, #FF6B35);
    text-decoration: none;
}
.theme-new .tn-impressum-dl dd a:hover {
    text-decoration: underline;
}
.theme-new .tn-impressum-block p {
    margin: 0 0 12px;
    font-size: 15px;
    line-height: 1.65;
    color: var(--tn-text-base);
}
.theme-new .tn-impressum-block p:last-child {
    margin-bottom: 0;
}
.theme-new .tn-impressum-block a {
    color: var(--tn-cta-primary, #FF6B35);
    text-decoration: none;
}
.theme-new .tn-impressum-block a:hover {
    text-decoration: underline;
}
.theme-new .tn-impressum-meta {
    background: transparent;
    border: 0;
    padding: 8px 0 0;
    text-align: right;
}
.theme-new .tn-impressum-meta p {
    font-size: 13px;
    color: var(--tn-text-muted);
    font-style: italic;
    margin: 0;
}
@media (max-width: 640px) {
    .theme-new .tn-impressum-dl {
        grid-template-columns: 1fr;
        row-gap: 4px;
    }
    .theme-new .tn-impressum-dl dt {
        margin-top: 12px;
    }
    .theme-new .tn-impressum-dl dt:first-child {
        margin-top: 0;
    }
}

/* === Kontakt — forma + info blok === */
.theme-new .tn-kontakt-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 32px;
    margin-top: 40px;
}
@media (max-width: 900px) {
    .theme-new .tn-kontakt-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}
.theme-new .tn-kontakt-section-title {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: var(--tn-cta-primary, #FF6B35) !important;
    margin: 0 0 16px !important;
    padding-bottom: 10px;
    border-bottom: 1px dashed var(--tn-divider);
    letter-spacing: 0.02em;
}
.theme-new .tn-kontakt-form-wrap,
.theme-new .tn-kontakt-info {
    background: var(--tn-bg-card);
    border: 1px solid var(--tn-divider);
    border-radius: var(--tn-radius-md);
    padding: 24px;
}
.theme-new .tn-kontakt-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.theme-new .tn-kontakt-row {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.theme-new .tn-kontakt-row label {
    font-size: 13px;
    font-weight: 600;
    color: var(--tn-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.theme-new .tn-kontakt-row input[type="text"],
.theme-new .tn-kontakt-row input[type="email"],
.theme-new .tn-kontakt-row textarea {
    background: var(--tn-bg-input, #1a1d2e);
    border: 1px solid var(--tn-divider);
    color: var(--tn-text-base);
    padding: 12px 14px;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
    width: 100%;
    box-sizing: border-box;
}
.theme-new .tn-kontakt-row input:focus,
.theme-new .tn-kontakt-row textarea:focus {
    outline: none;
    border-color: var(--tn-cta-primary, #FF6B35);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.18);
}
.theme-new .tn-kontakt-row textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.5;
}
.theme-new .tn-kontakt-honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}
.theme-new .tn-kontakt-consent {
    flex-direction: row;
}
.theme-new .tn-kontakt-checkbox {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    cursor: pointer;
    font-size: 14px;
    color: var(--tn-text-base);
    text-transform: none;
    letter-spacing: 0;
    font-weight: 400;
    line-height: 1.5;
}
.theme-new .tn-kontakt-checkbox input[type="checkbox"] {
    margin-top: 2px;
    accent-color: var(--tn-cta-primary, #FF6B35);
    flex-shrink: 0;
}
.theme-new .tn-kontakt-actions {
    margin-top: 8px;
}
.theme-new .tn-kontakt-actions .tn-btn {
    width: 100%;
    justify-content: center;
}
.theme-new .tn-kontakt-msg {
    margin-top: 4px;
    padding: 12px 14px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.5;
    display: none;
}
.theme-new .tn-kontakt-msg.tn-kontakt-msg-ok,
.theme-new .tn-kontakt-msg.tn-kontakt-msg-err {
    display: block;
}
.theme-new .tn-kontakt-msg-ok {
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.4);
    color: #22c55e;
}
.theme-new .tn-kontakt-msg-err {
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.4);
    color: #ef4444;
}
.theme-new .tn-kontakt-impressum-note {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px dashed var(--tn-divider);
    font-size: 13px;
    color: var(--tn-text-muted);
    line-height: 1.55;
}
.theme-new .tn-kontakt-impressum-link {
    color: var(--tn-cta-primary, #FF6B35);
    text-decoration: none;
    font-weight: 600;
}
.theme-new .tn-kontakt-impressum-link:hover {
    text-decoration: underline;
}

/* === Privatnost — popis GDPR prava === */
.theme-new .tn-privatnost-rights {
    list-style: none;
    margin: 16px 0;
    padding: 0;
    display: grid;
    gap: 14px;
}
.theme-new .tn-privatnost-rights li {
    background: var(--tn-bg-card-hover);
    border-left: 3px solid var(--tn-cta-primary, #FF6B35);
    border-radius: 6px;
    padding: 12px 14px 12px 16px;
    font-size: 14px;
    color: var(--tn-text-base);
    line-height: 1.55;
}
.theme-new .tn-privatnost-rights li strong {
    color: var(--tn-cta-primary, #FF6B35);
    margin-right: 4px;
}

/* === Kolacici — re-open consent CTA + kategorije + tablica === */
.theme-new .tn-cookies-cta {
    background: linear-gradient(135deg, var(--tn-bg-card-hover) 0%, var(--tn-bg-card) 100%);
    border: 1px solid var(--tn-cta-primary, #FF6B35);
    border-radius: var(--tn-radius-md);
    padding: 24px 28px;
    margin: 32px 0;
    text-align: center;
}
.theme-new .tn-cookies-cta p {
    margin: 0 0 16px;
    color: var(--tn-text-base);
    font-size: 15px;
}
.theme-new .tn-cookies-cat-title {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: var(--tn-text-base) !important;
    margin: 24px 0 10px !important;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.theme-new .tn-cookies-cat-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #fff;
}
.theme-new .tn-cookies-cat-necessary { background: #16a34a; }
.theme-new .tn-cookies-cat-functional { background: #2563eb; }
.theme-new .tn-cookies-cat-analytics { background: #d97706; }
.theme-new .tn-cookies-cat-marketing { background: #dc2626; }
.theme-new .tn-cookies-table-wrap {
    overflow-x: auto;
    margin: 12px 0 8px;
    border: 1px solid var(--tn-divider);
    border-radius: 8px;
}
.theme-new .tn-cookies-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    color: var(--tn-text-base);
    min-width: 600px;
}
.theme-new .tn-cookies-table thead {
    background: var(--tn-bg-card-hover);
}
.theme-new .tn-cookies-table th {
    text-align: left;
    padding: 10px 14px;
    font-size: 12px;
    font-weight: 700;
    color: var(--tn-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border-bottom: 1px solid var(--tn-divider);
}
.theme-new .tn-cookies-table td {
    padding: 10px 14px;
    border-bottom: 1px solid var(--tn-divider);
    line-height: 1.5;
    vertical-align: top;
}
.theme-new .tn-cookies-table tbody tr:last-child td {
    border-bottom: 0;
}
.theme-new .tn-cookies-table code {
    background: var(--tn-bg-card-hover);
    color: var(--tn-cta-primary, #FF6B35);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 12px;
    font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
}
.theme-new .tn-cookies-browsers {
    list-style: none;
    margin: 12px 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.theme-new .tn-cookies-browsers li {
    background: var(--tn-bg-card-hover);
    border: 1px solid var(--tn-divider);
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 13px;
}
.theme-new .tn-cookies-browsers li a {
    color: var(--tn-text-base);
    text-decoration: none;
}
.theme-new .tn-cookies-browsers li a:hover {
    color: var(--tn-cta-primary, #FF6B35);
}

/* === Oglasavanje (Media Kit) — stats, vertikale, formati === */
.theme-new .tn-ads-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin: 32px 0 8px;
}
.theme-new .tn-ads-stat {
    background: linear-gradient(135deg, var(--tn-bg-card-hover) 0%, var(--tn-bg-card) 100%);
    border: 1px solid var(--tn-divider);
    border-radius: var(--tn-radius-md);
    padding: 20px 18px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: border-color 0.15s ease, transform 0.15s ease;
}
.theme-new .tn-ads-stat:hover {
    border-color: var(--tn-cta-primary, #FF6B35);
    transform: translateY(-2px);
}
.theme-new .tn-ads-stat-num {
    font-size: 32px;
    font-weight: 800;
    color: var(--tn-cta-primary, #FF6B35);
    letter-spacing: 0.02em;
    line-height: 1.1;
}
.theme-new .tn-ads-stat-lbl {
    font-size: 13px;
    font-weight: 700;
    color: var(--tn-text-base);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.theme-new .tn-ads-stat-detail {
    font-size: 12px;
    color: var(--tn-text-muted);
    line-height: 1.4;
}
.theme-new .tn-ads-vertikale-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
    margin-top: 16px;
}
.theme-new .tn-ads-vertikala {
    background: var(--tn-bg-card-hover);
    border-left: 3px solid var(--tn-cta-primary, #FF6B35);
    border-radius: 6px;
    padding: 14px 16px;
}
.theme-new .tn-ads-vertikala-title {
    font-size: 15px !important;
    font-weight: 700 !important;
    color: var(--tn-text-base) !important;
    margin: 0 0 6px !important;
}
.theme-new .tn-ads-vertikala p {
    font-size: 13px !important;
    color: var(--tn-text-muted) !important;
    line-height: 1.5;
    margin: 0 !important;
}
.theme-new .tn-ads-formats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
    margin-top: 16px;
}
.theme-new .tn-ads-format {
    background: var(--tn-bg-card-hover);
    border: 1px solid var(--tn-divider);
    border-radius: 8px;
    padding: 18px 18px 16px;
    transition: border-color 0.15s ease;
}
.theme-new .tn-ads-format:hover {
    border-color: var(--tn-cta-primary, #FF6B35);
}
.theme-new .tn-ads-format-badge {
    display: inline-block;
    background: var(--tn-cta-primary, #FF6B35);
    color: #fff;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
}
.theme-new .tn-ads-format-title {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: var(--tn-text-base) !important;
    margin: 0 0 8px !important;
}
.theme-new .tn-ads-format p {
    font-size: 13px !important;
    color: var(--tn-text-muted) !important;
    line-height: 1.5;
    margin: 0 !important;
}

/* === 404 stranica — veliki "404" + suggestion grid === */
.theme-new .tn-404-header {
    padding: 32px 0 24px;
}
.theme-new .tn-404-code {
    font-size: 96px;
    font-weight: 800;
    line-height: 1;
    color: var(--tn-cta-primary, #FF6B35);
    letter-spacing: -0.02em;
    margin-bottom: 12px;
    text-shadow: 0 4px 24px rgba(255, 107, 53, 0.18);
}
@media (max-width: 600px) {
    .theme-new .tn-404-code {
        font-size: 64px;
    }
}
.theme-new .tn-404-original-url {
    margin: 16px auto 0;
    max-width: 600px;
    font-size: 13px;
    color: var(--tn-text-muted);
}
.theme-new .tn-404-original-url code {
    background: var(--tn-bg-card-hover);
    padding: 4px 8px;
    border-radius: 4px;
    font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
    font-size: 12px;
    color: var(--tn-text-base);
    word-break: break-all;
}
.theme-new .tn-404-suggest-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
    margin-top: 16px;
}
.theme-new .tn-404-suggest-card {
    background: var(--tn-bg-card-hover);
    border: 1px solid var(--tn-divider);
    border-radius: var(--tn-radius-md);
    padding: 20px 18px;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}
.theme-new .tn-404-suggest-card:hover {
    transform: translateY(-2px);
    border-color: var(--tn-cta-primary, #FF6B35);
    box-shadow: 0 6px 20px rgba(0,0,0,0.18);
    text-decoration: none;
    color: inherit;
}
.theme-new .tn-404-suggest-card,
.theme-new .tn-404-suggest-card *,
.theme-new .tn-404-suggest-card:hover,
.theme-new .tn-404-suggest-card:hover * {
    text-decoration: none !important;
}
.theme-new .tn-404-suggest-icon {
    font-size: 32px;
    line-height: 1;
    color: var(--tn-cta-primary, #FF6B35);
    margin-bottom: 6px;
}
.theme-new .tn-404-suggest-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--tn-text-base);
}
.theme-new .tn-404-suggest-desc {
    font-size: 13px;
    color: var(--tn-text-muted);
    line-height: 1.45;
}

/* === Newsletter confirmation page state ikoni === */
.theme-new .tn-newsletter-state-icon {
    font-size: 64px;
    line-height: 1;
    margin-bottom: 12px;
}
.theme-new .tn-newsletter-state-ok {
    color: #16a34a;
    display: inline-block;
    width: 80px; height: 80px; line-height: 80px;
    border: 3px solid #16a34a;
    border-radius: 50%;
    text-align: center;
    font-size: 44px;
}
.theme-new .tn-newsletter-state-already {
    color: #2563eb;
    display: inline-block;
    width: 80px; height: 80px; line-height: 80px;
    border: 3px solid #2563eb;
    border-radius: 50%;
    text-align: center;
    font-size: 44px;
}
.theme-new .tn-newsletter-state-err {
    color: #dc2626;
    display: inline-block;
    width: 80px; height: 80px; line-height: 80px;
    border: 3px solid #dc2626;
    border-radius: 50%;
    text-align: center;
    font-size: 44px;
}

/* === Currency switcher dropdown (7 valuta) === */
.theme-new .tn-currency-switcher {
    position: relative;
    margin-left: 8px;
}
.theme-new .tn-currency-toggle {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: transparent;
    border: 1px solid var(--tn-divider);
    border-radius: 4px;
    padding: 4px 8px 4px 10px;
    color: var(--tn-text-muted);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: border-color 0.15s ease, color 0.15s ease;
}
.theme-new .tn-currency-toggle:hover {
    border-color: var(--tn-cta-primary, #FF6B35);
    color: var(--tn-text-base);
}
.theme-new .tn-currency-toggle[aria-expanded="true"] {
    border-color: var(--tn-cta-primary, #FF6B35);
    color: var(--tn-text-base);
}
.theme-new .tn-currency-arrow {
    font-size: 10px;
    line-height: 1;
}
.theme-new .tn-currency-menu {
    position: absolute;
    top: calc(100% + 4px);
    right: 0;
    min-width: 130px;
    background: var(--tn-bg-card);
    border: 1px solid var(--tn-divider);
    border-radius: 6px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    padding: 4px;
    z-index: 100;
    display: flex;
    flex-direction: column;
}
.theme-new .tn-currency-menu[hidden] {
    display: none;
}
.theme-new .tn-currency-item {
    background: transparent;
    border: 0;
    padding: 8px 12px;
    text-align: left;
    color: var(--tn-text-muted);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.12s ease, color 0.12s ease;
}
.theme-new .tn-currency-item:hover {
    background: var(--tn-bg-card-hover);
    color: var(--tn-text-base);
}
.theme-new .tn-currency-item-active {
    background: var(--tn-cta-primary, #FF6B35) !important;
    color: #fff !important;
}

.theme-new .tn-lang-switcher {
    display: flex;
    gap: 6px;
    align-items: center;
}
.theme-new .tn-lang-switcher a {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--tn-text-muted);
    padding: 4px 8px;
    border-radius: 4px;
    text-transform: uppercase;
}
.theme-new .tn-lang-switcher a.active {
    color: var(--tn-text-base);
    background: var(--tn-bg-card);
}
.theme-new .tn-lang-switcher a:hover { color: var(--tn-text-base); }

.theme-new .tn-mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--tn-text-base);
    font-size: 24px;
    cursor: pointer;
    padding: 4px 8px;
}

@media (max-width: 991px) {
    .theme-new .tn-nav { display: none; }
    .theme-new .tn-mobile-toggle { display: block; }

    /* Jezici sakriveni iz glavnog headera na mobitelu — prikazuju se u hamburger meniju */
    .theme-new .tn-lang-switcher { display: none; }
    .theme-new .tn-header-inner { gap: 12px; }
    .theme-new .tn-logo { font-size: 18px; }

    /* Mobile menu OPEN state — slide down ispod headera */
    .theme-new .tn-header.tn-mobile-open {
        background: var(--tn-bg-card);
    }
    .theme-new .tn-header.tn-mobile-open .tn-nav {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background: var(--tn-bg-card);
        padding: 8px 0;
        border-top: 1px solid var(--tn-divider);
        box-shadow: 0 8px 20px rgba(0,0,0,0.4);
        z-index: 99;
    }
    .theme-new .tn-header.tn-mobile-open .tn-nav-link {
        padding: 14px 16px;
        font-size: 17px;
        border-bottom: 1px solid var(--tn-divider);
        color: var(--tn-text-base);
    }
    .theme-new .tn-header.tn-mobile-open .tn-nav-link:last-child {
        border-bottom: none;
    }
    .theme-new .tn-header.tn-mobile-open .tn-nav-link.active {
        color: var(--tn-cta-primary);
    }
    .theme-new .tn-header.tn-mobile-open .tn-mobile-toggle {
        color: var(--tn-cta-primary);
    }

    /* Jezici se pojavljuju kao zadnja stavka u hamburger meniju */
    .theme-new .tn-header.tn-mobile-open .tn-lang-switcher {
        display: flex;
        position: absolute;
        top: calc(100% + 280px);
        left: 0;
        right: 0;
        background: var(--tn-bg-card);
        padding: 14px 16px;
        justify-content: center;
        gap: 4px;
        border-top: 1px solid var(--tn-divider);
        border-bottom: 1px solid var(--tn-divider);
        box-shadow: 0 8px 20px rgba(0,0,0,0.4);
        z-index: 99;
    }
}

/* --- Globalna zaštita protiv overflow-a u grid kontejnerima --- */
.theme-new .tn-card-grid > *,
.theme-new .tn-magazin-grid > *,
.theme-new .tn-hero-grid > *,
.theme-new .tn-scoreboard-list > *,
.theme-new .tn-standup-list > * {
    min-width: 0;
    max-width: 100%;
}

/* --- Slike: nikad nikad ne smiju biti šire od kontejnera --- */
.theme-new img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* --- 8. HERO BILLBOARD (vrh stranice — 3-stupac: 2 sporedne + 1 dominantna + sidebar Najnovije) --- */
.theme-new .tn-hero {
    padding: 32px 0 48px;
}
.theme-new .tn-hero-billboard {
    display: grid;
    grid-template-columns: 1fr 2.4fr 1.4fr;
    gap: 20px;
    align-items: stretch;
}
@media (max-width: 1199px) {
    .theme-new .tn-hero-billboard {
        grid-template-columns: 1.6fr 1fr;
    }
    .theme-new .tn-hero-side-col { grid-row: 2; grid-column: 1 / -1; flex-direction: row; }
    .theme-new .tn-hero-side-col .tn-hero-side-card { flex: 1; }
}
@media (max-width: 768px) {
    .theme-new .tn-hero-billboard { grid-template-columns: 1fr; gap: 16px; }
    .theme-new .tn-hero-side-col { flex-direction: column; }
}

/* LIJEVI stupac — 2 sporedne kartice */
.theme-new .tn-hero-side-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.theme-new .tn-hero-side-card {
    display: block;
    background: var(--tn-bg-card);
    border-radius: var(--tn-radius-md);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: var(--tn-shadow-card);
    transition: box-shadow 0.18s ease, transform 0.18s ease;
}
.theme-new .tn-hero-side-card:hover {
    box-shadow: var(--tn-shadow-hover);
    transform: translateY(-2px);
}
.theme-new .tn-hero-side-card-img-wrap {
    position: relative;
    overflow: hidden;
}
.theme-new .tn-hero-side-card-img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
}

/* === ULAZNICE BADGE === */
/* Vidljiv signal "ovaj klik vodi na karte, nije samo clanak" — gornji desni kut svake event slike */
.theme-new .tn-music-card-img-wrap {
    position: relative;
    overflow: hidden;
}
.theme-new .tn-ticket-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--tn-cta-primary, #FFB800);
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 6px 10px 6px 8px;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
    z-index: 2;
    pointer-events: none;
}
.theme-new .tn-ticket-badge svg {
    flex-shrink: 0;
}

/* === City card OSM map iframe (Putovanja sekcija — koordinate iz tblPlaces) === */
.theme-new .tn-city-card-map-wrap {
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--tn-bg-card-hover);
}
.theme-new .tn-city-card-map {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    pointer-events: none;
}
.theme-new .tn-hero-side-card-body {
    padding: 14px 16px 16px;
}
.theme-new .tn-hero-side-card-cat {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #1A1B23;
    padding: 3px 8px;
    border-radius: 3px;
    margin-bottom: 8px;
    text-transform: uppercase;
}
.theme-new .tn-hero-side-card-title {
    font-size: 17px !important;
    font-weight: 800 !important;
    line-height: 1.25 !important;
    margin: 0 0 6px !important;
    color: var(--tn-text-base) !important;
}
.theme-new .tn-hero-side-card-meta {
    font-size: 12px;
    color: var(--tn-text-muted);
}

/* CENTAR — dominantni TOP STORY */
.theme-new .tn-hero-main {
    background: var(--tn-bg-card);
    border-radius: var(--tn-radius-lg);
    overflow: hidden;
    box-shadow: var(--tn-shadow-card);
    display: flex;
    flex-direction: column;
}
.theme-new .tn-hero-main-link {
    display: block;
    position: relative;
    text-decoration: none;
}
.theme-new .tn-hero-main-img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    display: block;
    background: var(--tn-bg-card-hover);
}
.theme-new .tn-hero-main-overlay {
    position: absolute;
    bottom: 16px;
    left: 16px;
}
.theme-new .tn-badge-top-story {
    background: var(--tn-cta-primary, #FFB800);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.1em;
    padding: 6px 12px;
    border-radius: 3px;
    text-transform: uppercase;
}
.theme-new .tn-hero-main-body {
    padding: 24px 28px 28px;
}
.theme-new .tn-hero-main-title {
    font-size: 32px !important;
    font-weight: 900 !important;
    line-height: 1.15 !important;
    letter-spacing: -0.02em !important;
    margin: 0 0 12px 0 !important;
    color: var(--tn-text-base) !important;
}
@media (max-width: 768px) {
    .theme-new .tn-hero-main-title { font-size: 24px !important; }
    .theme-new .tn-hero-main-body { padding: 18px; }
}
.theme-new .tn-hero-main-meta {
    font-size: 13px;
    color: var(--tn-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* DESNI sidebar — Najnovije */
.theme-new .tn-hero-news {
    background: var(--tn-bg-card);
    border-radius: var(--tn-radius-md);
    padding: 24px;
    box-shadow: var(--tn-shadow-card);
}
.theme-new .tn-hero-news-title {
    font-size: 13px !important;
    font-weight: 900 !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase !important;
    color: var(--tn-text-base) !important;
    margin: 0 0 18px !important;
    padding-bottom: 12px !important;
    border-bottom: 2px solid var(--tn-text-base);
}
.theme-new .tn-hero-news-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.theme-new .tn-hero-news-item {
    padding: 14px 0;
    border-bottom: 1px solid var(--tn-divider);
}
.theme-new .tn-hero-news-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.theme-new .tn-hero-news-item:first-child {
    padding-top: 0;
}
.theme-new .tn-hero-news-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: color 0.15s ease;
}
.theme-new .tn-hero-news-link:hover .tn-hero-news-item-title {
    color: var(--tn-cta-primary, #FFB800);
}
.theme-new .tn-hero-news-item-title {
    display: block;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
    color: var(--tn-text-base);
    margin-bottom: 6px;
}
.theme-new .tn-hero-news-item-meta {
    display: block;
    font-size: 11px;
    color: var(--tn-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* Stari hero-grid backup ako ga jos netko koristi */
.theme-new .tn-hero-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 24px;
    align-items: start;
}
.theme-new .tn-hero-feature-body {
    display: flex;
    flex-direction: column;
}
.theme-new .tn-hero-feature h2 + .tn-hero-feature-lead {
    flex: 1 1 auto;
}
@media (max-width: 991px) {
    .theme-new .tn-hero-grid { grid-template-columns: 1fr; }
}

.theme-new .tn-hero-feature {
    background: var(--tn-bg-card);
    border-radius: var(--tn-radius-lg);
    overflow: hidden;
    box-shadow: var(--tn-shadow-card);
    transition: box-shadow 0.18s ease;
}
.theme-new .tn-hero-feature:hover { box-shadow: var(--tn-shadow-hover); }

.theme-new .tn-hero-feature-img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    background: var(--tn-bg-card-hover);
}
.theme-new .tn-hero-feature-body {
    padding: 28px;
}
@media (max-width: 768px) { .theme-new .tn-hero-feature-body { padding: 20px; } }

.theme-new .tn-hero-feature-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}
.theme-new .tn-hero-feature h2 {
    font-size: 38px !important;
    line-height: 1.15 !important;
    letter-spacing: -0.02em !important;
    margin-bottom: 14px !important;
    color: var(--tn-text-base) !important;
}
@media (max-width: 768px) { .theme-new .tn-hero-feature h2 { font-size: 28px !important; } }

.theme-new .tn-hero-feature-lead {
    font-size: 17px !important;
    color: var(--tn-text-muted) !important;
    line-height: 1.6 !important;
    margin-bottom: 20px !important;
}
.theme-new .tn-hero-feature-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

/* --- 9. SPORT SCOREBOARD (hero desno) --- */
.theme-new .tn-scoreboard {
    background: var(--tn-bg-card);
    border-radius: var(--tn-radius-lg);
    padding: 24px;
    box-shadow: var(--tn-shadow-card);
    display: flex;
    flex-direction: column;
}
.theme-new .tn-scoreboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--tn-divider);
}
.theme-new .tn-scoreboard-title {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--tn-text-base);
    margin: 0;
}
.theme-new .tn-scoreboard-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
}
.theme-new .tn-scoreboard-match {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 12px;
    border-radius: var(--tn-radius-md);
    background: var(--tn-bg-base);
    border: 1px solid var(--tn-divider);
    transition: border-color 0.15s ease;
}
.theme-new .tn-scoreboard-match:hover { border-color: var(--tn-border); }

.theme-new .tn-scoreboard-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--tn-text-muted);
    font-weight: 600;
}

.theme-new .tn-scoreboard-teams {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 10px;
    min-width: 0;
}
.theme-new .tn-scoreboard-team {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.theme-new .tn-scoreboard-team {
    font-family: var(--tn-font-sans);
    font-weight: 700;
    font-size: 16px;
    line-height: 1.2;
}
.theme-new .tn-scoreboard-team-a { text-align: right; }
.theme-new .tn-scoreboard-vs {
    font-family: var(--tn-font-mono);
    font-weight: 600;
    font-size: 13px;
    color: var(--tn-text-muted);
    padding: 2px 8px;
    background: var(--tn-bg-card-hover);
    border-radius: 4px;
}
.theme-new .tn-scoreboard-result {
    font-family: var(--tn-font-mono);
    font-weight: 700;
    font-size: 22px;
    color: var(--tn-text-base);
    padding: 2px 10px;
    background: var(--tn-bg-card-hover);
    border-radius: 4px;
}

.theme-new .tn-scoreboard-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 6px;
    padding-top: 8px;
    border-top: 1px dashed var(--tn-divider);
}
.theme-new .tn-scoreboard-price-info {
    display: flex;
    align-items: baseline;
    gap: 8px;
}
.theme-new .tn-scoreboard-price-current {
    font-family: var(--tn-font-mono);
    font-weight: 700;
    font-size: 20px;
    color: var(--tn-cta-primary);
}

/* --- 10. SECTION (univerzalna sekcija s naslovom) --- */
.theme-new .tn-section {
    padding: 48px 0;
}
@media (max-width: 768px) { .theme-new .tn-section { padding: 32px 0; } }

.theme-new .tn-section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 24px;
    gap: 16px;
    flex-wrap: wrap;
}
.theme-new .tn-section-title {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0;
    line-height: 1.1;
}
.theme-new .tn-section-subtitle {
    font-size: 14px;
    color: var(--tn-text-muted);
    margin-top: 6px;
}
.theme-new .tn-section-link {
    font-size: 14px;
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.02em;
}

/* --- 11. KARTICE (Top natjecanja, Ovog vikenda grid) --- */
.theme-new .tn-card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
@media (max-width: 991px) {
    .theme-new .tn-card-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
    .theme-new .tn-card-grid { grid-template-columns: 1fr; }
}

/* --- 12. KARTICA NATJECANJA (Top 5 sport kompetencija) --- */
.theme-new .tn-comp-card {
    background: var(--tn-bg-card);
    border-radius: var(--tn-radius-md);
    padding: 20px;
    text-align: center;
    transition: all 0.18s ease;
    border: 1px solid transparent;
    cursor: pointer;
    text-decoration: none !important;
    display: block;
}
.theme-new .tn-comp-card:hover {
    background: var(--tn-bg-card-hover);
    border-color: var(--tn-cta-primary);
    transform: translateY(-2px);
}
.theme-new .tn-comp-card-icon {
    font-size: 32px;
    margin-bottom: 8px;
    color: var(--tn-cta-primary);
}
.theme-new .tn-comp-card-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--tn-text-base);
    margin: 0 0 4px;
}
.theme-new .tn-comp-card-count {
    font-family: var(--tn-font-mono);
    font-size: 13px;
    color: var(--tn-text-muted);
    font-weight: 500;
}

/* --- 13. FOOTER PLACEHOLDER (full footer kasnije) --- */
.theme-new .tn-footer {
    background: var(--tn-bg-base);
    border-top: 1px solid var(--tn-divider);
    padding: 48px 0 24px;
    margin-top: 64px;
}
.theme-new .tn-footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-bottom: 32px;
}
@media (max-width: 991px) {
    .theme-new .tn-footer-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (max-width: 576px) {
    .theme-new .tn-footer-grid { grid-template-columns: 1fr; }
}
.theme-new .tn-footer-col-title {
    font-size: 13px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
    color: var(--tn-text-base) !important;
    margin: 0 0 16px !important;
    padding-bottom: 10px !important;
    border-bottom: 2px solid var(--tn-cta-primary, #FF6B35);
    display: inline-block;
}
.theme-new .tn-footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.theme-new .tn-footer-list a {
    color: var(--tn-text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.15s ease;
}
.theme-new .tn-footer-list a:hover {
    color: var(--tn-text-base);
}
.theme-new .tn-footer-issn {
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px dashed var(--tn-divider);
    font-size: 12px;
    color: var(--tn-text-muted);
}
.theme-new .tn-footer-issn-label {
    display: block;
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 4px;
}
.theme-new .tn-footer-issn strong {
    color: var(--tn-text-base);
    font-size: 14px;
    letter-spacing: 0.04em;
}
.theme-new .tn-footer-authority {
    text-align: center;
    padding: 16px 0;
    border-top: 1px solid var(--tn-divider);
    border-bottom: 1px solid var(--tn-divider);
    margin-bottom: 16px;
    color: var(--tn-text-muted);
    font-size: 13px;
}
.theme-new .tn-footer-authority strong { color: var(--tn-text-base); }

.theme-new .tn-footer-bottom {
    text-align: center;
    color: var(--tn-text-muted);
    font-size: 13px;
    line-height: 1.8;
}
.theme-new .tn-footer-bottom-sep {
    color: var(--tn-divider);
}
.theme-new .tn-footer-gdpr-link {
    color: var(--tn-text-muted);
    text-decoration: underline;
    cursor: pointer;
    background: none;
    border: 0;
    padding: 0;
    font-size: inherit;
}
.theme-new .tn-footer-gdpr-link:hover { color: var(--tn-text-base); }

/* --- 14. UTILITY classes --- */
.theme-new .tn-text-muted { color: var(--tn-text-muted); }
.theme-new .tn-text-cta   { color: var(--tn-cta-primary); }
.theme-new .tn-text-win   { color: var(--tn-win); }
.theme-new .tn-text-loss  { color: var(--tn-loss); }

/* --- 15. BODY OVERRIDE (aktivacijska klasa na <body>) --- */
body.theme-new {
    background: var(--tn-bg-base) !important;
    color: var(--tn-text-base) !important;
    font-family: var(--tn-font-sans) !important;
}

/* --- 16. SVG ikona u kartici natjecanja — limit velicine kad dolazi raw iz baze --- */
.theme-new .tn-comp-card-icon svg {
    width: 36px;
    height: 36px;
    fill: var(--tn-cta-primary);
    color: var(--tn-cta-primary);
    margin: 0 auto;
    display: block;
}

/* =========================================================================
   --- 22. GDPR MODAL (samostalan — bez Bootstrap dependencije) ---
   ========================================================================= */
.theme-new .tn-gdpr-modal {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 16px;
    backdrop-filter: blur(4px);
}
.theme-new .tn-gdpr-dialog {
    background: var(--tn-bg-card);
    border-radius: var(--tn-radius-lg);
    max-width: 520px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}
.theme-new .tn-gdpr-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 22px;
    border-bottom: 1px solid var(--tn-divider);
}
.theme-new .tn-gdpr-title {
    margin: 0 !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    color: var(--tn-text-base) !important;
}
.theme-new .tn-gdpr-close {
    background: none;
    border: none;
    color: var(--tn-text-muted);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    padding: 0 4px;
}
.theme-new .tn-gdpr-close:hover { color: var(--tn-text-base); }
.theme-new .tn-gdpr-body {
    padding: 18px 22px;
}
.theme-new .tn-gdpr-intro {
    font-size: 13px !important;
    color: var(--tn-text-muted) !important;
    margin: 0 0 16px !important;
    line-height: 1.5 !important;
}
.theme-new .tn-gdpr-option {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 12px;
    margin-bottom: 6px;
    border: 1px solid var(--tn-divider);
    border-radius: var(--tn-radius-sm);
    cursor: pointer;
    font-size: 13px;
    color: var(--tn-text-base);
    line-height: 1.4;
}
.theme-new .tn-gdpr-option:hover {
    background: var(--tn-bg-card-hover);
    border-color: var(--tn-border);
}
.theme-new .tn-gdpr-option input {
    margin-top: 2px;
    accent-color: var(--tn-cta-primary);
}
.theme-new .tn-gdpr-footer {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
    padding: 18px 22px;
    border-top: 1px solid var(--tn-divider);
    flex-wrap: wrap;
}
@media (max-width: 576px) {
    .theme-new .tn-gdpr-footer { flex-direction: column; }
    .theme-new .tn-gdpr-footer .tn-btn { width: 100%; }
}

/* =========================================================================
   --- 17. STAND-UP KARTICE (lista komičara/događaja) ---
   ========================================================================= */
.theme-new .tn-standup-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.theme-new .tn-standup-row {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto auto;
    gap: 16px;
    align-items: center;
    padding: 16px 18px;
    background: var(--tn-bg-card);
    border: 1px solid var(--tn-divider);
    border-radius: var(--tn-radius-md);
    transition: border-color 0.15s ease, transform 0.15s ease;
}
.theme-new .tn-standup-row:hover {
    border-color: var(--tn-cta-primary);
    transform: translateX(2px);
}
.theme-new .tn-standup-date {
    font-family: var(--tn-font-mono);
    font-weight: 600;
    font-size: 14px;
    color: var(--tn-text-muted);
    text-align: center;
    min-width: 64px;
    line-height: 1.2;
}
.theme-new .tn-standup-date strong {
    display: block;
    font-size: 22px;
    color: var(--tn-text-base);
    font-weight: 700;
}
.theme-new .tn-standup-info { min-width: 0; }
.theme-new .tn-standup-name {
    font-size: 17px;
    font-weight: 700;
    color: var(--tn-text-base);
    margin: 0 0 4px;
    line-height: 1.25;
}
.theme-new .tn-standup-venue {
    font-size: 13px;
    color: var(--tn-text-muted);
    line-height: 1.3;
}
.theme-new .tn-standup-price {
    font-family: var(--tn-font-mono);
    font-weight: 700;
    font-size: 18px;
    color: var(--tn-cta-primary);
    text-align: right;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .theme-new .tn-standup-row {
        grid-template-columns: auto minmax(0, 1fr);
        gap: 12px;
        padding: 14px;
    }
    .theme-new .tn-standup-price,
    .theme-new .tn-standup-row > .tn-btn {
        grid-column: 1 / -1;
        text-align: left;
    }
    .theme-new .tn-standup-row > .tn-btn { width: 100%; }
    .theme-new .tn-standup-name { font-size: 16px; }
    .theme-new .tn-standup-venue { font-size: 12px; }
}

/* =========================================================================
   --- 18. GLAZBA grid (top koncerti vikenda) ---
   ========================================================================= */
.theme-new .tn-music-card {
    background: var(--tn-bg-card);
    border-radius: var(--tn-radius-md);
    overflow: hidden;
    box-shadow: var(--tn-shadow-card);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    display: flex;
    flex-direction: column;
    text-decoration: none !important;
    color: var(--tn-text-base) !important;
}
.theme-new .tn-music-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--tn-shadow-hover);
    color: var(--tn-text-base) !important;
}
.theme-new .tn-music-card-img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    background: var(--tn-bg-card-hover);
}
.theme-new .tn-music-card-body {
    padding: 14px 16px 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.theme-new .tn-music-card-genre {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 2px;
}
.theme-new .tn-music-card-name {
    font-size: 18px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
    letter-spacing: -0.01em;
    color: var(--tn-text-base);
}
.theme-new .tn-music-card-meta {
    font-size: 13px;
    color: var(--tn-text-muted);
    line-height: 1.4;
    margin-top: 2px;
}
.theme-new .tn-music-card-price {
    margin-top: auto;
    padding-top: 8px;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    border-top: 1px dashed var(--tn-divider);
}
.theme-new .tn-music-card-price-amount {
    font-family: var(--tn-font-mono);
    font-weight: 700;
    font-size: 18px;
    color: var(--tn-cta-primary);
}
.theme-new .tn-music-card-price-label {
    font-size: 11px;
    color: var(--tn-text-muted);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* =========================================================================
   --- 17.5 HEADER SEARCH BAR (DICE pattern — central search) ---
   ========================================================================= */
.theme-new .tn-header-search-wrap {
    position: relative;
    flex: 1;
    max-width: 360px;
    margin: 0 16px;
}
.theme-new .tn-header-search-icon {
    position: absolute;
    top: 50%;
    left: 14px;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--tn-text-muted);
    pointer-events: none;
}
.theme-new .tn-header-search-icon svg { width: 16px; height: 16px; }
.theme-new .tn-header-search-input {
    width: 100%;
    height: 40px;
    padding: 0 14px 0 40px;
    background: var(--tn-bg-card);
    border: 1px solid var(--tn-divider);
    border-radius: 999px;
    color: var(--tn-text-primary);
    font-family: var(--tn-font-sans);
    font-size: 14px;
    outline: none;
    transition: background 0.15s ease, border-color 0.15s ease;
}
.theme-new .tn-header-search-input::placeholder { color: var(--tn-text-muted); }
.theme-new .tn-header-search-input:focus {
    background: var(--tn-bg-hover);
    border-color: rgba(255,107,53,0.4);
}
.theme-new .tn-header-search-results {
    position: absolute;
    top: 48px;
    left: 0;
    right: 0;
    max-height: 480px;
    overflow-y: auto;
    background: var(--tn-bg-card);
    border-radius: var(--tn-radius-md);
    box-shadow: 0 8px 24px rgba(0,0,0,0.5);
    padding: 8px;
    z-index: 100;
    border: 1px solid var(--tn-divider);
}
.theme-new .tn-search-section { padding: 4px 0; }
.theme-new .tn-search-section + .tn-search-section { border-top: 1px solid var(--tn-divider); margin-top: 4px; padding-top: 8px; }
.theme-new .tn-search-section-title {
    font-size: 10px;
    font-weight: 700;
    color: var(--tn-text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 12px 4px 12px;
}
@media (max-width: 991px) {
    .theme-new .tn-header-search-wrap { max-width: 240px; margin: 0 8px; }
    .theme-new .tn-header-search-input { font-size: 13px; }
}
@media (max-width: 640px) {
    .theme-new .tn-header-search-wrap { display: none; }
}

/* =========================================================================
   --- 17.9a SPORT TILE PICKER (V6 LAYOUTS sekcija 2) ---
   /sport/ → 1:1 squares, sport name + count utakmica
   Reference: PORTAL_REDIZAJN_LAYOUTS.md sekcija 2 (DICE.fm minimal pattern)
   ========================================================================= */
.theme-new .tn-sport-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 24px;
}
@media (max-width: 991px) { .theme-new .tn-sport-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; } }
@media (max-width: 640px) { .theme-new .tn-sport-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }

.theme-new .tn-sport-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 1;
    background: var(--tn-bg-card, #252631);
    border: 1px solid var(--tn-border, #3F3F4D);
    border-radius: 12px;
    padding: 24px 16px;
    text-decoration: none;
    color: inherit;
    transition: background 0.18s, transform 0.18s, border-color 0.18s;
}
.theme-new .tn-sport-tile:hover {
    background: var(--tn-bg-hover, #2D2E3B);
    border-color: var(--tn-cta-primary, #FF6B35);
    transform: translateY(-2px);
}
.theme-new .tn-sport-tile-icon {
    width: 96px;
    height: 96px;
    margin-bottom: 14px;
    color: var(--tn-cta-primary, #FF6B35);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.18s ease, color 0.18s ease;
}
.theme-new .tn-sport-tile:hover .tn-sport-tile-icon { transform: scale(1.06); }
.theme-new .tn-sport-tile-icon svg {
    width: 100%;
    height: 100%;
    display: block;
    fill: currentColor;
}
.theme-new .tn-sport-tile-icon svg path,
.theme-new .tn-sport-tile-icon svg circle,
.theme-new .tn-sport-tile-icon svg rect,
.theme-new .tn-sport-tile-icon svg polygon,
.theme-new .tn-sport-tile-icon svg polyline,
.theme-new .tn-sport-tile-icon svg ellipse {
    fill: currentColor;
}
.theme-new .tn-sport-tile-initial {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--tn-cta-primary, #FF6B35) 0%, #E55A2B 100%);
    color: #fff;
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 48px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: -0.02em;
}
.theme-new .tn-sport-tile-name {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--tn-text-primary, #EAEAE6);
    text-align: center;
    margin-bottom: 4px;
}
.theme-new .tn-sport-tile-count {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: var(--tn-text-muted, #9CA3AF);
    text-align: center;
}
@media (max-width: 640px) {
    .theme-new .tn-sport-tile { padding: 16px 8px; }
    .theme-new .tn-sport-tile-icon { width: 64px; height: 64px; margin-bottom: 10px; }
    .theme-new .tn-sport-tile-initial { width: 64px; height: 64px; font-size: 32px; }
    .theme-new .tn-sport-tile-name { font-size: 14px; }
    .theme-new .tn-sport-tile-count { font-size: 11px; }
}

/* =========================================================================
   --- 17.9b LIGA TILE PICKER (V6 LAYOUTS sekcija 3) ---
   /sport/{sport}/ → 16:9 cover slika n.IMG, zastava overlay top-right, liga naziv + count
   Reference: PORTAL_REDIZAJN_LAYOUTS.md sekcija 3
   ========================================================================= */
.theme-new .tn-liga-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 24px;
}
@media (max-width: 991px) { .theme-new .tn-liga-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; } }
@media (max-width: 640px) { .theme-new .tn-liga-grid { grid-template-columns: 1fr; gap: 12px; } }

.theme-new .tn-liga-tile {
    display: block;
    background: var(--tn-bg-card, #252631);
    border: 1px solid var(--tn-border, #3F3F4D);
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: background 0.18s, transform 0.18s, border-color 0.18s;
}
.theme-new .tn-liga-tile:hover {
    background: var(--tn-bg-hover, #2D2E3B);
    border-color: var(--tn-cta-primary, #FF6B35);
    transform: translateY(-2px);
}
.theme-new .tn-liga-tile:hover .tn-liga-tile-img { transform: scale(1.02); }

.theme-new .tn-liga-tile-img-wrap {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #1A1B23;
}
.theme-new .tn-liga-tile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}
.theme-new .tn-liga-tile-body {
    padding: 16px 18px 18px;
}
.theme-new .tn-liga-tile-name {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--tn-text-primary, #EAEAE6);
    margin: 0 0 6px 0;
    letter-spacing: -0.01em;
    line-height: 1.3;
}
.theme-new .tn-liga-tile-meta {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: var(--tn-text-muted, #9CA3AF);
}

/* =========================================================================
   --- 18.0 DICE EVENT CARD (V6 1:1 cover, žuti datum, heart) ---
   /sport/, /glazba/, /stand-up/, /sport/{x}/{y}/ — sve listing stranice
   1:1 cover slika + heart top-right + naslov bold + datum #FFD60A žut + venue muted + cijena
   Reference: dice.fm/events Bologna full-page screenshot 2026-04-30
   ========================================================================= */
.theme-new .tn-events-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 16px;
}
@media (max-width: 1199px) { .theme-new .tn-events-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) { .theme-new .tn-events-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; } }
@media (max-width: 480px) { .theme-new .tn-events-grid { grid-template-columns: 1fr; } }

.theme-new .tn-event-card {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: transform 0.18s ease;
}
.theme-new .tn-event-card:hover { transform: translateY(-2px); }
.theme-new .tn-event-card:hover .tn-event-card-img { transform: scale(1.02); }

.theme-new .tn-event-card-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: var(--tn-radius-md);
    background: #1A1B23;
    margin-bottom: 12px;
}
.theme-new .tn-event-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.25s ease;
}

/* Heart icon (watchlist placeholder dok backend P5.1 ne bude gotov) */
.theme-new .tn-event-card-heart {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    background: rgba(0,0,0,0.55);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.15s ease;
    border: 0;
    z-index: 2;
}
.theme-new .tn-event-card-heart:hover { background: rgba(0,0,0,0.85); }
.theme-new .tn-event-card-heart svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: #FFFFFF;
    stroke-width: 2;
    transition: fill 0.15s ease, stroke 0.15s ease;
}
.theme-new .tn-event-card-heart.active svg { fill: var(--tn-cta-primary); stroke: var(--tn-cta-primary); }

/* Hot badge (žuti, top-left ako event ≤ 14 dana) */
.theme-new .tn-event-card-hot {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--tn-hot, #FFD60A);
    color: #1A1B23;
    font-family: var(--tn-font-sans);
    font-weight: 800;
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 8px;
    border-radius: 3px;
    z-index: 2;
}

.theme-new .tn-event-card-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 0 4px;
}
.theme-new .tn-event-card-title {
    font-family: var(--tn-font-sans);
    font-weight: 700;
    font-size: 15px;
    line-height: 1.3;
    color: var(--tn-text-primary);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
/* DICE žuti datum (Fri, May 22) — A spec hot accent */
.theme-new .tn-event-card-date {
    font-family: var(--tn-font-sans);
    font-weight: 500;
    font-size: 13px;
    color: var(--tn-hot, #FFD60A);
    margin: 0;
}
.theme-new .tn-event-card-venue {
    font-family: var(--tn-font-sans);
    font-weight: 400;
    font-size: 13px;
    color: var(--tn-text-muted);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.theme-new .tn-event-card-price {
    font-family: var(--tn-font-sans);
    font-weight: 500;
    font-size: 13px;
    color: var(--tn-text-primary);
    margin: 4px 0 0 0;
}
.theme-new .tn-event-card-price .tn-price-prefix {
    color: var(--tn-text-muted);
    font-weight: 400;
}

/* =========================================================================
   --- 18.1 FILTER BAR (DICE pattern) — global chips + sport pill chips ---
   ========================================================================= */
.theme-new .tn-filter-bar {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 16px 0 24px 0;
}
.theme-new .tn-filter-chips-global {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.theme-new .tn-filter-chip-global {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: var(--tn-bg-card);
    border: 1px solid var(--tn-divider);
    border-radius: 999px;
    color: var(--tn-text-primary);
    font-family: var(--tn-font-sans);
    font-weight: 500;
    font-size: 13px;
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease;
    text-decoration: none;
}
.theme-new .tn-filter-chip-global:hover { background: var(--tn-bg-hover); border-color: rgba(255,107,53,0.4); }
.theme-new .tn-filter-chip-global svg { width: 14px; height: 14px; opacity: 0.7; }
.theme-new .tn-filter-chip-global .tn-chip-chevron { width: 10px; height: 10px; opacity: 0.5; transition: transform 0.15s ease; }

.theme-new .tn-filter-dropdown { position: relative; display: inline-block; }
.theme-new .tn-filter-dropdown.open .tn-filter-chip-global { background: var(--tn-bg-hover); border-color: var(--tn-cta-primary); }
.theme-new .tn-filter-dropdown.open .tn-chip-chevron { transform: rotate(180deg); }
.theme-new .tn-filter-dropdown.active .tn-filter-chip-global {
    background: rgba(255,107,53,0.12);
    border-color: var(--tn-cta-primary);
    color: var(--tn-cta-primary);
}
.theme-new .tn-filter-dropdown.active .tn-filter-chip-global svg { opacity: 1; }

.theme-new .tn-filter-panel {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    z-index: 100;
    min-width: 220px;
    max-height: 320px;
    overflow-y: auto;
    background: var(--tn-bg-card);
    border: 1px solid var(--tn-border, #3F3F4D);
    border-radius: 12px;
    padding: 6px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.theme-new .tn-filter-panel[hidden] { display: none; }
.theme-new .tn-filter-option {
    display: block;
    width: 100%;
    text-align: left;
    padding: 10px 14px;
    background: transparent;
    border: none;
    border-radius: 8px;
    color: var(--tn-text-primary);
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.12s ease;
}
.theme-new .tn-filter-option:hover { background: var(--tn-bg-hover); color: var(--tn-cta-primary); }
.theme-new .tn-filter-empty {
    padding: 40px;
    text-align: center;
    color: var(--tn-text-muted);
    font-family: 'Manrope', sans-serif;
}

.theme-new .tn-filter-chips-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.theme-new .tn-filter-chip-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: transparent;
    border: 1px solid var(--tn-divider);
    border-radius: 999px;
    color: var(--tn-text-muted);
    font-family: var(--tn-font-sans);
    font-weight: 500;
    font-size: 12px;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
    text-decoration: none;
}
.theme-new .tn-filter-chip-pill:hover { color: var(--tn-text-primary); border-color: rgba(255,255,255,0.15); }
.theme-new .tn-filter-chip-pill.active {
    background: var(--tn-cta-primary);
    color: #1A1B23;
    border-color: var(--tn-cta-primary);
    font-weight: 600;
}

/* Section header H2 "Popular Events in {Location}" — Manrope ExtraBold */
.theme-new .tn-section-h2 {
    font-family: var(--tn-font-sans);
    font-weight: 800;
    font-size: 28px;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: var(--tn-text-primary);
    margin: 24px 0 16px 0;
}
.theme-new .tn-section-h2 .tn-section-h2-light {
    font-weight: 400;
    color: var(--tn-text-muted);
}

/* =========================================================================
   --- 18.2 LAZY LOAD PLACEHOLDER (skeleton kartice) ---
   ========================================================================= */
.theme-new .tn-event-card-skeleton {
    display: flex;
    flex-direction: column;
}
.theme-new .tn-event-card-skeleton-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: linear-gradient(90deg, #1F2128 0%, #2A2C36 50%, #1F2128 100%);
    background-size: 200% 100%;
    border-radius: var(--tn-radius-md);
    margin-bottom: 12px;
    animation: tn-shimmer 1.5s infinite linear;
}
.theme-new .tn-event-card-skeleton-line {
    height: 12px;
    background: #1F2128;
    border-radius: 4px;
    margin-bottom: 6px;
}
.theme-new .tn-event-card-skeleton-line.short { width: 60%; }
@keyframes tn-shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* =========================================================================
   --- 18a3. LIGA HERO BANNER /sport/{sport}/{liga}/ — natjecanje info pre event listing ---
   ========================================================================= */
.theme-new .tn-liga-hero {
    background: var(--tn-bg-card);
    border-radius: var(--tn-radius-md);
    overflow: hidden;
    margin-bottom: 24px;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 0;
}
@media (max-width: 768px) { .theme-new .tn-liga-hero { grid-template-columns: 1fr; } }
.theme-new .tn-liga-hero-img {
    width: 100%;
    height: 100%;
    min-height: 180px;
    object-fit: cover;
    display: block;
}
.theme-new .tn-liga-hero-body {
    padding: 24px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.theme-new .tn-liga-hero-eyebrow {
    font-size: 12px;
    color: var(--tn-text-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.theme-new .tn-liga-hero-flag {
    width: 22px;
    height: auto;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.theme-new .tn-liga-hero-title {
    font-family: var(--tn-font-sans);
    font-weight: 800;
    font-size: 36px;
    color: var(--tn-text-primary);
    margin: 0 0 12px 0;
    line-height: 1.15;
    letter-spacing: -0.01em;
}
@media (max-width: 768px) { .theme-new .tn-liga-hero-title { font-size: 28px; } }
.theme-new .tn-liga-hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 12px;
}
.theme-new .tn-liga-hero-stat {
    display: flex;
    flex-direction: column;
}
.theme-new .tn-liga-hero-stat-label {
    font-size: 11px;
    color: var(--tn-text-muted);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.theme-new .tn-liga-hero-stat-value {
    font-family: var(--tn-font-mono);
    font-weight: 700;
    font-size: 18px;
    color: var(--tn-text-primary);
}
.theme-new .tn-liga-hero-memo {
    font-size: 14px;
    color: var(--tn-text-muted);
    line-height: 1.55;
    margin: 8px 0 0 0;
}

/* =========================================================================
   --- 18a4. STANDINGS TABLE (W/D/L/PTS) — sezonska tablica natjecanja ---
   ========================================================================= */
.theme-new .tn-standings {
    background: var(--tn-bg-card);
    border-radius: var(--tn-radius-md);
    overflow: hidden;
    margin: 24px 0;
}
.theme-new .tn-standings-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    border-bottom: 1px solid var(--tn-divider);
}
.theme-new .tn-standings-title {
    font-family: var(--tn-font-sans);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--tn-cta-primary);
    margin: 0;
}
.theme-new .tn-standings-table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--tn-font-mono);
    font-size: 13px;
}
.theme-new .tn-standings-table th {
    text-align: right;
    padding: 10px 8px;
    font-weight: 600;
    color: var(--tn-text-muted);
    font-size: 11px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--tn-divider);
}
.theme-new .tn-standings-table th:first-child,
.theme-new .tn-standings-table th:nth-child(2) { text-align: left; }
.theme-new .tn-standings-table td {
    padding: 12px 8px;
    text-align: right;
    color: var(--tn-text-primary);
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.theme-new .tn-standings-table td:first-child {
    text-align: center;
    color: var(--tn-text-muted);
    font-weight: 700;
    width: 40px;
}
.theme-new .tn-standings-table td:nth-child(2) {
    text-align: left;
    font-family: var(--tn-font-sans);
    font-weight: 600;
}
.theme-new .tn-standings-table td.tn-standings-pts {
    color: var(--tn-cta-primary);
    font-weight: 800;
}
.theme-new .tn-standings-table tr:hover td { background: var(--tn-bg-hover); }
@media (max-width: 640px) {
    .theme-new .tn-standings-table { font-size: 12px; }
    .theme-new .tn-standings-table th,
    .theme-new .tn-standings-table td { padding: 8px 4px; }
    /* Sakrij F/A na mobile — prikazujemo samo P/W/D/L/PTS */
    .theme-new .tn-standings-table th.tn-standings-mobile-hide,
    .theme-new .tn-standings-table td.tn-standings-mobile-hide { display: none; }
}

/* =========================================================================
   --- 18b. SPORT EVENT LIST-ROW (V6 — goal.com / billboard.com chart row stil) ---
   /sport/{sport}/{liga}/ event listing — datum lijevo, naslov centar, cijena desno
   ========================================================================= */
.theme-new .tn-event-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.theme-new .tn-event-row {
    display: grid;
    grid-template-columns: 84px 1fr auto;
    gap: 16px;
    align-items: center;
    padding: 16px 20px;
    background: var(--tn-bg-card);
    border-radius: var(--tn-radius-md);
    text-decoration: none;
    color: inherit;
    transition: background 0.15s ease, transform 0.15s ease;
    border: 1px solid transparent;
}
.theme-new .tn-event-row:hover {
    background: var(--tn-bg-hover);
    transform: translateY(-1px);
    border-color: rgba(255,107,53,0.2);
}
/* Datum lijevo: 3 retka DAN / BROJ / MJESEC (Manrope Black, sport scoreboard feel) */
.theme-new .tn-event-row-date {
    text-align: center;
    font-family: var(--tn-font-mono);
    line-height: 1.05;
    border-right: 1px solid var(--tn-divider);
    padding-right: 16px;
}
.theme-new .tn-event-row-day {
    font-size: 11px;
    text-transform: uppercase;
    color: var(--tn-text-muted);
    letter-spacing: 0.08em;
    margin-bottom: 2px;
}
.theme-new .tn-event-row-num {
    font-size: 28px;
    font-weight: 800;
    color: var(--tn-text-primary);
}
.theme-new .tn-event-row-month {
    font-size: 11px;
    text-transform: uppercase;
    color: var(--tn-text-muted);
    letter-spacing: 0.08em;
    margin-top: 2px;
}
/* Centar: naslov ekipa + venue + meta */
.theme-new .tn-event-row-body {
    min-width: 0; /* za truncate */
}
.theme-new .tn-event-row-title {
    font-family: var(--tn-font-sans);
    font-weight: 700;
    font-size: 18px;
    color: var(--tn-text-primary);
    margin: 0 0 4px 0;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.theme-new .tn-event-row-meta {
    font-size: 13px;
    color: var(--tn-text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.theme-new .tn-event-row-flag {
    width: 18px;
    height: auto;
    border-radius: 2px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.3);
    vertical-align: middle;
}
/* Hot badge (žuti A spec) */
.theme-new .tn-event-row-hot {
    display: inline-block;
    background: var(--tn-hot, #FFD60A);
    color: #1A1B23;
    font-size: 10px;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 3px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-right: 8px;
    vertical-align: middle;
}
/* Cijena desno: JetBrains Mono Bold (sport scoreboard feel) */
.theme-new .tn-event-row-price {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}
.theme-new .tn-event-row-price-amount {
    font-family: var(--tn-font-mono);
    font-weight: 700;
    font-size: 24px;
    color: var(--tn-cta-primary);
    line-height: 1;
}
.theme-new .tn-event-row-price-label {
    font-size: 10px;
    color: var(--tn-text-muted);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
/* Mobile responsive */
@media (max-width: 640px) {
    .theme-new .tn-event-row {
        grid-template-columns: 64px 1fr;
        gap: 12px;
        padding: 12px 14px;
    }
    .theme-new .tn-event-row-date {
        padding-right: 12px;
    }
    .theme-new .tn-event-row-num { font-size: 22px; }
    .theme-new .tn-event-row-title { font-size: 15px; white-space: normal; }
    .theme-new .tn-event-row-price {
        grid-column: 1 / -1;
        flex-direction: row;
        align-items: baseline;
        justify-content: space-between;
        padding-top: 8px;
        border-top: 1px dashed var(--tn-divider);
    }
    .theme-new .tn-event-row-price-amount { font-size: 18px; }
}

/* =========================================================================
   --- 18c. MAGAZIN NEWSROOM (1 feature veliki + 4 mali — Prijedlog B billboard.com stil) ---
   ========================================================================= */
.theme-new .tn-newsroom {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 24px;
}
@media (max-width: 991px) { .theme-new .tn-newsroom { grid-template-columns: 1fr; } }

.theme-new .tn-newsroom-feature {
    background: var(--tn-bg-card);
    border-radius: var(--tn-radius-md);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: background 0.15s ease;
}
.theme-new .tn-newsroom-feature:hover { background: var(--tn-bg-hover); }
.theme-new .tn-newsroom-feature-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
}
.theme-new .tn-newsroom-feature-body { padding: 24px 28px 28px; }
.theme-new .tn-newsroom-rubrika {
    font-size: 11px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.theme-new .tn-newsroom-feature-title {
    font-family: var(--tn-font-sans);
    font-weight: 800;
    font-size: 32px;
    line-height: 1.18;
    letter-spacing: -0.01em;
    color: var(--tn-text-primary);
    margin: 0 0 12px 0;
}
@media (max-width: 768px) { .theme-new .tn-newsroom-feature-title { font-size: 24px; } }
.theme-new .tn-newsroom-feature-lead {
    font-family: var(--tn-font-sans);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: var(--tn-text-muted);
    margin: 0 0 12px 0;
}
.theme-new .tn-newsroom-feature-meta {
    font-size: 12px;
    color: var(--tn-text-muted);
    letter-spacing: 0.04em;
}

.theme-new .tn-newsroom-side { display: grid; gap: 16px; align-content: start; }
.theme-new .tn-newsroom-mini {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 14px;
    background: var(--tn-bg-card);
    border-radius: var(--tn-radius-md);
    padding: 12px;
    text-decoration: none;
    color: inherit;
    transition: background 0.15s ease;
}
.theme-new .tn-newsroom-mini:hover { background: var(--tn-bg-hover); }
.theme-new .tn-newsroom-mini-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 6px;
    display: block;
}
.theme-new .tn-newsroom-mini-body { display: flex; flex-direction: column; justify-content: center; }
.theme-new .tn-newsroom-mini-rubrika {
    font-size: 10px;
    font-weight: 700;
    color: var(--tn-cta-primary);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 4px;
}
.theme-new .tn-newsroom-mini-title {
    font-family: var(--tn-font-sans);
    font-weight: 700;
    font-size: 15px;
    line-height: 1.3;
    color: var(--tn-text-primary);
    margin: 0 0 4px 0;
}
.theme-new .tn-newsroom-mini-meta {
    font-size: 11px;
    color: var(--tn-text-muted);
}

/* =========================================================================
   --- 18d. MAGAZIN MORE STORIES (Theathletic horizontal list-row) ---
   Slika 180×120 lijevo + naslov + lead + autor/datum desno
   ========================================================================= */
.theme-new .tn-magazin-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 32px;
}
.theme-new .tn-magazin-list-header {
    font-family: var(--tn-font-sans);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--tn-cta-primary);
    margin: 0 0 16px 0;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--tn-divider);
}
.theme-new .tn-magazin-row {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 20px;
    padding: 18px 0;
    text-decoration: none;
    color: inherit;
    border-bottom: 1px solid var(--tn-divider);
    transition: background 0.15s ease;
}
.theme-new .tn-magazin-row:hover { background: rgba(255,255,255,0.02); }
.theme-new .tn-magazin-row-img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    border-radius: var(--tn-radius-sm, 6px);
    display: block;
}
.theme-new .tn-magazin-row-body {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.theme-new .tn-magazin-row-rubrika {
    font-size: 10px;
    font-weight: 700;
    color: var(--tn-cta-primary);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.theme-new .tn-magazin-row-title {
    font-family: var(--tn-font-sans);
    font-weight: 700;
    font-size: 18px;
    line-height: 1.3;
    color: var(--tn-text-primary);
    margin: 0;
}
.theme-new .tn-magazin-row-lead {
    font-family: var(--tn-font-sans);
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    color: var(--tn-text-muted);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
@media (max-width: 640px) {
    .theme-new .tn-magazin-row { grid-template-columns: 100px 1fr; gap: 14px; }
    .theme-new .tn-magazin-row-title { font-size: 15px; }
    .theme-new .tn-magazin-row-lead { font-size: 13px; -webkit-line-clamp: 2; }
}

/* =========================================================================
   --- 19. MAGAZIN — vintage newsroom layout (1 feature + 4 sporedna) ---
   ========================================================================= */
.theme-new .tn-magazin-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
}
@media (max-width: 991px) { .theme-new .tn-magazin-grid { grid-template-columns: 1fr; } }

.theme-new .tn-magazin-feature {
    background: var(--tn-bg-card);
    border-radius: var(--tn-radius-lg);
    overflow: hidden;
    box-shadow: var(--tn-shadow-card);
    display: flex;
    flex-direction: column;
}
.theme-new .tn-magazin-feature-img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    background: var(--tn-bg-card-hover);
    max-height: 420px;
}
.theme-new .tn-magazin-feature-body { padding: 20px 24px 24px; }
.theme-new .tn-magazin-feature-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}
.theme-new .tn-magazin-feature h3 {
    font-size: 30px !important;
    line-height: 1.2 !important;
    margin: 0 0 12px !important;
    letter-spacing: -0.02em !important;
    color: var(--tn-text-base) !important;
}
@media (max-width: 768px) { .theme-new .tn-magazin-feature h3 { font-size: 24px !important; } }
.theme-new .tn-magazin-feature p {
    font-size: 16px !important;
    color: var(--tn-text-muted) !important;
    line-height: 1.6 !important;
    margin: 0 !important;
}

.theme-new .tn-magazin-side {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.theme-new .tn-magazin-side-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 12px;
    background: var(--tn-bg-card);
    border-radius: var(--tn-radius-md);
    overflow: hidden;
    text-decoration: none !important;
    color: var(--tn-text-base) !important;
    transition: background 0.15s ease;
}
.theme-new .tn-magazin-side-item:hover { background: var(--tn-bg-card-hover); }
.theme-new .tn-magazin-side-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    background: var(--tn-bg-card-hover);
}
.theme-new .tn-magazin-side-body {
    padding: 8px 12px 8px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}
.theme-new .tn-magazin-side-genre {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 2px;
}
.theme-new .tn-magazin-side-title {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--tn-text-base);
    margin: 0;
}

/* =========================================================================
   --- 20. PUTOVANJA / SMJESTAJ widget (Stay22 placeholder) ---
   ========================================================================= */
.theme-new .tn-travel {
    background: linear-gradient(135deg, #252631 0%, #1F2A3D 100%);
    border-radius: var(--tn-radius-lg);
    padding: 36px;
    box-shadow: var(--tn-shadow-card);
    border: 1px solid var(--tn-divider);
}
@media (max-width: 768px) { .theme-new .tn-travel { padding: 24px; } }

.theme-new .tn-travel-title {
    font-size: 24px !important;
    font-weight: 800 !important;
    margin: 0 0 8px !important;
    letter-spacing: -0.01em !important;
    color: var(--tn-text-base) !important;
}
.theme-new .tn-travel-lead {
    font-size: 15px !important;
    color: var(--tn-text-muted) !important;
    margin: 0 0 20px !important;
    line-height: 1.5 !important;
}
.theme-new .tn-travel-form {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr auto;
    gap: 10px;
    align-items: stretch;
}
@media (max-width: 768px) {
    .theme-new .tn-travel-form { grid-template-columns: 1fr; }
}
.theme-new .tn-travel-input {
    background: var(--tn-bg-input);
    color: var(--tn-text-base);
    border: 1px solid var(--tn-border);
    border-radius: var(--tn-radius-md);
    padding: 12px 16px;
    font-family: var(--tn-font-sans);
    font-size: 15px;
    min-height: 48px;
    transition: border-color 0.15s ease;
}
.theme-new .tn-travel-input::placeholder { color: var(--tn-text-disabled); }
.theme-new .tn-travel-input:focus {
    outline: none;
    border-color: var(--tn-cta-primary);
}
.theme-new .tn-travel-powered {
    margin-top: 16px;
    font-size: 12px;
    color: var(--tn-text-disabled);
    letter-spacing: 0.04em;
    text-align: right;
}

/* =========================================================================
   --- 21. NEWSLETTER signup (u footer) ---
   ========================================================================= */
.theme-new .tn-newsletter {
    background: var(--tn-bg-card);
    border-radius: var(--tn-radius-lg);
    padding: 32px;
    margin-bottom: 32px;
    text-align: center;
}
@media (max-width: 768px) { .theme-new .tn-newsletter { padding: 24px; } }

.theme-new .tn-newsletter-title {
    font-size: 22px !important;
    font-weight: 800 !important;
    margin: 0 0 6px !important;
    color: var(--tn-text-base) !important;
}
.theme-new .tn-newsletter-lead {
    font-size: 14px !important;
    color: var(--tn-text-muted) !important;
    margin: 0 0 18px !important;
}
.theme-new .tn-newsletter-form {
    display: flex;
    gap: 8px;
    max-width: 600px;
    margin: 0 auto;
}
.theme-new .tn-newsletter-input {
    min-width: 260px;
}
@media (max-width: 576px) {
    .theme-new .tn-newsletter-form { flex-direction: column; }
}
.theme-new .tn-newsletter-msg {
    margin-top: 12px;
    text-align: center;
    font-size: 14px;
    min-height: 22px;
}
.theme-new .tn-newsletter-msg-ok {
    color: #3DD68C;
    font-weight: 600;
}
.theme-new .tn-newsletter-msg-err {
    color: #FF6B6B;
    font-weight: 600;
}
.theme-new .tn-newsletter-input {
    flex: 1;
    background: var(--tn-bg-input);
    color: var(--tn-text-base);
    border: 1px solid var(--tn-border);
    border-radius: var(--tn-radius-md);
    padding: 12px 16px;
    font-family: var(--tn-font-sans);
    font-size: 15px;
    min-height: 44px;
}
.theme-new .tn-newsletter-input:focus {
    outline: none;
    border-color: var(--tn-cta-primary);
}
.theme-new .tn-newsletter-input::placeholder { color: var(--tn-text-disabled); }
.theme-new .tn-newsletter-disclaimer {
    font-size: 11px;
    color: var(--tn-text-disabled);
    margin-top: 12px;
    letter-spacing: 0.02em;
}

/* =========================================================================
   --- 22. EVENT DETAIL stranica (eventDetail.aspx) ---
   ========================================================================= */

/* Breadcrumb */
.theme-new .tn-breadcrumb a:hover { color: var(--tn-cta-primary); }

/* DICE Event Detail Hero — 2-col layout (1:1 slika sticky lijevo + meta desno) */
.theme-new .tn-event-hero {
    display: grid;
    grid-template-columns: minmax(0, 380px) minmax(0, 1fr);
    gap: 48px;
    background: transparent;
    align-items: start;
    margin-top: 24px;
}
@media (max-width: 991px) {
    .theme-new .tn-event-hero { grid-template-columns: 1fr; gap: 24px; }
}
.theme-new .tn-event-hero-img {
    position: sticky;
    top: 24px;
    aspect-ratio: 1 / 1;
    border-radius: var(--tn-radius-md);
    overflow: hidden;
    background: var(--tn-bg-card);
}
.theme-new .tn-event-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
@media (max-width: 991px) {
    .theme-new .tn-event-hero-img { position: static; max-width: 380px; margin: 0 auto; }
}
.theme-new .tn-event-hero-body {
    padding: 0;
    display: flex;
    flex-direction: column;
}
@media (max-width: 768px) { .theme-new .tn-event-hero-body { padding: 0; } }

.theme-new .tn-event-hero-hot {
    background: var(--tn-hot-badge);
    color: #1a1a1a;
    font-size: 11px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 4px;
    letter-spacing: 0.06em;
}
.theme-new .tn-event-hero-title {
    font-family: var(--tn-font-sans);
    font-weight: 800;
    font-size: 56px;
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin: 0 0 20px;
    color: var(--tn-text-base);
}
@media (max-width: 1199px) { .theme-new .tn-event-hero-title { font-size: 44px; } }
@media (max-width: 768px) { .theme-new .tn-event-hero-title { font-size: 32px; } }

/* DICE meta info — venue/datum line-by-line (NE label-value cards) */
.theme-new .tn-event-hero-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 24px;
}
.theme-new .tn-event-info-item {
    display: flex;
    align-items: center;
    gap: 6px;
}
.theme-new .tn-event-info-label {
    display: none;  /* DICE: bez "Datum:" / "Lokacija:" prefiksa, ikona pokazuje tip */
}
.theme-new .tn-event-info-value {
    font-family: var(--tn-font-sans);
    font-weight: 500;
    font-size: 15px;
    color: var(--tn-text-primary);
}
/* DICE žuti datum (kao event-card pattern) */
.theme-new .tn-event-info-item.tn-event-info-datum .tn-event-info-value {
    color: var(--tn-hot, #FFD60A);
    font-weight: 600;
    font-size: 17px;
}

/* Tag chips iznad meta (Gigs / Sport / Concert) */
.theme-new .tn-event-hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}
.theme-new .tn-event-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--tn-divider);
    border-radius: 999px;
    font-size: 12px;
    color: var(--tn-text-muted);
    text-decoration: none;
}
.theme-new .tn-event-hero-tag svg { width: 12px; height: 12px; }

/* DICE Cijena box + BUY NOW žuti CTA */
.theme-new .tn-event-hero-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: rgba(0,0,0,0.35);
    border: 1px solid var(--tn-divider);
    border-radius: var(--tn-radius-md);
    padding: 16px 20px;
    margin-top: 8px;
}
.theme-new .tn-event-hero-cta-price-block {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.theme-new .tn-event-hero-cta-price {
    font-family: var(--tn-font-sans);
    font-weight: 700;
    font-size: 24px;
    color: var(--tn-text-primary);
}
.theme-new .tn-event-hero-cta-disclaimer {
    font-size: 12px;
    color: var(--tn-text-muted);
}
/* BUY NOW žuti gumb (DICE pattern, NE narandžasti) */
.theme-new .tn-event-hero-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--tn-hot, #FFD60A);
    color: #1A1B23 !important;
    font-family: var(--tn-font-sans);
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 12px 28px;
    border-radius: 999px;
    text-decoration: none;
    transition: background 0.15s ease, transform 0.15s ease;
    border: 0;
    cursor: pointer;
    white-space: nowrap;
}
.theme-new .tn-event-hero-cta-btn:hover { background: #FFE03A; transform: translateY(-1px); }
@media (max-width: 768px) {
    .theme-new .tn-event-hero-cta { flex-direction: column; align-items: stretch; }
    .theme-new .tn-event-hero-cta-btn { width: 100%; }
}

/* Btn secondary (used in pricing matrix) */
.theme-new .tn-btn-secondary {
    background: transparent;
    color: var(--tn-cta-primary);
    border: 1px solid var(--tn-cta-primary);
    padding: 8px 16px;
    border-radius: var(--tn-radius-md);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.15s ease, color 0.15s ease;
    display: inline-block;
}
.theme-new .tn-btn-secondary:hover {
    background: var(--tn-cta-primary);
    color: #fff;
}

/* Pricing matrix */
.theme-new .tn-pricing-matrix {
    background: var(--tn-bg-card);
    border-radius: var(--tn-radius-lg);
    overflow: hidden;
    border: 1px solid var(--tn-border);
}
.theme-new .tn-pricing-row {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: 16px;
    padding: 16px 24px;
    border-bottom: 1px solid var(--tn-border);
}
.theme-new .tn-pricing-row:last-child { border-bottom: none; }
@media (max-width: 768px) {
    .theme-new .tn-pricing-row {
        grid-template-columns: 1fr 1fr;
        padding: 14px 16px;
    }
    .theme-new .tn-pricing-action { grid-column: span 2; }
}

.theme-new .tn-pricing-row-cheapest {
    background: linear-gradient(90deg, rgba(255,107,53,0.08), transparent);
    border-left: 3px solid var(--tn-cta-primary);
}

.theme-new .tn-pricing-provider {
    display: flex;
    align-items: center;
    gap: 10px;
}
.theme-new .tn-pricing-provider-name {
    font-weight: 600;
    font-size: 15px;
    color: var(--tn-text-base);
}
.theme-new .tn-pricing-badge {
    background: var(--tn-cta-primary);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.theme-new .tn-pricing-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--tn-text-base);
    font-family: var(--tn-font-mono);
}
.theme-new .tn-pricing-action {
    text-align: right;
}
@media (max-width: 768px) { .theme-new .tn-pricing-action { text-align: left; } }

/* =========================================================================
   --- 23. FILTER CHIPS (sub-listing navigacija na top kategoriji) ---
   ========================================================================= */
.theme-new .tn-filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}
.theme-new .tn-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: var(--tn-bg-card);
    border: 1px solid var(--tn-border);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: var(--tn-text-base);
    text-decoration: none;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
    white-space: nowrap;
}
.theme-new .tn-chip:hover {
    background: var(--tn-bg-card-hover);
    border-color: var(--tn-text-muted);
    color: var(--tn-text-base);
}
.theme-new .tn-chip-active,
.theme-new .tn-chip-active:hover {
    background: var(--tn-cta-primary);
    border-color: var(--tn-cta-primary);
    color: #fff;
}
.theme-new .tn-chip-label { line-height: 1; }
.theme-new .tn-chip-count {
    font-size: 11px;
    font-weight: 700;
    opacity: 0.6;
    background: rgba(255,255,255,0.08);
    padding: 2px 6px;
    border-radius: 8px;
    line-height: 1;
}
.theme-new .tn-chip-active .tn-chip-count {
    background: rgba(255,255,255,0.25);
    opacity: 0.95;
}

/* =========================================================================
   --- 24. PAGINATION (kategorijaListing) ---
   ========================================================================= */
.theme-new .tn-pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
    justify-content: center;
    margin-top: 32px;
    padding: 16px 0;
}
.theme-new .tn-page {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    background: var(--tn-bg-card);
    border: 1px solid var(--tn-border);
    border-radius: var(--tn-radius-md);
    color: var(--tn-text-base);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.15s ease, border-color 0.15s ease;
}
.theme-new .tn-page:hover {
    background: var(--tn-bg-card-hover);
    border-color: var(--tn-text-muted);
    color: var(--tn-text-base);
}
.theme-new .tn-page-active,
.theme-new .tn-page-active:hover {
    background: var(--tn-cta-primary);
    border-color: var(--tn-cta-primary);
    color: #fff;
    cursor: default;
}
.theme-new .tn-page-nav {
    padding: 0 16px;
    font-size: 13px;
}
.theme-new .tn-page-disabled {
    opacity: 0.4;
    cursor: not-allowed;
    color: var(--tn-text-muted);
}
.theme-new .tn-page-ellipsis {
    color: var(--tn-text-muted);
    padding: 0 4px;
    font-weight: 600;
}
@media (max-width: 576px) {
    .theme-new .tn-page-nav { padding: 0 10px; font-size: 12px; }
    .theme-new .tn-page { min-width: 36px; height: 36px; font-size: 13px; }
}

/* =========================================================================
   --- 25. CARD HOT badge (overlay na slici listing kartice) ---
   ========================================================================= */
.theme-new .tn-music-card-img-wrap {
    position: relative;
    overflow: hidden;
}
.theme-new .tn-card-hot-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--tn-hot-badge);
    color: #1a1a1a;
    font-size: 10px;
    font-weight: 800;
    padding: 4px 9px;
    border-radius: 4px;
    letter-spacing: 0.08em;
    z-index: 2;
    box-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

/* =====================================================================
   Faza 7 — Article detail (29-04-2026)
   ===================================================================== */
.theme-new .tn-article {
    max-width: 760px;
    margin: 0 auto;
}

.theme-new .tn-article-header {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--tn-divider);
}

.theme-new .tn-article-meta-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.theme-new .tn-article-cat {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
    color: var(--tn-cta-primary);
}

.theme-new .tn-article-hot {
    background: var(--tn-hot-badge);
    color: #1a1a1a;
    font-size: 10px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 3px;
    letter-spacing: 0.08em;
}

.theme-new .tn-article-title {
    font-family: 'Lora', Georgia, serif;
    font-size: 40px;
    line-height: 1.18;
    font-weight: 600;
    color: var(--tn-text-base);
    margin: 0 0 18px 0;
    letter-spacing: -0.01em;
}

.theme-new .tn-article-lead {
    font-family: 'Lora', Georgia, serif;
    font-size: 19px;
    line-height: 1.55;
    color: var(--tn-text-muted);
    font-style: italic;
    margin: 0 0 22px 0;
}

.theme-new .tn-article-byline {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 13px;
    color: var(--tn-text-muted);
}

.theme-new .tn-article-author strong {
    color: var(--tn-text-base);
    font-weight: 600;
}

.theme-new .tn-article-byline-sep {
    color: var(--tn-text-muted);
    opacity: 0.6;
}

.theme-new .tn-article-figure {
    position: relative;
    margin: 0 0 32px 0;
    border-radius: 8px;
    overflow: hidden;
    background: var(--tn-bg-card);
}

/* Copyright/credit overlay na velikim fotografijama — uvijek vidljiv. */
.theme-new .tn-article-figure-credit {
    position: absolute;
    right: 8px;
    bottom: 8px;
    background: rgba(0, 0, 0, 0.65);
    color: #ffffff;
    font-size: 11px;
    font-weight: 500;
    line-height: 1.3;
    padding: 4px 10px;
    border-radius: 3px;
    letter-spacing: 0.02em;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    max-width: calc(100% - 24px);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.theme-new .tn-article-figure-credit a {
    color: #ffffff;
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.4);
    text-underline-offset: 2px;
}

.theme-new .tn-article-figure-credit a:hover {
    text-decoration-color: #ffffff;
    color: #ffffff;
}

.theme-new .tn-article-figure img {
    width: 100%;
    height: auto;
    display: block;
}

.theme-new .tn-article-figcaption {
    padding: 10px 14px;
    font-size: 12px;
    color: var(--tn-text-muted);
    background: var(--tn-bg-card);
    border-top: 1px solid var(--tn-divider);
    font-style: italic;
}

.theme-new .tn-article-body {
    font-family: var(--tn-font-sans);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.72;
    color: var(--tn-text-base);
}

.theme-new .tn-article-body p {
    margin: 0 0 22px 0;
}

.theme-new .tn-article-body h2 {
    font-family: var(--tn-font-sans);
    font-size: 30px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin: 48px 0 16px 0;
    color: var(--tn-text-base);
}

.theme-new .tn-article-body h3 {
    font-family: var(--tn-font-sans);
    font-size: 22px;
    line-height: 1.3;
    font-weight: 700;
    margin: 32px 0 14px 0;
    color: var(--tn-text-base);
}

/* V6 SPEC: blockquote citati u Lora Italic 500 + border-left #FF6B35 (magazin gravitas) */
.theme-new .tn-article-body blockquote,
.theme-new .tn-article-body q,
.theme-new .tn-article-quote {
    font-family: 'Lora', Georgia, 'Times New Roman', serif;
    font-style: italic;
    font-weight: 500;
    font-size: 24px;
    line-height: 1.5;
    color: var(--tn-text-base);
    border-left: 4px solid var(--tn-cta-primary);
    padding: 8px 0 8px 24px;
    margin: 32px 0;
    background: transparent;
    quotes: none;
}
.theme-new .tn-article-body blockquote p { margin: 0 0 12px 0; }
.theme-new .tn-article-body blockquote p:last-child { margin: 0; }
.theme-new .tn-article-body blockquote cite {
    display: block;
    margin-top: 12px;
    font-style: normal;
    font-family: var(--tn-font-sans);
    font-weight: 600;
    font-size: 14px;
    color: var(--tn-text-muted);
    letter-spacing: 0.04em;
}
@media (max-width: 768px) {
    .theme-new .tn-article-body blockquote,
    .theme-new .tn-article-body q,
    .theme-new .tn-article-quote { font-size: 19px; padding-left: 18px; }
}

.theme-new .tn-article-body a {
    color: var(--tn-cta-primary);
    border-bottom: 1px solid rgba(255,255,255,0.15);
    transition: border-color 0.15s ease;
}

.theme-new .tn-article-body a:hover {
    border-bottom-color: var(--tn-cta-primary);
}

.theme-new .tn-article-body img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    margin: 20px 0;
}

.theme-new .tn-article-body ul,
.theme-new .tn-article-body ol {
    margin: 0 0 22px 0;
    padding-left: 28px;
}

.theme-new .tn-article-body li {
    margin-bottom: 8px;
}

.theme-new .tn-article-body blockquote {
    margin: 28px 0;
    padding: 14px 20px;
    border-left: 3px solid var(--tn-cta-primary);
    background: var(--tn-bg-card);
    font-style: italic;
    color: var(--tn-text-muted);
}

.theme-new .tn-article-body code {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9em;
    background: var(--tn-bg-card);
    padding: 2px 6px;
    border-radius: 3px;
}

.theme-new .tn-article-tags {
    margin-top: 36px;
    padding-top: 22px;
    border-top: 1px solid var(--tn-divider);
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.theme-new .tn-article-tags-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--tn-text-muted);
    font-weight: 600;
    margin-right: 4px;
}

.theme-new .tn-article-tag {
    background: var(--tn-bg-card);
    color: var(--tn-text-muted);
    font-size: 12px;
    padding: 5px 11px;
    border-radius: 12px;
    border: 1px solid var(--tn-divider);
}

.theme-new .tn-article-source {
    margin-top: 24px;
    padding: 14px 18px;
    background: var(--tn-bg-card);
    border-left: 3px solid var(--tn-text-muted);
    border-radius: 4px;
    font-size: 13px;
    color: var(--tn-text-muted);
}

.theme-new .tn-article-source-label {
    font-weight: 700;
    color: var(--tn-text-base);
    margin-right: 6px;
}

/* Lang switcher: disabled (nema prijevoda) */
.theme-new .tn-lang-switcher .tn-lang-disabled {
    opacity: 0.35;
    cursor: not-allowed;
    text-decoration: line-through;
}

/* Mobile responsive za article */
@media (max-width: 720px) {
    .theme-new .tn-article-title {
        font-size: 30px;
        line-height: 1.22;
    }
    .theme-new .tn-article-lead {
        font-size: 17px;
    }
    .theme-new .tn-article-body {
        font-size: 17px;
        line-height: 1.65;
    }
    .theme-new .tn-article-body h2 {
        font-size: 24px;
    }
    .theme-new .tn-article-body h3 {
        font-size: 19px;
    }
}

/* =========================================================================
   --- 23. ARTICLE DETAIL (articleDetailNew.aspx) — story clanci ---
   Naslov / lead / breadcrumb / fontovi koriste tn-static-* (oNama, kontakt,
   kolacici …) za KONZISTENTAN dizajn. Tu su samo article-specifične dodatke:
   2-stupac grid, hero figure, body paragraph spacing, tagovi, sticky sidebar.
   ========================================================================= */

.theme-new .article-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 48px;
    align-items: start;
    margin-top: 32px;
}

/* Meta-bar (datum, autor, reading time) ispod naslova */
.theme-new .article-detail-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
    margin-top: 18px;
    padding: 12px 0;
    border-top: 1px solid var(--tn-divider);
    border-bottom: 1px solid var(--tn-divider);
    font-size: 13px;
    color: var(--tn-text-muted);
}
.theme-new .article-detail-meta a {
    color: var(--tn-text-base);
    text-decoration: none;
    font-weight: 500;
}
.theme-new .article-detail-meta a:hover { color: var(--tn-cta-primary); }
.theme-new .article-detail-meta-sep {
    margin: 0 6px;
    opacity: 0.5;
}

/* Hero slika ispod headera */
.theme-new .article-detail-hero {
    margin: 28px 0 0 0;
    border-radius: var(--tn-radius-md, 6px);
    overflow: hidden;
    background: var(--tn-bg-card);
}
.theme-new .article-detail-hero img {
    display: block;
    width: 100%;
    height: auto;
}
.theme-new .article-detail-hero-credit {
    padding: 8px 12px;
    font-size: 11px;
    color: var(--tn-text-muted);
    font-style: italic;
    background: var(--tn-bg-card);
    border-top: 1px solid var(--tn-divider);
}

/* Body — naslijedi tn-static font (Manrope sans), samo paragraf razmak */
.theme-new .article-detail-body {
    margin-top: 28px;
    font-size: 17px;
    line-height: 1.72;
    color: var(--tn-text-base);
}
.theme-new .article-detail-body p { margin: 0 0 22px 0; }
.theme-new .article-detail-body h2 {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.22;
    margin: 40px 0 14px 0;
    color: var(--tn-text-base);
}
.theme-new .article-detail-body h3 {
    font-size: 21px;
    font-weight: 700;
    margin: 30px 0 12px 0;
    color: var(--tn-text-base);
}
.theme-new .article-detail-body a {
    color: var(--tn-cta-primary);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.theme-new .article-detail-body blockquote {
    margin: 28px 0;
    padding: 4px 0 4px 22px;
    border-left: 3px solid var(--tn-cta-primary);
    font-style: italic;
    font-size: 19px;
    line-height: 1.5;
    color: var(--tn-text-base);
}
.theme-new .article-detail-body ul,
.theme-new .article-detail-body ol {
    margin: 0 0 22px 0;
    padding-left: 26px;
}
.theme-new .article-detail-body li { margin-bottom: 8px; }
.theme-new .article-detail-body img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin: 22px 0;
}

/* Tagovi (chips ispod body-ja) */
.theme-new .article-detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-top: 32px;
    padding-top: 22px;
    border-top: 1px solid var(--tn-divider);
}
.theme-new .article-detail-tags-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
    color: var(--tn-text-muted);
    margin-right: 4px;
}
.theme-new .article-detail-tag {
    font-size: 12px;
    padding: 5px 12px;
    background: var(--tn-bg-card);
    border: 1px solid var(--tn-divider);
    border-radius: 14px;
    color: var(--tn-text-muted);
}

/* Footer "Piše X →" link */
.theme-new .article-detail-author-link {
    margin-top: 28px;
    padding: 16px 0;
    border-top: 1px solid var(--tn-divider);
    font-size: 14px;
    color: var(--tn-text-muted);
}
.theme-new .article-detail-author-link a {
    color: var(--tn-text-base);
    text-decoration: none;
    font-weight: 600;
}
.theme-new .article-detail-author-link a:hover { color: var(--tn-cta-primary); }

/* === Generička sticky sidebar klasa — koristi se na SVIM portal stranicama
   (article detail, listing rubrike, statickim s desnim stupcem). Buduce stranice
   stave class="tn-sticky-sidebar" i automatski dobiju isti pattern + razdjelnike. */
.theme-new .tn-sticky-sidebar,
.theme-new .article-detail-side {
    position: sticky;
    top: 90px;
    align-self: start;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
/* Sidebar paneli — visualno razdvojeni gornjim border-om + padding-top.
   Prvi panel u sidebaru nema border (ne treba mu). Pravilo vrijedi
   GENERIČKI za .tn-sticky-sidebar I za article-detail-side (legacy alias). */
.theme-new .tn-sticky-sidebar > *,
.theme-new .article-detail-side > .article-detail-related,
.theme-new .article-detail-side > .article-detail-most-read,
.theme-new .article-detail-side > .article-detail-cta {
    padding-top: 1.25rem;
    border-top: 1px solid var(--tn-divider);
}
.theme-new .tn-sticky-sidebar > :first-child,
.theme-new .article-detail-side > :first-child {
    padding-top: 0;
    border-top: 0;
}

/* Anchor target za #secPrikazSmjestaja u članku — nevidljiv, daje samo
   točku u DOM-u za #hash skroll. scroll-margin-top kompenzira sticky header
   da skrolanje ne završi ispod njega. */
.theme-new .article-anchor-target {
    display: block;
    height: 0;
    overflow: hidden;
    scroll-margin-top: 100px;
}
.theme-new .article-detail-cta {
    background: var(--tn-bg-card);
    border: 1px solid var(--tn-divider);
    border-radius: var(--tn-radius-md, 6px);
    padding: 18px;
    margin-bottom: 18px;
}
.theme-new .article-detail-cta-eyebrow {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--tn-cta-primary);
    margin-bottom: 8px;
}
.theme-new .article-detail-cta-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--tn-text-base);
    margin: 0 0 12px 0;
    line-height: 1.3;
}
.theme-new .article-detail-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

/* Stay22 iframe */
.theme-new .article-detail-stay22-frame {
    position: relative;
    width: 100%;
    height: 220px;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 12px;
    background: var(--tn-bg-page);
}
.theme-new .article-detail-stay22-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* ===== Stay22 mid-content velika mapa (unutar tijela članka) ===== */
.theme-new .article-stay22-mid {
    margin: 2.25rem 0;
    padding: 1.25rem;
    background: var(--tn-bg-card);
    border: 1px solid var(--tn-divider);
    border-radius: var(--tn-radius-md, 6px);
}
.theme-new .article-stay22-mid-eyebrow {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--tn-text-muted);
    margin-bottom: 6px;
}
.theme-new .article-stay22-mid-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--tn-text-base);
    margin: 0 0 14px 0;
}
.theme-new .article-stay22-mid-frame {
    position: relative;
    width: 100%;
    height: 336px; /* -30% od 480px */
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 14px;
    background: var(--tn-bg-page);
}
.theme-new .article-stay22-mid-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}
.theme-new .article-stay22-mid-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1.25rem;
}
/* Override .article-detail-body a (color: orange + underline) — gumb se nakon JS premjestanja
   nalazi UNUTAR .article-detail-body, pa parent selector bi inace pobijedio i tekst bi bio
   narancast na narancastoj pozadini (nevidljiv dok ne hover). Veca specificnost (3 klase). */
.theme-new .article-detail-body .article-stay22-mid-cta,
.theme-new .article-stay22-mid .tn-btn-primary,
.theme-new .article-stay22-mid .tn-btn-primary:hover {
    color: #fff !important;
    text-decoration: none !important;
}
@media (max-width: 768px) {
    .theme-new .article-stay22-mid-frame { height: 252px; } /* -30% od 360px */
}

/* ===== Stay22 bottom: in-column ispod autor footer-a (NE full-width) ===== */
.theme-new .article-stay22-bottom-incol {
    margin: 1.75rem 0 0 0;
    padding-top: 1.5rem;
    border-top: 1px solid var(--tn-divider);
}
.theme-new .article-stay22-bottom-incol .article-stay22-bottom-eyebrow {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--tn-text-muted);
    margin-bottom: 12px;
}
.theme-new .article-stay22-bottom-incol .article-stay22-bottom-frame {
    position: relative;
    width: 100%;
    height: 600px;
    border-radius: 6px;
    overflow: hidden;
    background: var(--tn-bg-card);
    border: 1px solid var(--tn-divider);
}
.theme-new .article-stay22-bottom-incol .article-stay22-bottom-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}
@media (max-width: 768px) {
    .theme-new .article-stay22-bottom-incol .article-stay22-bottom-frame { height: 480px; }
}

/* Tickets sidebar lista */
.theme-new .article-detail-tickets-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.theme-new .article-detail-ticket-item {
    display: flex;
    gap: 10px;
    padding: 10px;
    background: var(--tn-bg-page);
    border-radius: 4px;
    text-decoration: none;
    color: inherit;
    border: 1px solid transparent;
    transition: border-color 0.15s ease;
}
.theme-new .article-detail-ticket-item:hover { border-color: var(--tn-cta-primary); }
.theme-new .article-detail-ticket-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 3px;
    flex-shrink: 0;
}
.theme-new .article-detail-ticket-body { flex: 1; min-width: 0; }
.theme-new .article-detail-ticket-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--tn-text-base);
    line-height: 1.35;
    margin: 0 0 4px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.theme-new .article-detail-ticket-meta {
    font-size: 11px;
    color: var(--tn-text-muted);
}

/* Related sidebar lista */
.theme-new .article-detail-related-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--tn-text-muted);
    margin: 0 0 14px 0;
}
.theme-new .article-detail-related-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.theme-new .article-detail-related-item {
    display: block;
    text-decoration: none;
    color: inherit;
}
.theme-new .article-detail-related-item-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--tn-text-base);
    line-height: 1.4;
    margin: 0 0 4px 0;
    transition: color 0.15s ease;
}
.theme-new .article-detail-related-item:hover .article-detail-related-item-title {
    color: var(--tn-cta-primary);
}
.theme-new .article-detail-related-item-meta {
    font-size: 11px;
    color: var(--tn-text-muted);
}

/* ===== Najcitanije ovaj tjedan (mini cards s velikim brojem rangiranja) ===== */
.theme-new .article-detail-most-read-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.theme-new .article-detail-most-read-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    text-decoration: none;
    color: inherit;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--tn-divider);
}
.theme-new .article-detail-most-read-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}
.theme-new .article-detail-most-read-rank {
    flex: 0 0 auto;
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
    color: var(--tn-cta-primary);
    min-width: 24px;
    text-align: left;
    font-family: var(--tn-font-sans);
}
.theme-new .article-detail-most-read-body {
    flex: 1 1 auto;
    min-width: 0;
}
.theme-new .article-detail-most-read-eyebrow {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--tn-text-muted);
    margin-bottom: 3px;
}
.theme-new .article-detail-most-read-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--tn-text-base);
    line-height: 1.35;
    transition: color 0.15s ease;
}
.theme-new .article-detail-most-read-item:hover .article-detail-most-read-title {
    color: var(--tn-cta-primary);
}

/* Mobile: 1 stupac, sidebar dolje */
@media (max-width: 920px) {
    .theme-new .article-detail-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 32px;
    }
    .theme-new .article-detail-side {
        position: static;
        max-height: none;
    }
}

/* =========================================================================
   --- 24. PORTAL AUTHOR BYLINE (portalAuthorByline.ascx) — 3 varijante ---
   compact = inline u meta liniji (clanak + listing kartice)
   card    = veci avatar + bio (related sekcija, autor footer)
   minimal = samo ime + datum, no foto (kraj clanka)
   ========================================================================= */

.theme-new .portal-author-byline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--tn-text-muted);
    font-family: var(--tn-font-sans);
    font-size: 13px;
    line-height: 1.4;
    transition: color 0.15s ease;
}
.theme-new .portal-author-byline:hover {
    color: var(--tn-cta-primary);
}
.theme-new .portal-author-byline-photo {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}
.theme-new .portal-author-byline-text {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
}
.theme-new .portal-author-byline-prefix {
    color: var(--tn-text-muted);
    font-weight: 400;
}
.theme-new .portal-author-byline-name {
    color: var(--tn-text-base);
    font-weight: 600;
}
.theme-new .portal-author-byline:hover .portal-author-byline-name {
    color: var(--tn-cta-primary);
}
.theme-new .portal-author-byline-sep {
    margin: 0 2px;
    opacity: 0.5;
}
.theme-new .portal-author-byline-date {
    color: var(--tn-text-muted);
    font-weight: 400;
}

/* Variant: card (veci avatar, vise prostora) */
.theme-new .portal-author-byline-card {
    align-items: flex-start;
    gap: 14px;
    padding: 14px;
    border: 1px solid var(--tn-divider);
    border-radius: 6px;
    background: var(--tn-bg-card);
}
.theme-new .portal-author-byline-card .portal-author-byline-photo {
    width: 64px;
    height: 64px;
}
.theme-new .portal-author-byline-card .portal-author-byline-text {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}
.theme-new .portal-author-byline-card .portal-author-byline-name {
    font-size: 16px;
}

/* Variant: minimal (no foto) */
.theme-new .portal-author-byline-minimal .portal-author-byline-photo {
    display: none;
}
