:root {
  --bg: #050505;
  --panel: #0b0b0b;
  --line: #1f1f1f;
  --gold: #e8c547;
  --gold-dim: #b8942e;
  --text: #f3f3f3;
  --muted: #9ca3af;
  --red: #ef4444;
  --card: #0f0f0f;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
}

a {
  color: var(--gold);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.ft-header {
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #0a0a0a 0%, #050505 100%);
  position: sticky;
  top: 0;
  z-index: 20;
}

.ft-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.ft-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
}

.ft-mark {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 2px solid var(--gold);
  display: grid;
  place-items: center;
  font-size: 18px;
  color: var(--gold);
  background: radial-gradient(circle at 30% 20%, #2a2410, #0c0c0c 70%);
  box-shadow: 0 0 24px rgba(232, 197, 71, 0.15);
}

.ft-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.ft-nav a {
  color: var(--muted);
}

.ft-nav a:hover {
  color: var(--gold);
}

.ft-zone {
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--gold-dim);
  text-transform: uppercase;
}

.badge {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.badge-breaking {
  background: rgba(239, 68, 68, 0.15);
  color: var(--red);
  border: 1px solid rgba(239, 68, 68, 0.45);
}

.badge-news {
  background: rgba(232, 197, 71, 0.12);
  color: var(--gold);
  border: 1px solid rgba(232, 197, 71, 0.35);
}

.layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 28px 20px 60px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 28px;
}

@media (max-width: 980px) {
  .layout {
    grid-template-columns: 1fr;
  }
}

.hero {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 24px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(135deg, #101010, #070707 60%);
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }
}

.hero h1 {
  font-size: clamp(28px, 4vw, 40px);
  margin: 12px 0 16px;
  color: var(--gold);
  line-height: 1.1;
}

.hero p.lead {
  color: var(--muted);
  line-height: 1.6;
  max-width: 52ch;
}

.hero-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.score-pill {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 12px;
  color: var(--muted);
}

.score-pill strong {
  color: var(--gold);
}

.grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 120px;
}

.card h3 {
  margin: 0;
  font-size: 16px;
  color: var(--gold);
}

.section-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin: 32px 0 14px;
  border-left: 4px solid var(--gold);
  padding-left: 12px;
}

.section-title h2 {
  margin: 0;
  font-size: 18px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold);
}

.section-title span {
  font-size: 12px;
  color: var(--muted);
}

.sidebar {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
  background: var(--panel);
  height: fit-content;
}

.sidebar h3 {
  margin: 0 0 12px;
  font-size: 14px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

.article-hero-img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--line);
}

.article-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 20px 60px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 28px;
}

@media (max-width: 980px) {
  .article-layout {
    grid-template-columns: 1fr;
  }
}

.article-body {
  font-size: 17px;
  line-height: 1.75;
  color: #e5e5e5;
}

.article-body h2 {
  color: var(--gold);
  margin-top: 28px;
}

.prob-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
  background: var(--panel);
}

.prob-card h3 {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 15px;
}

.meter {
  height: 10px;
  border-radius: 999px;
  background: #1a1a1a;
  overflow: hidden;
  margin: 8px 0;
}

.meter > span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dim), var(--gold));
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.tag {
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--muted);
}

.btn {
  cursor: pointer;
  border: none;
  border-radius: 8px;
  padding: 10px 16px;
  font-weight: 600;
}

.btn-gold {
  background: var(--gold);
  color: #111;
}

.btn-red {
  background: rgba(239, 68, 68, 0.2);
  color: var(--red);
  border: 1px solid rgba(239, 68, 68, 0.5);
}

.btn-ghost {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--line);
}

.admin-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px 20px 60px;
}

.admin-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 20px;
}

@media (max-width: 900px) {
  .admin-grid {
    grid-template-columns: 1fr;
  }
}

textarea.input {
  width: 100%;
  min-height: 220px;
  background: #0a0a0a;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  font-family: ui-monospace, monospace;
  font-size: 13px;
}

input.input {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #0a0a0a;
  color: var(--text);
}

.draft-list {
  border: 1px solid var(--line);
  border-radius: 12px;
  max-height: 520px;
  overflow: auto;
}

.draft-row {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
}

.draft-row:hover,
.draft-row.active {
  background: #111;
}

.muted {
  color: var(--muted);
  font-size: 13px;
}


/* === Social posts admin UI === */
.social-posts-list {
  display: grid;
  gap: 12px;
  margin-top: 8px;
}

.social-post-card {
  background: #0d0d0d;
  border: 1px solid #232323;
  border-left: 4px solid var(--gold);
  border-radius: 12px;
  padding: 12px;
  box-shadow: 0 0 0 1px rgba(245, 197, 66, 0.04);
}

.social-post-card + .social-post-card {
  margin-top: 2px;
}

.social-post-card strong {
  font-size: 12px;
  letter-spacing: 0.08em;
}

.social-post-textarea {
  margin-top: 10px;
  min-height: 88px;
  resize: vertical;
  font-size: 14px;
  line-height: 1.45;
  background: #050505 !important;
  color: #f5f5f5;
  border: 1px solid #2d2d2d;
  border-radius: 10px;
  padding: 10px 12px;
}

.social-post-textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 1px rgba(245, 197, 66, 0.2);
}


/* === Stronger social posts admin UI override === */
#socialPostsList {
  display: grid !important;
  gap: 12px !important;
  margin-top: 10px !important;
}

#socialPostsList .social-post-card {
  background: linear-gradient(180deg, #111 0%, #080808 100%) !important;
  border: 1px solid #2a2a2a !important;
  border-left: 4px solid var(--gold) !important;
  border-radius: 14px !important;
  padding: 14px !important;
  margin-bottom: 12px !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35) !important;
}

#socialPostsList .social-post-card strong {
  color: var(--gold) !important;
  font-size: 12px !important;
  letter-spacing: 0.12em !important;
}

#socialPostsList .social-post-card .muted {
  background: #171717 !important;
  border: 1px solid #292929 !important;
  color: #b8b8b8 !important;
  padding: 3px 8px !important;
  border-radius: 999px !important;
  font-size: 11px !important;
}

#socialPostsList .social-post-textarea {
  width: 100% !important;
  margin-top: 12px !important;
  min-height: 110px !important;
  resize: vertical !important;
  background: #050505 !important;
  color: #f2f2f2 !important;
  border: 1px solid #333 !important;
  border-radius: 12px !important;
  padding: 12px !important;
  font-size: 14px !important;
  line-height: 1.5 !important;
  box-sizing: border-box !important;
}

#socialPostsList .social-post-textarea:focus {
  outline: none !important;
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 2px rgba(245, 197, 66, 0.18) !important;
}


/* =========================================================
   PUBLIC REDESIGN V1 — Fudbalski Transferi
   ========================================================= */

:root {
  --bg: #030303;
  --panel: #0a0a0a;
  --panel-2: #101010;
  --card: #0d0d0d;
  --line: #242424;
  --line-soft: rgba(255,255,255,0.07);
  --gold: #f2c94c;
  --gold-dim: #b88922;
  --gold-soft: rgba(242, 201, 76, 0.12);
  --red: #ff3131;
  --red-soft: rgba(255, 49, 49, 0.13);
  --text: #f5f5f5;
  --muted: #a1a1aa;
}

body {
  background:
    radial-gradient(circle at top left, rgba(242, 201, 76, 0.08), transparent 34%),
    radial-gradient(circle at top right, rgba(255, 49, 49, 0.055), transparent 28%),
    linear-gradient(180deg, #050505 0%, #000 100%);
  color: var(--text);
}

.ft-header {
  border-bottom: 1px solid rgba(242, 201, 76, 0.16);
  background:
    linear-gradient(90deg, rgba(242, 201, 76, 0.05), transparent 35%),
    rgba(3, 3, 3, 0.92);
  backdrop-filter: blur(14px);
}

.ft-header-inner {
  max-width: 1240px;
  padding: 16px 22px;
}

.ft-mark {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(242, 201, 76, 0.72);
  background:
    radial-gradient(circle at 35% 20%, rgba(242, 201, 76, 0.34), transparent 30%),
    linear-gradient(145deg, #15120a 0%, #050505 75%);
  box-shadow:
    0 0 0 4px rgba(242, 201, 76, 0.04),
    0 16px 42px rgba(0,0,0,0.5);
}

.ft-nav {
  gap: 8px;
}

.ft-nav a {
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
}

.ft-nav a:hover {
  text-decoration: none;
  color: var(--gold);
  border-color: rgba(242, 201, 76, 0.24);
  background: rgba(242, 201, 76, 0.055);
}

.layout,
.article-layout {
  max-width: 1240px;
}

.hero {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(242, 201, 76, 0.18);
  background:
    linear-gradient(135deg, rgba(242, 201, 76, 0.12), transparent 26%),
    radial-gradient(circle at 88% 10%, rgba(255, 49, 49, 0.12), transparent 24%),
    linear-gradient(135deg, #121212 0%, #050505 58%, #020202 100%);
  box-shadow:
    0 24px 80px rgba(0,0,0,0.48),
    inset 0 1px 0 rgba(255,255,255,0.035);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(90deg, black, transparent 75%);
  pointer-events: none;
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(34px, 5vw, 60px);
  letter-spacing: -0.045em;
  color: #fff;
}

.hero h1::first-line {
  color: var(--gold);
}

.hero p.lead {
  font-size: 16px;
  color: #c9c9c9;
}

.hero .article-hero-img {
  height: 100%;
  min-height: 280px;
  max-height: 430px;
  border-radius: 20px;
  border-color: rgba(242, 201, 76, 0.18);
  box-shadow: 0 18px 50px rgba(0,0,0,0.45);
  background:
    linear-gradient(135deg, rgba(242, 201, 76, 0.08), rgba(255, 49, 49, 0.04)),
    #080808;
}

.badge {
  border-radius: 999px;
  padding: 5px 9px;
  font-size: 10px;
}

.badge-breaking {
  background: var(--red-soft);
  color: #ff6b6b;
  border-color: rgba(255, 49, 49, 0.52);
  box-shadow: 0 0 22px rgba(255, 49, 49, 0.10);
}

.badge-news {
  background: var(--gold-soft);
  color: var(--gold);
  border-color: rgba(242, 201, 76, 0.42);
}

.score-pill {
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.09);
  color: #bdbdbd;
}

.btn {
  border-radius: 999px;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

.btn:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

.btn-gold {
  background: linear-gradient(135deg, #ffe27a, var(--gold) 45%, #c99520);
  color: #090909;
  box-shadow: 0 12px 30px rgba(242, 201, 76, 0.16);
}

.btn-ghost:hover {
  color: var(--gold);
  border-color: rgba(242, 201, 76, 0.34);
}

.section-title {
  border-left: 0;
  padding-left: 0;
  border-bottom: 1px solid rgba(242, 201, 76, 0.16);
  padding-bottom: 10px;
  margin-top: 36px;
}

.section-title h2 {
  position: relative;
  font-size: 20px;
}

.section-title h2::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 22px;
  border-radius: 999px;
  background: var(--red);
  margin-right: 10px;
  vertical-align: -4px;
}

.card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.075);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.035), transparent 38%),
    var(--card);
  padding: 18px;
  min-height: 155px;
  box-shadow: 0 16px 42px rgba(0,0,0,0.24);
}

.card::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, var(--gold), transparent 70%);
  opacity: 0.72;
}

.card:hover {
  border-color: rgba(242, 201, 76, 0.32);
  transform: translateY(-2px);
  transition: transform .16s ease, border-color .16s ease;
}

.card h3 {
  font-size: 18px;
  line-height: 1.25;
}

.card h3 a {
  color: #f7f7f7;
}

.card h3 a:hover {
  color: var(--gold);
  text-decoration: none;
}

.sidebar,
.prob-card {
  border-radius: 18px;
  border: 1px solid rgba(242, 201, 76, 0.14);
  background:
    linear-gradient(180deg, rgba(242, 201, 76, 0.055), transparent 34%),
    #090909;
  box-shadow: 0 18px 50px rgba(0,0,0,0.28);
}

.article-layout > article {
  border: 1px solid rgba(255,255,255,0.075);
  border-radius: 24px;
  padding: clamp(18px, 3vw, 34px);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.03), transparent 180px),
    rgba(10,10,10,0.72);
  box-shadow: 0 22px 70px rgba(0,0,0,0.38);
}

.article-layout h1#title {
  color: #fff !important;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.article-body {
  max-width: 760px;
  color: #e8e8e8;
}

.article-body p {
  margin: 0 0 18px;
}

.article-body strong {
  color: #fff;
}

.prob-card {
  position: sticky;
  top: 92px;
}

.meter {
  height: 12px;
  background: #151515;
  border: 1px solid rgba(255,255,255,0.07);
}

.meter > span {
  background: linear-gradient(90deg, #8a6818, var(--gold), #ffe27a);
  box-shadow: 0 0 24px rgba(242, 201, 76, 0.25);
}

.tag {
  border-color: rgba(242, 201, 76, 0.22);
  background: rgba(242, 201, 76, 0.055);
  color: #d7d7d7;
}

@media (max-width: 760px) {
  .ft-header-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .ft-nav {
    width: 100%;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
  }

  .hero {
    padding: 20px;
    border-radius: 18px;
  }

  .hero h1 {
    font-size: clamp(30px, 9vw, 42px);
  }

  .layout,
  .article-layout {
    padding-left: 14px;
    padding-right: 14px;
  }

  .card,
  .sidebar,
  .prob-card,
  .article-layout > article {
    border-radius: 16px;
  }

  .article-body {
    font-size: 16px;
  }
}


/* === Image placeholder when article has no hero image === */
.image-placeholder {
  min-height: 280px;
  height: 100%;
  border-radius: 20px;
  border: 1px solid rgba(242, 201, 76, 0.22);
  background:
    radial-gradient(circle at 35% 20%, rgba(242, 201, 76, 0.18), transparent 34%),
    radial-gradient(circle at 80% 80%, rgba(255, 49, 49, 0.12), transparent 30%),
    linear-gradient(135deg, #111 0%, #050505 70%);
  display: grid;
  place-content: center;
  text-align: center;
  color: var(--gold);
  box-shadow: 0 18px 50px rgba(0,0,0,0.45);
}

.placeholder-mark {
  width: 70px;
  height: 70px;
  margin: 0 auto 14px;
  border-radius: 18px;
  border: 1px solid rgba(242, 201, 76, 0.65);
  display: grid;
  place-items: center;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: 0.08em;
  background: rgba(242, 201, 76, 0.08);
}

.image-placeholder div:not(.placeholder-mark) {
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.image-placeholder span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
}

.article-placeholder {
  min-height: 360px;
  margin-bottom: 18px;
}


/* =========================================================
   HOMEPAGE VISUAL V2 — premium transfer portal look
   Inspired by final FT black/gold/red mockup
   ========================================================= */

body {
  background:
    radial-gradient(circle at 50% -10%, rgba(242, 201, 76, 0.08), transparent 34%),
    linear-gradient(180deg, #050505 0%, #000 55%, #050505 100%);
}

/* Wider premium page */
.ft-header-inner,
.layout,
.article-layout {
  max-width: 1320px;
}

/* Header like premium sports portal */
.ft-header {
  border-bottom: 1px solid rgba(242, 201, 76, 0.24);
  background: rgba(0, 0, 0, 0.94);
}

.ft-header-inner {
  min-height: 76px;
}

.ft-logo {
  letter-spacing: 0.08em;
}

.ft-logo > div:last-child > div:last-child {
  font-size: 18px !important;
  line-height: 1;
  color: var(--gold);
}

.ft-mark {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  font-size: 18px;
}

.ft-nav {
  gap: 20px;
  align-items: center;
}

.ft-nav a {
  position: relative;
  font-weight: 800;
  color: #e8e8e8;
  font-size: 12px;
  letter-spacing: 0.14em;
}

.ft-nav a:hover {
  color: var(--gold);
  background: transparent;
  border-color: transparent;
}

.ft-nav a::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 1px;
  height: 2px;
  border-radius: 999px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .16s ease;
}

.ft-nav a:hover::after {
  transform: scaleX(1);
}

/* Main layout closer to mockup */
.layout {
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 32px;
  padding-top: 28px;
}

/* Hero banner */
.hero {
  min-height: 430px;
  grid-template-columns: 1.15fr 0.85fr;
  padding: 0;
  border-radius: 18px;
  border: 1px solid rgba(242, 201, 76, 0.28);
  background:
    radial-gradient(circle at 82% 50%, rgba(242, 201, 76, 0.16), transparent 26%),
    radial-gradient(circle at 92% 80%, rgba(255, 49, 49, 0.16), transparent 30%),
    linear-gradient(90deg, #080808 0%, #101010 52%, #050505 100%);
}

.hero > div:first-child {
  padding: 54px 36px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero > div:last-child {
  padding: 22px;
  display: flex;
  align-items: stretch;
}

.hero h1 {
  font-size: clamp(42px, 5.8vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  margin: 18px 0 18px;
  color: #fff;
  text-wrap: balance;
}

.hero h1::first-line {
  color: var(--gold);
}

.hero p.lead {
  font-size: 18px;
  line-height: 1.55;
  max-width: 560px;
  color: #d2d2d2;
}

.hero-meta {
  gap: 8px;
}

.hero .btn-gold {
  align-self: flex-start;
  margin-top: 18px !important;
  padding: 13px 22px;
  font-size: 13px;
  font-weight: 900;
}

.hero .article-hero-img,
.hero .image-placeholder {
  min-height: 360px;
  width: 100%;
  border-radius: 18px;
}

/* Placeholder becomes designed media panel */
.image-placeholder {
  background:
    radial-gradient(circle at 50% 16%, rgba(242, 201, 76, 0.24), transparent 25%),
    radial-gradient(circle at 82% 82%, rgba(255, 49, 49, 0.14), transparent 28%),
    linear-gradient(135deg, #151515 0%, #050505 65%, #0b0606 100%);
}

.placeholder-mark {
  width: 86px;
  height: 86px;
  border-radius: 22px;
  font-size: 30px;
  box-shadow: 0 0 44px rgba(242, 201, 76, 0.12);
}

/* Section title like mockup */
.section-title {
  margin: 34px 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(242, 201, 76, 0.22);
}

.section-title h2 {
  color: var(--gold);
  font-size: 22px;
  font-weight: 950;
  letter-spacing: 0.055em;
}

.section-title span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Cards like news tiles */
.grid-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

#latestGrid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  min-height: 185px;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid rgba(242, 201, 76, 0.18);
  background:
    radial-gradient(circle at 78% 18%, rgba(242, 201, 76, 0.08), transparent 28%),
    linear-gradient(180deg, #151515 0%, #080808 80%);
  box-shadow: 0 18px 45px rgba(0,0,0,0.28);
}

.card::after {
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--gold), transparent 72%);
}

.card h3 {
  font-size: 18px;
  line-height: 1.18;
  margin-top: auto;
}

.card .muted {
  color: #bdbdbd;
}

.card .score-pill {
  margin-top: 6px;
  align-self: flex-start;
}

/* Sidebar blocks closer to mockup */
.sidebar,
.prob-card {
  border-radius: 18px;
  border: 1px solid rgba(242, 201, 76, 0.25);
  background:
    radial-gradient(circle at 100% 0%, rgba(242, 201, 76, 0.10), transparent 32%),
    linear-gradient(180deg, #0d0d0d 0%, #050505 100%);
}

.sidebar {
  padding: 20px;
}

.sidebar h3 {
  font-size: 18px;
  color: var(--gold);
  letter-spacing: 0.08em;
  border-bottom: 1px solid rgba(242, 201, 76, 0.25);
  padding-bottom: 12px;
}

.sidebar li {
  position: relative;
  padding: 13px 0 13px 28px;
  font-size: 14px;
  line-height: 1.35;
}

.sidebar li::before {
  content: "0" counter(item);
  counter-increment: item;
  position: absolute;
  left: 0;
  top: 13px;
  color: var(--gold);
  font-weight: 900;
  font-size: 13px;
}

.sidebar ul {
  counter-reset: item;
}

.sidebar .hp-transfer-pred-list {
  counter-reset: none;
}

.sidebar .hp-transfer-pred-list li {
  padding-left: 0 !important;
}

.sidebar .hp-transfer-pred-list li::before {
  content: none !important;
  display: none !important;
  counter-increment: none !important;
}

.sidebar li a,
.sidebar li {
  color: #ededed;
}

/* Badges stronger */
.badge-breaking {
  background: linear-gradient(135deg, #d51f1f, #7a1111);
  color: #fff;
  border: 0;
}

.badge-news {
  background: rgba(242, 201, 76, 0.13);
  color: var(--gold);
  border: 1px solid rgba(242, 201, 76, 0.36);
}

.score-pill {
  border-radius: 999px;
  font-size: 11px;
}

/* Article page follows same visual language */
.article-layout {
  grid-template-columns: minmax(0, 1fr) 360px;
}

.article-layout > article {
  border-color: rgba(242, 201, 76, 0.22);
  background:
    radial-gradient(circle at 82% 4%, rgba(242, 201, 76, 0.08), transparent 30%),
    linear-gradient(180deg, #0d0d0d 0%, #050505 100%);
}

.article-layout h1#title {
  font-size: clamp(36px, 5vw, 62px) !important;
}

.article-body {
  font-size: 18px;
  line-height: 1.82;
}

/* Bottom/search section less weak */
#latest,
#rumours,
#trending {
  scroll-margin-top: 100px;
}

/* Responsive */
@media (max-width: 1100px) {
  .layout,
  .article-layout {
    grid-template-columns: 1fr;
  }

  #latestGrid,
  .grid-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero > div:first-child {
    padding: 36px 24px 10px;
  }

  .hero > div:last-child {
    padding: 10px 24px 24px;
  }
}

@media (max-width: 700px) {
  #latestGrid,
  .grid-cards {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero h1 {
    font-size: clamp(34px, 12vw, 48px);
  }

  .hero p.lead {
    font-size: 15px;
  }

  .ft-nav {
    gap: 8px;
  }

  .ft-nav a {
    font-size: 11px;
    padding: 7px 8px;
  }
}

/* === Hero image polish === */
.hero .article-hero-img {
  object-fit: cover;
  object-position: center center;
  background: #070707;
}

@media (min-width: 901px) {
  .hero .article-hero-img {
    aspect-ratio: 16 / 10;
  }
}

/* Article page image should be wider and natural */
.article-layout article > .article-hero-img {
  max-height: 520px;
  object-fit: cover;
  object-position: center center;
}

/* === HERO FRAME STYLE: FT media card === */
.hero > div:last-child {
  padding: 16px !important;
  display: flex;
  align-items: stretch;
}

.hero > div:last-child:has(.article-hero-img),
.hero > div:last-child:has(.image-placeholder) {
  position: relative;
  border-radius: 24px;
  padding: 12px !important;
  border: 1px solid rgba(242,201,76,0.22);
  background:
    radial-gradient(circle at 80% 20%, rgba(242,201,76,0.15), transparent 28%),
    radial-gradient(circle at 20% 90%, rgba(255,49,49,0.13), transparent 30%),
    #070707;
  box-shadow:
    0 24px 75px rgba(0,0,0,0.46),
    inset 0 1px 0 rgba(255,255,255,0.04);
  overflow: hidden;
}

.hero > div:last-child:has(.article-hero-img)::before,
.hero > div:last-child:has(.image-placeholder)::before {
  content: "FT MEDIA";
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 3;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(0,0,0,0.58);
  border: 1px solid rgba(242,201,76,0.32);
  color: var(--gold);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.hero .article-hero-img,
.hero .image-placeholder {
  width: 100%;
  min-height: 360px;
  border-radius: 16px !important;
  display: block;
}

.hero .article-hero-img {
  border: 1px solid rgba(255,255,255,0.08);
  filter: contrast(1.05);
  object-fit: cover;
  object-position: center center;
}

.hero .image-placeholder {
  border: 1px solid rgba(255,255,255,0.08);
}

/* mobile tweak */
@media (max-width: 900px) {
  .hero > div:last-child {
    padding: 10px 24px 24px !important;
  }

  .hero > div:last-child:has(.article-hero-img),
  .hero > div:last-child:has(.image-placeholder) {
    padding: 10px !important;
    border-radius: 18px;
  }

  .hero > div:last-child:has(.article-hero-img)::before,
  .hero > div:last-child:has(.image-placeholder)::before {
    top: 16px;
    left: 16px;
  }

  .hero .article-hero-img,
  .hero .image-placeholder {
    border-radius: 14px !important;
    min-height: 280px;
  }
}

/* =========================================================
   FINAL HERO FRAME — MIX OVERLAY + GLOW
   ========================================================= */

.hero > div:last-child {
  padding: 16px !important;
  display: flex;
  align-items: stretch;
}

.hero > div:last-child:has(.article-hero-img),
.hero > div:last-child:has(.image-placeholder) {
  position: relative;
  border-radius: 24px;
  padding: 12px !important;
  border: 1px solid rgba(242,201,76,0.30);
  background:
    radial-gradient(circle at 82% 18%, rgba(242,201,76,0.18), transparent 28%),
    radial-gradient(circle at 18% 88%, rgba(255,49,49,0.15), transparent 31%),
    linear-gradient(135deg, #101010, #050505 72%);
  box-shadow:
    0 26px 78px rgba(0,0,0,0.50),
    0 0 34px rgba(242,201,76,0.075),
    inset 0 1px 0 rgba(255,255,255,0.045);
  overflow: hidden;
}

.hero > div:last-child:has(.article-hero-img)::before,
.hero > div:last-child:has(.image-placeholder)::before {
  content: "FT MEDIA";
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 3;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(0,0,0,0.60);
  border: 1px solid rgba(242,201,76,0.36);
  color: var(--gold);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.hero > div:last-child:has(.article-hero-img)::after,
.hero > div:last-child:has(.image-placeholder)::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 16px;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.24), transparent 44%, rgba(0,0,0,0.20)),
    linear-gradient(180deg, rgba(242,201,76,0.075), transparent 38%, rgba(255,49,49,0.075));
  pointer-events: none;
  z-index: 2;
}

.hero .article-hero-img,
.hero .image-placeholder {
  width: 100%;
  min-height: 360px;
  border-radius: 16px !important;
  display: block;
}

.hero .article-hero-img {
  border: 1px solid rgba(255,255,255,0.08);
  filter: contrast(1.055) saturate(1.045);
  object-fit: cover;
  object-position: center center;
}

.hero .image-placeholder {
  border: 1px solid rgba(255,255,255,0.08);
}

/* mobile */
@media (max-width: 900px) {
  .hero > div:last-child {
    padding: 10px 24px 24px !important;
  }

  .hero > div:last-child:has(.article-hero-img),
  .hero > div:last-child:has(.image-placeholder) {
    padding: 10px !important;
    border-radius: 18px;
  }

  .hero > div:last-child:has(.article-hero-img)::before,
  .hero > div:last-child:has(.image-placeholder)::before {
    top: 16px;
    left: 16px;
  }

  .hero > div:last-child:has(.article-hero-img)::after,
  .hero > div:last-child:has(.image-placeholder)::after {
    inset: 10px;
    border-radius: 14px;
  }

  .hero .article-hero-img,
  .hero .image-placeholder {
    border-radius: 14px !important;
    min-height: 280px;
  }
}
/* OVDJE IDE ONAJ CIJELI RESKIN V4 BLOK KOJI SAM TI POSLAO */
/* OVDJE IDE ONAJ CIJELI RESKIN V4 BLOK KOJI SAM TI POSLAO */

/* === Admin crest validation UI === */
.crest-admin-box {
  border: 1px solid rgba(242,201,76,0.16);
  border-radius: 14px;
  padding: 14px;
  background:
    radial-gradient(circle at 100% 0%, rgba(242,201,76,0.07), transparent 30%),
    #080808;
}

.crest-preview-card {
  width: 120px;
  height: 120px;
  border-radius: 18px;
  border: 1px solid rgba(242,201,76,0.24);
  background:
    radial-gradient(circle at center, rgba(242,201,76,0.08), transparent 44%),
    #050505;
  display: grid;
  place-items: center;
  padding: 14px;
  overflow: hidden;
  box-sizing: border-box;
}

.crest-preview-card img {
  display: block;
  max-width: 82%;
  max-height: 82%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 14px rgba(0,0,0,0.45));
}

/* =========================================================
   FINAL OVERRIDE — no grid, stronger editorial hero
   ========================================================= */

/* potpuno ukloni grid/kockice iz hero pozadine */
.hero::before {
  display: none !important;
  opacity: 0 !important;
  content: none !important;
}

/* čista tamna editorial pozadina */
.hero {
  background:
    radial-gradient(circle at 68% 38%, rgba(242,201,76,0.12), transparent 26%),
    radial-gradient(circle at 92% 88%, rgba(255,49,49,0.10), transparent 28%),
    linear-gradient(90deg, #070707 0%, #0b0b0b 48%, #060606 100%) !important;
}

/* ghosted crest jače i vidljivije */
.hero.hero-has-crest::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  pointer-events: none !important;
  background-image: var(--hero-crest) !important;
  background-repeat: no-repeat !important;
  background-position: 72% 46% !important;
  background-size: 34% !important;
  opacity: 0.16 !important;
  filter: blur(1.2px) grayscale(0.1) contrast(1.1) !important;
  z-index: 0 !important;
}

/* lijeva strana mora ostati tamna da žuti/bijeli tekst bude čitljiv */
.hero > div:first-child {
  background:
    linear-gradient(90deg, rgba(5,5,5,0.99) 0%, rgba(6,6,6,0.96) 68%, rgba(6,6,6,0.50) 100%) !important;
}

/* desni media frame ostaje izabrani mix overlay + glow */
.hero > div:last-child:has(.article-hero-img),
.hero > div:last-child:has(.image-placeholder) {
  background:
    radial-gradient(circle at 82% 18%, rgba(242,201,76,0.18), transparent 28%),
    radial-gradient(circle at 18% 88%, rgba(255,49,49,0.15), transparent 31%),
    linear-gradient(135deg, #101010, #050505 72%) !important;
  border: 1px solid rgba(242,201,76,0.30) !important;
  box-shadow:
    0 26px 78px rgba(0,0,0,0.50),
    0 0 34px rgba(242,201,76,0.075),
    inset 0 1px 0 rgba(255,255,255,0.045) !important;
}

/* ako nema slike, placeholder neka izgleda manje prazno */
.hero .image-placeholder {
  background:
    radial-gradient(circle at 50% 18%, rgba(242,201,76,0.18), transparent 28%),
    radial-gradient(circle at 78% 82%, rgba(255,49,49,0.12), transparent 30%),
    linear-gradient(135deg, #121212 0%, #060606 70%) !important;
}

/* =========================================================
   HERO CREST TUNING — smaller, top-left, more visible
   ========================================================= */
.hero.hero-has-crest::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  pointer-events: none !important;
  background-image: var(--hero-crest) !important;
  background-repeat: no-repeat !important;

  /* pomjeren više lijevo i gore */
  background-position: 41% 18% !important;

  /* manji nego prije */
  background-size: 20% !important;

  /* malo vidljiviji */
  opacity: 0.23 !important;

  /* blagi blur da ostane premium */
  filter: blur(0.8px) grayscale(0.05) contrast(1.08) !important;

  z-index: 0 !important;
}

/* da tekst ostane čitljiv preko grba */
.hero > div:first-child {
  position: relative !important;
  z-index: 2 !important;
}

/* =========================================================
   INTEGRATED HERO V1
   Reference-style hero: no separate image frame, image blends into post
   ========================================================= */

.hero-integrated {
  position: relative !important;
  isolation: isolate;
  min-height: 460px !important;
  grid-template-columns: 1fr !important;
  padding: 0 !important;
  overflow: hidden !important;
  border-radius: 22px !important;
  border: 1px solid rgba(242,201,76,0.22) !important;
  background:
    radial-gradient(circle at 70% 32%, rgba(242,201,76,0.11), transparent 25%),
    radial-gradient(circle at 92% 90%, rgba(255,49,49,0.11), transparent 30%),
    linear-gradient(90deg, #070707 0%, #0b0b0b 48%, #060606 100%) !important;
  box-shadow:
    0 30px 90px rgba(0,0,0,0.45),
    inset 0 1px 0 rgba(255,255,255,0.035) !important;
}

/* remove all old grid/box effects */
.hero-integrated::before {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;
  pointer-events: none !important;
  background-image: var(--hero-crest) !important;
  background-repeat: no-repeat !important;
  background-position: 71% 35% !important;
  background-size: 34% !important;
  opacity: 0.17 !important;
  filter: blur(1.1px) grayscale(0.05) contrast(1.08) !important;
}

/* dark readability layer, like editorial sports cover */
.hero-integrated::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 3 !important;
  pointer-events: none !important;
  background:
    linear-gradient(90deg,
      rgba(3,3,3,0.98) 0%,
      rgba(3,3,3,0.94) 35%,
      rgba(3,3,3,0.52) 56%,
      rgba(3,3,3,0.16) 76%,
      rgba(3,3,3,0.34) 100%
    ),
    linear-gradient(180deg, rgba(0,0,0,0.06), rgba(0,0,0,0.24));
}

/* content zone */
.hero-integrated .hero-content {
  position: relative !important;
  z-index: 5 !important;
  width: min(56%, 720px);
  min-height: 460px;
  padding: 54px 40px 44px !important;
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  background: transparent !important;
}

/* visual zone is now part of same hero, not a separate card */
.hero-integrated .hero-visual {
  position: absolute !important;
  inset: 0 0 0 auto !important;
  width: 58% !important;
  height: 100% !important;
  z-index: 2 !important;
  padding: 0 !important;
  border: none !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: hidden !important;
  display: block !important;
}

/* kill old FT MEDIA badge/frame on integrated hero */
.hero-integrated .hero-visual::before,
.hero-integrated .hero-visual::after,
.hero-integrated > div:last-child::before,
.hero-integrated > div:last-child::after {
  display: none !important;
  content: none !important;
}

/* image blends with hero */
.hero-integrated .article-hero-img {
  position: absolute !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 100% !important;
  max-height: none !important;
  object-fit: cover !important;
  object-position: center center !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  filter: contrast(1.06) saturate(1.04) brightness(0.92) !important;
  background: transparent !important;

  /* this is what makes the image merge into the text area */
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.18) 10%, #000 32%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.18) 10%, #000 32%, #000 100%);
}

/* if no player image exists, placeholder should not look like a boxed card */
.hero-integrated .image-placeholder {
  position: absolute !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 58% !important;
  height: 100% !important;
  min-height: 100% !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  background:
    radial-gradient(circle at 56% 28%, rgba(242,201,76,0.18), transparent 28%),
    radial-gradient(circle at 78% 82%, rgba(255,49,49,0.12), transparent 30%),
    linear-gradient(135deg, #111 0%, #050505 70%) !important;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.22) 12%, #000 34%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.22) 12%, #000 34%, #000 100%);
}

/* text hierarchy like reference */
.hero-integrated h1 {
  max-width: 700px !important;
  font-size: clamp(42px, 5.4vw, 68px) !important;
  line-height: 0.98 !important;
  letter-spacing: -0.055em !important;
  color: #fff !important;
  margin: 18px 0 18px !important;
  text-shadow: 0 6px 24px rgba(0,0,0,0.42);
}

.hero-integrated .hero-title-gold {
  color: var(--gold) !important;
}

.hero-integrated p.lead {
  max-width: 520px !important;
  color: #cfcfcf !important;
  font-size: 17px !important;
  line-height: 1.55 !important;
}

.hero-integrated .hero-meta {
  position: relative;
  z-index: 6;
}

.hero-integrated .btn-gold {
  align-self: flex-start;
  margin-top: 18px !important;
  padding: 13px 22px !important;
  font-weight: 900 !important;
}

/* on small screens, restore stacked layout */
@media (max-width: 900px) {
  .hero-integrated {
    min-height: auto !important;
  }

  .hero-integrated .hero-content {
    width: 100%;
    min-height: 380px;
    padding: 34px 22px 24px !important;
  }

  .hero-integrated .hero-visual {
    position: relative !important;
    width: 100% !important;
    height: 300px !important;
    inset: auto !important;
  }

  .hero-integrated .article-hero-img,
  .hero-integrated .image-placeholder {
    position: relative !important;
    width: 100% !important;
    height: 300px !important;
    min-height: 300px !important;
    -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 74%, transparent 100%);
    mask-image: linear-gradient(180deg, #000 0%, #000 74%, transparent 100%);
  }

  .hero-integrated::before {
    background-position: 70% 68% !important;
    background-size: 48% !important;
    opacity: 0.13 !important;
  }

  .hero-integrated::after {
    background:
      linear-gradient(180deg, rgba(3,3,3,0.96) 0%, rgba(3,3,3,0.82) 48%, rgba(3,3,3,0.25) 100%) !important;
  }
}

/* =========================================================
   INTEGRATED HERO V2 — softer image blend, less box feeling
   ========================================================= */

/* hero malo širi i plići kao referenca */
.hero-integrated {
  min-height: 430px !important;
  border-radius: 16px !important;
}

/* ukloni oštru vertikalnu liniju između teksta i slike */
.hero-integrated .hero-visual {
  width: 64% !important;
  right: 0 !important;
  border-left: none !important;
}

/* slika više kao dio kompozicije, manje kao pravougaoni frame */
.hero-integrated .article-hero-img {
  right: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  border: none !important;
  border-radius: 0 !important;
  filter: contrast(1.08) saturate(1.05) brightness(0.86) !important;

  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.18) 10%, rgba(0,0,0,0.82) 28%, #000 48%, #000 100%),
    linear-gradient(180deg, #000 0%, #000 82%, transparent 100%);
  mask-image:
    linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.18) 10%, rgba(0,0,0,0.82) 28%, #000 48%, #000 100%),
    linear-gradient(180deg, #000 0%, #000 82%, transparent 100%);
}

/* dodatni tamni overlay preko slike da se stopi sa pozadinom */
.hero-integrated .hero-visual::after {
  display: block !important;
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 4 !important;
  pointer-events: none !important;
  background:
    linear-gradient(90deg, rgba(5,5,5,0.82) 0%, rgba(5,5,5,0.42) 22%, rgba(5,5,5,0.05) 48%, rgba(5,5,5,0.20) 100%),
    linear-gradient(180deg, rgba(242,201,76,0.06), transparent 34%, rgba(255,49,49,0.10));
}

/* grb se sada vidi preko/iza vizuala, suptilno kao editorial element */
.hero-integrated .hero-visual::before {
  display: block !important;
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 3 !important;
  pointer-events: none !important;
  background-image: var(--hero-crest) !important;
  background-repeat: no-repeat !important;
  background-position: 42% 24% !important;
  background-size: 44% !important;
  opacity: 0.16 !important;
  filter: blur(0.8px) grayscale(0.1) contrast(1.05) !important;
  mix-blend-mode: screen;
}

/* tekst zona malo čišća i bliža referenci */
.hero-integrated .hero-content {
  width: min(52%, 690px) !important;
  padding-left: 42px !important;
  padding-right: 20px !important;
}

.hero-integrated h1 {
  font-size: clamp(40px, 5.1vw, 64px) !important;
  max-width: 650px !important;
}

/* ukloni svaki raniji box/shadow osjećaj na desnoj strani */
.hero-integrated > div:last-child:has(.article-hero-img),
.hero-integrated > div:last-child:has(.image-placeholder) {
  border: none !important;
  box-shadow: none !important;
  background: transparent !important;
  padding: 0 !important;
  border-radius: 0 !important;
}

/* čitljivost lijeve strane */
.hero-integrated::after {
  background:
    linear-gradient(90deg,
      rgba(3,3,3,0.99) 0%,
      rgba(3,3,3,0.96) 34%,
      rgba(3,3,3,0.68) 50%,
      rgba(3,3,3,0.24) 68%,
      rgba(3,3,3,0.34) 100%
    ),
    linear-gradient(180deg, rgba(0,0,0,0.04), rgba(0,0,0,0.30)) !important;
}

/* =========================================================
   FINAL HERO TUNE — fade image into text zone + visible crest
   ========================================================= */

/* ugasi stariji crest layer na cijelom hero bloku */
.hero-integrated::before {
  background-image: none !important;
  opacity: 0 !important;
}

/* hero kao jedinstven editorial blok */
.hero-integrated {
  min-height: 430px !important;
  overflow: hidden !important;
  position: relative !important;
}

/* tekst zona ostaje čista i iznad svega */
.hero-integrated .hero-content {
  position: relative !important;
  z-index: 8 !important;
  width: min(50%, 640px) !important;
  padding: 48px 32px 40px 36px !important;
}

/* vizual ide desno i ne smije ulaziti tvrdo u naslov */
.hero-integrated .hero-visual {
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  left: 46% !important;   /* počinje desnije */
  width: auto !important;
  z-index: 2 !important;
  overflow: hidden !important;
  background: transparent !important;
}

/* grb ide iza igrača, unutar vizualne zone */
.hero-integrated.hero-has-crest .hero-visual::before {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 2 !important;
  pointer-events: none !important;
  background-image: var(--hero-crest) !important;
  background-repeat: no-repeat !important;
  background-position: 58% 24% !important;
  background-size: 42% !important;
  opacity: 0.18 !important;
  filter: blur(1px) saturate(0.95) contrast(1.03) !important;
}

/* dodatni overlay da vizual bude premium i da se stopi */
.hero-integrated .hero-visual::after {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 4 !important;
  pointer-events: none !important;
  background:
    linear-gradient(90deg,
      rgba(5,5,5,0.98) 0%,
      rgba(5,5,5,0.78) 10%,
      rgba(5,5,5,0.28) 24%,
      rgba(5,5,5,0.06) 40%,
      rgba(5,5,5,0.14) 100%
    ),
    linear-gradient(180deg,
      rgba(242,201,76,0.04) 0%,
      rgba(0,0,0,0.00) 35%,
      rgba(255,49,49,0.08) 100%
    ) !important;
}

/* slika igrača: ostaje desno, a lijevi dio se gasi prema naslovu */
.hero-integrated .article-hero-img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: 62% center !important;
  z-index: 3 !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  filter: brightness(0.90) contrast(1.07) saturate(1.03) !important;

  -webkit-mask-image: linear-gradient(
    90deg,
    rgba(0,0,0,0.00) 0%,
    rgba(0,0,0,0.00) 8%,
    rgba(0,0,0,0.08) 14%,
    rgba(0,0,0,0.22) 20%,
    rgba(0,0,0,0.50) 28%,
    rgba(0,0,0,0.80) 38%,
    rgba(0,0,0,0.96) 48%,
    rgba(0,0,0,1.00) 56%,
    rgba(0,0,0,1.00) 100%
  ) !important;
  mask-image: linear-gradient(
    90deg,
    rgba(0,0,0,0.00) 0%,
    rgba(0,0,0,0.00) 8%,
    rgba(0,0,0,0.08) 14%,
    rgba(0,0,0,0.22) 20%,
    rgba(0,0,0,0.50) 28%,
    rgba(0,0,0,0.80) 38%,
    rgba(0,0,0,0.96) 48%,
    rgba(0,0,0,1.00) 56%,
    rgba(0,0,0,1.00) 100%
  ) !important;
}

/* ako nema slike, placeholder i dalje izgleda kao dio hero-a */
.hero-integrated .image-placeholder {
  position: absolute !important;
  inset: 0 !important;
  z-index: 3 !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  background:
    radial-gradient(circle at 58% 24%, rgba(242,201,76,0.16), transparent 24%),
    radial-gradient(circle at 76% 82%, rgba(255,49,49,0.12), transparent 28%),
    linear-gradient(135deg, #111 0%, #050505 72%) !important;

  -webkit-mask-image: linear-gradient(
    90deg,
    rgba(0,0,0,0.00) 0%,
    rgba(0,0,0,0.00) 10%,
    rgba(0,0,0,0.14) 18%,
    rgba(0,0,0,0.46) 30%,
    rgba(0,0,0,0.84) 44%,
    rgba(0,0,0,1.00) 56%,
    rgba(0,0,0,1.00) 100%
  ) !important;
  mask-image: linear-gradient(
    90deg,
    rgba(0,0,0,0.00) 0%,
    rgba(0,0,0,0.00) 10%,
    rgba(0,0,0,0.14) 18%,
    rgba(0,0,0,0.46) 30%,
    rgba(0,0,0,0.84) 44%,
    rgba(0,0,0,1.00) 56%,
    rgba(0,0,0,1.00) 100%
  ) !important;
}

/* tekst mora uvijek biti iznad */
.hero-integrated h1,
.hero-integrated .hero-meta,
.hero-integrated .btn-gold,
.hero-integrated p,
.hero-integrated .hero-badges {
  position: relative !important;
  z-index: 9 !important;
}

/* mobilno */
@media (max-width: 900px) {
  .hero-integrated .hero-content {
    width: 100% !important;
    padding: 30px 20px 20px !important;
  }

  .hero-integrated .hero-visual {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    top: auto !important;
    width: 100% !important;
    height: 280px !important;
    min-height: 280px !important;
  }

  .hero-integrated.hero-has-crest .hero-visual::before {
    background-position: 60% 26% !important;
    background-size: 36% !important;
    opacity: 0.16 !important;
  }

  .hero-integrated .article-hero-img,
  .hero-integrated .image-placeholder {
    -webkit-mask-image: linear-gradient(
      180deg,
      rgba(0,0,0,1.00) 0%,
      rgba(0,0,0,1.00) 78%,
      rgba(0,0,0,0.20) 100%
    ) !important;
    mask-image: linear-gradient(
      180deg,
      rgba(0,0,0,1.00) 0%,
      rgba(0,0,0,1.00) 78%,
      rgba(0,0,0,0.20) 100%
    ) !important;
  }
}

/* =========================================================
   ARTICLE PAGE REDESIGN V1
   Editorial black/gold/red article layout
   ========================================================= */

.article-layout {
  max-width: 1380px !important;
  padding-top: 34px !important;
  grid-template-columns: minmax(0, 1fr) 360px !important;
  gap: 32px !important;
}

.article-main {
  position: relative;
  overflow: hidden;
  border-radius: 24px !important;
  border: 1px solid rgba(242,201,76,0.18) !important;
  background:
    radial-gradient(circle at 88% 0%, rgba(242,201,76,0.08), transparent 28%),
    radial-gradient(circle at 100% 80%, rgba(255,49,49,0.06), transparent 26%),
    linear-gradient(180deg, #101010 0%, #060606 100%) !important;
  box-shadow: 0 28px 90px rgba(0,0,0,0.40) !important;
}

.article-main.article-has-crest::before {
  content: "";
  position: absolute;
  top: 36px;
  right: 34px;
  width: 260px;
  height: 260px;
  background-image: var(--article-crest);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  opacity: 0.10;
  filter: blur(1px) grayscale(0.08) contrast(1.05);
  pointer-events: none;
  z-index: 0;
}

.article-main > * {
  position: relative;
  z-index: 1;
}

.article-top-meta {
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(242,201,76,0.12);
}

.article-main #title {
  color: #fff !important;
  font-size: clamp(32px, 3.25vw, 52px) !important;
  line-height: 1.1 !important;
  letter-spacing: -0.05em !important;
  max-width: min(820px, 96%);
  margin: 22px 0 10px !important;
  text-shadow: 0 8px 28px rgba(0,0,0,0.38);
}

.article-main #title .hero-title-entity {
  color: var(--gold) !important;
  font-weight: 850;
}

.article-main #attribution {
  margin: 0 0 18px;
  color: #bdbdbd !important;
  font-size: 13px !important;
}

.article-main > .article-hero-img,
.article-main > .article-placeholder {
  margin: 20px 0 28px;
}

.article-main > .article-hero-img {
  width: 100%;
  max-height: 560px !important;
  object-fit: cover !important;
  object-position: center center !important;
  border-radius: 20px !important;
  border: 1px solid rgba(242,201,76,0.18) !important;
  box-shadow:
    0 26px 70px rgba(0,0,0,0.38),
    inset 0 1px 0 rgba(255,255,255,0.04) !important;
  filter: brightness(0.92) contrast(1.06) saturate(1.03);
}

.article-main .article-placeholder {
  border-radius: 20px !important;
  min-height: 360px !important;
  border: 1px solid rgba(242,201,76,0.18) !important;
  box-shadow: 0 24px 65px rgba(0,0,0,0.36);
}

.article-main .article-body {
  max-width: 860px !important;
  font-size: 18px !important;
  line-height: 1.84 !important;
  color: #e8e8e8 !important;
}

.article-main .article-body p {
  margin: 0 0 20px !important;
}

.article-main .article-body h2 {
  color: var(--gold) !important;
  font-size: 28px !important;
  line-height: 1.18 !important;
  margin: 34px 0 14px !important;
  letter-spacing: -0.025em;
}

.article-main .article-body strong {
  color: #fff !important;
}

.article-main .tags {
  margin-top: 30px !important;
  padding-top: 18px;
  border-top: 1px solid rgba(242,201,76,0.12);
}

/* Sidebar article style */
.article-layout aside {
  position: relative;
}

.article-layout .prob-card {
  position: sticky;
  top: 98px;
  border-radius: 20px !important;
  border: 1px solid rgba(242,201,76,0.22) !important;
  background:
    radial-gradient(circle at 100% 0%, rgba(242,201,76,0.10), transparent 30%),
    linear-gradient(180deg, #101010 0%, #060606 100%) !important;
  box-shadow: 0 24px 70px rgba(0,0,0,0.34) !important;
}

.article-layout .prob-card h3 {
  font-size: 18px !important;
  letter-spacing: 0.04em;
}

.article-layout .prob-card .muted {
  color: #b8b8b8 !important;
}

.article-layout .meter {
  height: 13px !important;
  border: 1px solid rgba(242,201,76,0.12);
  background: #151515 !important;
}

.article-layout .meter > span {
  background: linear-gradient(90deg, #8a6818, var(--gold), #ffe27a) !important;
  box-shadow: 0 0 24px rgba(242,201,76,0.24) !important;
}

.article-layout .sidebar {
  border-radius: 20px !important;
}

.article-layout .sidebar h3 {
  font-size: 18px !important;
}

@media (max-width: 980px) {
  .article-layout {
    grid-template-columns: 1fr !important;
  }

  .article-layout .prob-card {
    position: relative;
    top: auto;
  }

  .article-main {
    border-radius: 18px !important;
  }

  .article-main #title {
    font-size: clamp(34px, 10vw, 50px) !important;
  }

  .article-main.article-has-crest::before {
    width: 190px;
    height: 190px;
    right: 18px;
    top: 28px;
    opacity: 0.08;
  }

  .article-main .article-body {
    font-size: 16px !important;
  }
}

/* =========================================================
   ARTICLE PAGE POLISH V2
   Wider, cleaner, closer to premium portal article
   ========================================================= */

.article-layout {
  max-width: 1240px !important;
  grid-template-columns: minmax(0, 820px) 320px !important;
  justify-content: center !important;
  gap: 28px !important;
  padding-top: 24px !important;
}

.article-main {
  padding: 22px !important;
  border-radius: 18px !important;
}

/* Put image and headline into stronger editorial rhythm */
.article-main > .article-hero-img {
  margin: 0 0 22px !important;
  max-height: 430px !important;
  border-radius: 14px !important;
  border: 1px solid rgba(242,201,76,0.22) !important;
  box-shadow:
    0 18px 55px rgba(0,0,0,0.42),
    0 0 34px rgba(242,201,76,0.05) !important;
}

/* Stronger title spacing */
.article-main #title {
  max-width: 760px !important;
  font-size: clamp(36px, 4.4vw, 56px) !important;
  line-height: 1.02 !important;
  margin: 18px 0 16px !important;
}

/* Article body more readable */
.article-main .article-body {
  max-width: 760px !important;
  font-size: 17px !important;
  line-height: 1.78 !important;
}

.article-main .article-body p {
  margin-bottom: 17px !important;
}

/* Meta/badge row */
.article-top-meta {
  border-bottom: none !important;
  padding-bottom: 10px !important;
}

.article-top-meta .badge {
  font-size: 10px !important;
}

/* Sidebar tighter and more premium */
.article-layout .prob-card,
.article-layout .sidebar {
  border-radius: 16px !important;
}

.article-layout .prob-card {
  padding: 16px !important;
}

.article-layout .sidebar {
  padding: 16px !important;
}

.article-layout .sidebar li {
  padding-left: 30px !important;
  font-size: 13px !important;
}

/* Header on article page slightly stronger */
.article-layout + *,
.ft-header-inner {
  max-width: 1240px !important;
}

/* Better mobile article */
@media (max-width: 980px) {
  .article-layout {
    grid-template-columns: 1fr !important;
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  .article-main {
    padding: 16px !important;
  }

  .article-main > .article-hero-img {
    max-height: 330px !important;
  }

  .article-main #title {
    font-size: clamp(31px, 9vw, 44px) !important;
  }
}

/* =========================================================
   ARTICLE PAGE FINAL WIDTH/POLISH OVERRIDE
   ========================================================= */

.article-layout {
  max-width: 1320px !important;
  grid-template-columns: minmax(0, 900px) 340px !important;
  gap: 28px !important;
  justify-content: center !important;
  padding: 26px 18px 70px !important;
}

.article-main {
  width: 100% !important;
  padding: 24px !important;
  border-radius: 20px !important;
}

.article-main > .article-hero-img {
  width: 100% !important;
  height: 430px !important;
  max-height: 430px !important;
  object-fit: cover !important;
  object-position: center center !important;
  border-radius: 16px !important;
  margin: 0 0 24px !important;
}

.article-main #title {
  max-width: 820px !important;
  font-size: clamp(42px, 4.8vw, 64px) !important;
  line-height: 1.02 !important;
  margin: 18px 0 18px !important;
}

.article-main .article-body {
  max-width: 820px !important;
  font-size: 18px !important;
  line-height: 1.82 !important;
}

.article-main .article-body p {
  margin-bottom: 19px !important;
}

.article-layout aside {
  width: 100% !important;
}

.article-layout .prob-card,
.article-layout .sidebar {
  width: 100% !important;
}

@media (max-width: 980px) {
  .article-layout {
    grid-template-columns: 1fr !important;
    max-width: 100% !important;
    padding: 16px 14px 60px !important;
  }

  .article-main {
    padding: 16px !important;
  }

  .article-main > .article-hero-img {
    height: auto !important;
    max-height: 360px !important;
  }

  .article-main #title {
    font-size: clamp(32px, 10vw, 48px) !important;
  }
}

/* =========================================================
   FIX ARTICLE SIDEBAR OVERLAP
   ========================================================= */

body .article-layout aside {
  display: flex !important;
  flex-direction: column !important;
  gap: 18px !important;
  align-items: stretch !important;
}

body .article-layout aside .prob-card,
body .article-layout aside .sidebar {
  position: static !important;
  top: auto !important;
  margin: 0 !important;
  z-index: auto !important;
}

body .article-layout aside .prob-card {
  order: 1 !important;
}

body .article-layout aside .sidebar {
  order: 2 !important;
}

body .article-layout .prob-card * ,
body .article-layout .sidebar * {
  box-sizing: border-box !important;
}

body .article-layout .sidebar ul {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

body .article-layout .sidebar li {
  overflow-wrap: anywhere !important;
}

@media (max-width: 1100px) {
  body .article-layout aside {
    gap: 14px !important;
  }
}

/* =========================================================
   HOMEPAGE HERO FINAL POLISH v1
   Premium homepage hero without rebuilding structure
   ========================================================= */

body .hero-integrated {
  min-height: 400px !important;
  border-radius: 18px !important;
}

/* Text side: slightly tighter so CTA is visible on laptop screens */
body .hero-integrated .hero-content {
  width: min(48%, 620px) !important;
  min-height: 400px !important;
  padding: 42px 32px 34px 36px !important;
  justify-content: center !important;
}

/* Main title: premium but less oversized on laptop */
body .hero-integrated h1,
body #heroTitle {
  font-size: clamp(42px, 4.45vw, 58px) !important;
  line-height: 0.98 !important;
  letter-spacing: -0.052em !important;
  max-width: 610px !important;
  margin: 16px 0 14px !important;
}

/* Lead: keep compact */
body .hero-integrated p.lead,
body #heroLead {
  max-width: 500px !important;
  font-size: 15px !important;
  line-height: 1.5 !important;
  margin-bottom: 0 !important;
}

/* CTA: visible higher in the hero */
body .hero-integrated .btn-gold,
body #heroCta {
  margin-top: 14px !important;
  padding: 12px 20px !important;
}

/* Right visual: keep strong composition */
body .hero-integrated .hero-visual {
  left: 44% !important;
  width: auto !important;
}

/* Hero image: a little brighter and better framed */
body .hero-integrated .article-hero-img {
  object-position: 58% center !important;
  filter: brightness(0.94) contrast(1.07) saturate(1.05) !important;
}

/* Background crest: more subtle and less central */
body .hero-integrated.hero-has-crest .hero-visual::before {
  background-position: 45% 28% !important;
  background-size: 38% !important;
  opacity: 0.11 !important;
  filter: blur(0.8px) saturate(0.9) contrast(1.02) !important;
}

/* Keep premium fade, but slightly softer on face */
body .hero-integrated .hero-visual::after {
  background:
    linear-gradient(90deg,
      rgba(5,5,5,0.96) 0%,
      rgba(5,5,5,0.72) 10%,
      rgba(5,5,5,0.24) 24%,
      rgba(5,5,5,0.04) 42%,
      rgba(5,5,5,0.12) 100%
    ),
    linear-gradient(180deg,
      rgba(242,201,76,0.035) 0%,
      rgba(0,0,0,0.00) 36%,
      rgba(255,49,49,0.07) 100%
    ) !important;
}

/* Smaller laptop screens */
@media (max-width: 1366px) {
  body .hero-integrated {
    min-height: 390px !important;
  }

  body .hero-integrated .hero-content {
    min-height: 390px !important;
    width: min(49%, 600px) !important;
    padding: 38px 28px 32px 34px !important;
  }

  body .hero-integrated h1,
  body #heroTitle {
    font-size: clamp(38px, 4.05vw, 54px) !important;
    max-width: 590px !important;
  }

  body .hero-integrated p.lead,
  body #heroLead {
    font-size: 14px !important;
  }
}

/* Mobile / tablet */
@media (max-width: 900px) {
  body .hero-integrated {
    min-height: auto !important;
  }

  body .hero-integrated .hero-content {
    width: 100% !important;
    min-height: auto !important;
    padding: 30px 20px 22px !important;
  }

  body .hero-integrated h1,
  body #heroTitle {
    font-size: clamp(34px, 8vw, 46px) !important;
    line-height: 1.02 !important;
    max-width: 100% !important;
  }

  body .hero-integrated p.lead,
  body #heroLead {
    font-size: 14px !important;
    max-width: 100% !important;
  }

  body .hero-integrated .hero-visual {
    left: auto !important;
    width: 100% !important;
    height: 280px !important;
  }
}

/* =========================================================
   HOMEPAGE HERO ART DIRECTION v2
   Remove large crest watermark, add premium gold spotlight/arcs
   ========================================================= */

/* Keep current hero layout, only change background art direction */
body .hero-integrated {
  position: relative !important;
  overflow: hidden !important;
}

/* Disable crest watermark completely */
body .hero-integrated::before {
  background-image: none !important;
  opacity: 0 !important;
}

body .hero-integrated.hero-has-crest .hero-visual::before,
body .hero-integrated .hero-visual::before {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 2 !important;
  pointer-events: none !important;

  /* New abstract premium art instead of crest */
  background:
    /* gold spotlight behind player */
    radial-gradient(circle at 60% 32%,
      rgba(242,201,76,0.22) 0%,
      rgba(242,201,76,0.12) 16%,
      rgba(242,201,76,0.05) 28%,
      rgba(242,201,76,0.00) 46%
    ),

    /* soft secondary glow */
    radial-gradient(circle at 78% 18%,
      rgba(255,255,255,0.08) 0%,
      rgba(255,255,255,0.04) 14%,
      rgba(255,255,255,0.00) 32%
    ),

    /* subtle gold arc 1 */
    radial-gradient(circle at 36% 56%,
      transparent 0 32%,
      rgba(242,201,76,0.11) 32.6%,
      transparent 33.6%
    ),

    /* subtle gold arc 2 */
    radial-gradient(circle at 28% 58%,
      transparent 0 44%,
      rgba(242,201,76,0.08) 44.5%,
      transparent 45.5%
    ),

    /* subtle red undertone near lower shirt area */
    radial-gradient(circle at 70% 82%,
      rgba(255,49,49,0.09) 0%,
      rgba(255,49,49,0.04) 18%,
      rgba(255,49,49,0.00) 36%
    ),

    /* tiny atmosphere particles */
    radial-gradient(circle at 82% 20%, rgba(255,255,255,0.18) 0 1px, transparent 2px),
    radial-gradient(circle at 72% 34%, rgba(242,201,76,0.20) 0 1px, transparent 2px),
    radial-gradient(circle at 88% 42%, rgba(255,255,255,0.14) 0 1px, transparent 2px),
    radial-gradient(circle at 76% 62%, rgba(242,201,76,0.16) 0 1px, transparent 2px),
    radial-gradient(circle at 92% 74%, rgba(255,255,255,0.10) 0 1px, transparent 2px);

  opacity: 1 !important;
  filter: none !important;
  mix-blend-mode: screen !important;
}

/* Keep fade into text zone, but slightly cleaner */
body .hero-integrated .hero-visual::after {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 4 !important;
  pointer-events: none !important;
  background:
    linear-gradient(90deg,
      rgba(5,5,5,0.97) 0%,
      rgba(5,5,5,0.76) 10%,
      rgba(5,5,5,0.28) 24%,
      rgba(5,5,5,0.05) 42%,
      rgba(5,5,5,0.12) 100%
    ),
    linear-gradient(180deg,
      rgba(242,201,76,0.02) 0%,
      rgba(0,0,0,0.00) 36%,
      rgba(255,49,49,0.06) 100%
    ) !important;
}

/* Player image: keep strong, slightly cleaner focus */
body .hero-integrated .article-hero-img {
  object-position: 58% center !important;
  filter: brightness(0.95) contrast(1.07) saturate(1.05) !important;
}

/* Slightly clearer title side while keeping current composition */
body .hero-integrated .hero-content {
  z-index: 8 !important;
}

/* Small screens: simplify decorative art */
@media (max-width: 900px) {
  body .hero-integrated.hero-has-crest .hero-visual::before,
  body .hero-integrated .hero-visual::before {
    background:
      radial-gradient(circle at 62% 30%,
        rgba(242,201,76,0.18) 0%,
        rgba(242,201,76,0.08) 20%,
        rgba(242,201,76,0.00) 42%
      ),
      radial-gradient(circle at 76% 78%,
        rgba(255,49,49,0.08) 0%,
        rgba(255,49,49,0.00) 34%
      ) !important;
    mix-blend-mode: screen !important;
  }
}

/* =========================================================
   HOMEPAGE HERO FINAL ART DIRECTION v22
   Clean premium visual (no giant crest watermark)
   ========================================================= */

/* hard kill old crest watermark layers */
body .hero.hero-has-crest::after,
body .hero-integrated::before,
body .hero-integrated::after,
body .hero-integrated.hero-has-crest .hero-visual::before {
  background-image: none !important;
  content: none !important;
  display: none !important;
  opacity: 0 !important;
}

/* preserve integrated layout and keep hero clean */
body .hero-integrated {
  position: relative !important;
  overflow: hidden !important;
  isolation: isolate !important;
  background:
    linear-gradient(90deg, #070707 0%, #070707 50%, #060606 100%) !important;
}

/* text side remains dominant and readable */
body .hero-integrated .hero-content {
  position: relative !important;
  z-index: 8 !important;
}

/* right visual panel with premium abstract atmosphere (no crest) */
body .hero-integrated .hero-visual {
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 62% !important;
  overflow: hidden !important;
  z-index: 2 !important;
}

body .hero-integrated .hero-visual::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 3 !important;
  pointer-events: none !important;
  background:
    radial-gradient(circle at 62% 28%, rgba(242,201,76,0.18) 0%, rgba(242,201,76,0.08) 20%, rgba(242,201,76,0.00) 44%),
    radial-gradient(circle at 72% 14%, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.00) 26%),
    radial-gradient(circle at 38% 58%, transparent 0 34%, rgba(242,201,76,0.10) 34.5%, transparent 35.5%),
    radial-gradient(circle at 30% 60%, transparent 0 44%, rgba(242,201,76,0.07) 44.4%, transparent 45.4%),
    radial-gradient(circle at 68% 82%, rgba(255,49,49,0.07) 0%, rgba(255,49,49,0.00) 34%),
    radial-gradient(circle at 82% 20%, rgba(255,255,255,0.11) 0 1px, transparent 2px),
    radial-gradient(circle at 76% 40%, rgba(242,201,76,0.14) 0 1px, transparent 2px),
    radial-gradient(circle at 88% 66%, rgba(255,255,255,0.10) 0 1px, transparent 2px) !important;
  opacity: 0.95 !important;
  mix-blend-mode: screen !important;
}

/* premium soft split fade between text and image */
body .hero-integrated .hero-visual::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 4 !important;
  pointer-events: none !important;
  background:
    linear-gradient(90deg,
      rgba(5,5,5,0.98) 0%,
      rgba(5,5,5,0.84) 11%,
      rgba(5,5,5,0.45) 27%,
      rgba(5,5,5,0.12) 44%,
      rgba(5,5,5,0.06) 66%,
      rgba(5,5,5,0.18) 100%
    ),
    linear-gradient(180deg,
      rgba(242,201,76,0.02) 0%,
      rgba(0,0,0,0.00) 38%,
      rgba(255,49,49,0.05) 100%
    ) !important;
}

/* keep player face visible and premium */
body .hero-integrated .article-hero-img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: 58% center !important;
  filter: brightness(1.03) contrast(1.06) saturate(1.05) !important;
}

@media (max-width: 1100px) {
  body .hero-integrated .hero-visual {
    width: 60% !important;
  }
}

@media (max-width: 760px) {
  body .hero-integrated .hero-visual {
    position: relative !important;
    width: 100% !important;
    height: 280px !important;
  }

  body .hero-integrated .hero-visual::before {
    background:
      radial-gradient(circle at 62% 28%, rgba(242,201,76,0.14) 0%, rgba(242,201,76,0.00) 42%),
      radial-gradient(circle at 72% 80%, rgba(255,49,49,0.06) 0%, rgba(255,49,49,0.00) 34%) !important;
    opacity: 0.9 !important;
  }
}


/* =========================================================
   HOMEPAGE HERO TITLE POLISH v23
   Slightly cleaner headline wrapping
   ========================================================= */

body .hero-integrated .hero-content {
  width: min(52%, 670px) !important;
}

body .hero-integrated h1,
body #heroTitle {
  font-size: clamp(38px, 4.1vw, 56px) !important;
  max-width: 670px !important;
  line-height: 1.01 !important;
  letter-spacing: -0.048em !important;
}

body .hero-integrated .hero-visual {
  width: 60% !important;
}

@media (max-width: 1366px) {
  body .hero-integrated h1,
  body #heroTitle {
    font-size: clamp(36px, 3.8vw, 52px) !important;
    max-width: 640px !important;
  }
}

@media (max-width: 900px) {
  body .hero-integrated .hero-content {
    width: 100% !important;
  }

  body .hero-integrated h1,
  body #heroTitle {
    font-size: clamp(34px, 8vw, 46px) !important;
    max-width: 100% !important;
  }
}

/* =========================================================
   HOMEPAGE HERO TITLE REAL WRAP v24
   Wider hero + wider text area for premium headline wrapping
   ========================================================= */

/* Make homepage hero card wider on laptop/desktop */
body .hero-integrated {
  width: min(92vw, 1080px) !important;
  max-width: 1080px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Give headline more real horizontal room */
body .hero-integrated .hero-content {
  width: min(58%, 650px) !important;
  max-width: 650px !important;
  padding-left: 36px !important;
  padding-right: 18px !important;
}

/* Move visual a bit right so text has room, without changing art direction */
body .hero-integrated .hero-visual {
  left: 45% !important;
  width: auto !important;
}

/* Actual title wrap fix */
body .hero-integrated h1,
body #heroTitle {
  font-size: clamp(36px, 3.45vw, 50px) !important;
  line-height: 1.02 !important;
  letter-spacing: -0.045em !important;
  max-width: 650px !important;
  width: 100% !important;
}

/* Keep CTA and lead compact */
body .hero-integrated p.lead,
body #heroLead {
  max-width: 560px !important;
}

@media (max-width: 1366px) {
  body .hero-integrated {
    width: min(92vw, 1040px) !important;
    max-width: 1040px !important;
  }

  body .hero-integrated .hero-content {
    width: min(59%, 635px) !important;
    max-width: 635px !important;
  }

  body .hero-integrated h1,
  body #heroTitle {
    font-size: clamp(34px, 3.35vw, 48px) !important;
    max-width: 635px !important;
  }

  body .hero-integrated .hero-visual {
    left: 46% !important;
  }
}

@media (max-width: 900px) {
  body .hero-integrated {
    width: 100% !important;
    max-width: 100% !important;
  }

  body .hero-integrated .hero-content {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  body .hero-integrated .hero-visual {
    left: auto !important;
    width: 100% !important;
  }

  body .hero-integrated h1,
  body #heroTitle {
    font-size: clamp(34px, 8vw, 46px) !important;
    max-width: 100% !important;
  }
}

/* =========================================================
   HOMEPAGE HERO ALIGN WITH CONTENT v25
   Make hero rectangle align with article grid below
   ========================================================= */

/* Hero should use full width of the same parent/container as Najnovije */
body .hero-integrated {
  width: 100% !important;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* Keep the improved headline wrap inside the wider hero */
body .hero-integrated .hero-content {
  width: min(54%, 680px) !important;
  max-width: 680px !important;
  padding-left: 36px !important;
  padding-right: 20px !important;
}

/* Move image panel slightly right to preserve clean text area */
body .hero-integrated .hero-visual {
  left: 46% !important;
  width: auto !important;
}

/* Keep title elegant after widening hero */
body .hero-integrated h1,
body #heroTitle {
  font-size: clamp(36px, 3.35vw, 50px) !important;
  max-width: 680px !important;
  line-height: 1.02 !important;
  letter-spacing: -0.045em !important;
}

@media (max-width: 1366px) {
  body .hero-integrated .hero-content {
    width: min(55%, 660px) !important;
    max-width: 660px !important;
  }

  body .hero-integrated h1,
  body #heroTitle {
    font-size: clamp(34px, 3.25vw, 48px) !important;
    max-width: 660px !important;
  }

  body .hero-integrated .hero-visual {
    left: 46% !important;
  }
}

@media (max-width: 900px) {
  body .hero-integrated {
    width: 100% !important;
  }

  body .hero-integrated .hero-content {
    width: 100% !important;
    max-width: 100% !important;
  }

  body .hero-integrated .hero-visual {
    left: auto !important;
    width: 100% !important;
  }
}

/* =========================================================
   HOMEPAGE HERO TITLE BALANCE v26
   Keep hero aligned, but make headline wrap more editorial
   ========================================================= */

body .hero-integrated .hero-content {
  width: min(52%, 620px) !important;
  max-width: 620px !important;
}

body .hero-integrated h1,
body #heroTitle {
  max-width: 600px !important;
  font-size: clamp(36px, 3.25vw, 48px) !important;
  line-height: 1.02 !important;
  letter-spacing: -0.045em !important;
}

body .hero-integrated .hero-visual {
  left: 47% !important;
}

@media (max-width: 1366px) {
  body .hero-integrated .hero-content {
    width: min(52%, 600px) !important;
    max-width: 600px !important;
  }

  body .hero-integrated h1,
  body #heroTitle {
    max-width: 580px !important;
    font-size: clamp(34px, 3.15vw, 46px) !important;
  }

  body .hero-integrated .hero-visual {
    left: 47% !important;
  }
}

/* =========================================================
   PUBLIC HEADER / LOGO POLISH SAFE v28
   Scoped to body.ft-public-site only — does not affect admin.html
   ========================================================= */

body.ft-public-site header.ft-header {
  border-bottom: 1px solid rgba(242, 201, 76, 0.22) !important;
  background: linear-gradient(180deg, #080808 0%, #030303 100%) !important;
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.55);
}

body.ft-public-site header.ft-header .ft-header-inner {
  min-height: unset !important;
  padding: 10px 20px !important;
  align-items: center !important;
}

body.ft-public-site header.ft-header .ft-logo {
  display: flex !important;
  align-items: center !important;
  gap: 13px !important;
  text-transform: none !important;
  letter-spacing: normal !important;
  font-weight: 800;
}

body.ft-public-site header.ft-header .ft-logo > div:last-child {
  display: flex !important;
  flex-direction: column !important;
  gap: 3px !important;
  justify-content: center !important;
  min-width: 0;
}

body.ft-public-site header.ft-header .ft-zone {
  font-size: 10px !important;
  font-weight: 800 !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  color: rgba(242, 201, 76, 0.78) !important;
  line-height: 1.2 !important;
}

body.ft-public-site header.ft-header .ft-mark {
  width: 44px !important;
  height: 44px !important;
  border-radius: 11px !important;
  font-size: 15px !important;
  font-weight: 900 !important;
  letter-spacing: 0.04em !important;
  color: #f2c94c !important;
  border: 1px solid rgba(242, 201, 76, 0.52) !important;
  background:
    radial-gradient(circle at 34% 26%, rgba(242, 201, 76, 0.16), transparent 55%),
    linear-gradient(158deg, #14110a 0%, #070605 52%, #0a0a0a 100%) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 0 0 1px rgba(0, 0, 0, 0.5),
    0 4px 16px rgba(0, 0, 0, 0.5),
    0 0 22px rgba(242, 201, 76, 0.05) !important;
}

body.ft-public-site header.ft-header .ft-logo > div:last-child > div:last-child {
  font-size: clamp(17px, 2vw, 20px) !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em !important;
  line-height: 1.18 !important;
  color: #f4f4f4 !important;
}

body.ft-public-site header.ft-header .ft-logo > div:last-child > div:last-child a {
  color: inherit !important;
  text-decoration: none !important;
  transition: color 0.15s ease;
}

body.ft-public-site header.ft-header .ft-logo > div:last-child > div:last-child a:hover {
  color: var(--gold) !important;
  text-decoration: none !important;
}

body.ft-public-site header.ft-header .ft-nav {
  gap: 4px 8px !important;
  align-items: center !important;
}

body.ft-public-site header.ft-header .ft-nav a {
  position: relative;
  display: inline-block;
  padding: 7px 11px !important;
  border-radius: 999px !important;
  font-weight: 800 !important;
  font-size: 11px !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: #d4d4d4 !important;
  border: 1px solid transparent !important;
  background: transparent !important;
  text-decoration: none !important;
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

body.ft-public-site header.ft-header .ft-nav a:hover {
  color: var(--gold) !important;
  border-color: rgba(242, 201, 76, 0.22) !important;
  background: rgba(242, 201, 76, 0.06) !important;
  text-decoration: none !important;
}

body.ft-public-site header.ft-header .ft-nav a::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 4px;
  height: 1px;
  border-radius: 999px;
  background: var(--gold);
  opacity: 0.85;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.18s ease;
}

body.ft-public-site header.ft-header .ft-nav a:hover::after {
  transform: scaleX(1);
}

@media (max-width: 720px) {
  body.ft-public-site header.ft-header .ft-header-inner {
    flex-wrap: wrap;
    row-gap: 10px;
  }

  body.ft-public-site header.ft-header .ft-nav {
    width: 100%;
    justify-content: flex-start;
  }

  body.ft-public-site header.ft-header .ft-nav a {
    padding: 6px 9px !important;
    font-size: 10px !important;
    letter-spacing: 0.09em !important;
  }
}

/* Homepage visual image cards + sidebar mini news */
.visual-image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.visual-image-card {
  border: 1px solid rgba(242, 201, 76, 0.2);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(8, 8, 8, 0.85);
}

.visual-image-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.visual-image-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  background: #111;
}

.visual-image-body {
  padding: 10px 12px 12px;
}

.visual-image-title {
  margin: 8px 0 0;
  font-size: 15px;
  line-height: 1.35;
}

.sidebar-news-viewport {
  max-height: 420px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(242, 201, 76, 0.35);
  border-radius: 12px;
  background: rgba(8, 8, 8, 0.96);
  padding: 8px;
}

.sidebar-news-track {
  display: flex;
  flex-direction: column;
  gap: 10px;
  animation: sidebarNewsScroll 35s linear infinite;
}

.sidebar-news-viewport:hover .sidebar-news-track {
  animation-play-state: paused;
}

.sidebar-news-viewport.sidebar-news-static .sidebar-news-track {
  animation: none;
}

@keyframes sidebarNewsScroll {
  from { transform: translateY(0); }
  to { transform: translateY(-50%); }
}

.sidebar-news-item {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(242, 201, 76, 0.18);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.45);
  padding: 8px;
}

.sidebar-news-item-body {
  min-width: 0;
}

.sidebar-news-thumb {
  width: 84px;
  height: 52px;
  border-radius: 8px;
  object-fit: cover;
  background: #151515;
}

.sidebar-news-thumb.sidebar-news-thumb-crest {
  object-fit: contain;
  padding: 5px;
  background: #111;
}

.sidebar-news-title {
  margin: 0;
  font-size: 13px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.96);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.sidebar-news-date {
  margin-top: 4px;
  font-size: 11px;
  opacity: 0.72;
}

/* =========================================================
   Homepage premium 3-column layout (index / homepage-preview)
   Scoped to .hp-premium-layout — does not affect article pages
   ========================================================= */

.ft-home-wrap.ft-page-wrap {
  box-sizing: border-box;
  width: 100%;
  max-width: 1560px;
  margin: 0 auto;
  padding: 0 24px;
}

body.ft-public-site .layout.hp-premium-layout {
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 28px 0 60px;
  display: grid;
  grid-template-columns: 220px minmax(720px, 1fr) 300px;
  gap: 20px;
  align-items: start;
}

body.ft-public-site header.ft-header .ft-header-inner {
  max-width: 1560px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px !important;
  padding-right: 24px !important;
}

.hp-main-column {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hp-main-column .hero.hero-integrated {
  grid-column: auto;
  width: 100%;
  max-width: 100%;
}

.hp-sidebar {
  min-width: 0;
}

.hp-sidebar-left .hp-rail-panel {
  position: static;
  top: auto;
  max-height: 475px;
  overflow-y: auto;
  overflow-x: hidden;
  /* Match Tok vijesti / sidebar-news-viewport — dark card, gold line */
  border: 1px solid rgba(242, 201, 76, 0.35);
  border-radius: 12px;
  background: rgba(8, 8, 8, 0.96);
  padding: 8px;
  scrollbar-width: thin;
  scrollbar-color: rgba(242, 201, 76, 0.55) rgba(20, 20, 20, 0.95);
}

.hp-sidebar-left .hp-rail-panel::-webkit-scrollbar {
  width: 5px;
}

.hp-sidebar-left .hp-rail-panel::-webkit-scrollbar-track {
  background: rgba(14, 14, 14, 0.95);
  border-radius: 100px;
}

.hp-sidebar-left .hp-rail-panel::-webkit-scrollbar-thumb {
  background: linear-gradient(
    180deg,
    rgba(242, 201, 76, 0.58) 0%,
    rgba(242, 201, 76, 0.32) 100%
  );
  border-radius: 100px;
}

.hp-sidebar-left .hp-rail-panel::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(
    180deg,
    rgba(242, 201, 76, 0.78) 0%,
    rgba(242, 201, 76, 0.48) 100%
  );
}

.hp-club-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hp-club-list li {
  padding: 0;
  margin: 0;
  border-bottom: 1px solid rgba(242, 201, 76, 0.12);
}

.hp-club-list li:last-child {
  border-bottom: none;
}

.hp-club-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 4px;
  text-decoration: none;
  color: #e8e8e8;
  font-size: 13px;
  transition: background 0.15s ease;
  border-radius: 8px;
}

.hp-club-row:hover {
  background: rgba(242, 201, 76, 0.06);
}

.hp-club-crest {
  width: 32px;
  height: 32px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
}

.hp-club-crest-ph {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
  color: var(--gold);
  flex-shrink: 0;
}

.hp-club-text {
  flex: 1;
  min-width: 0;
}

.hp-club-name {
  display: block;
  font-weight: 700;
  line-height: 1.25;
}

.hp-club-arrow {
  flex-shrink: 0;
  opacity: 0.45;
  font-size: 14px;
}

.hp-featured-section {
  margin-top: 20px;
}

.hp-featured-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.hp-featured-card {
  margin: 0;
  min-height: 0;
}

.hp-featured-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(242, 201, 76, 0.28);
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(165deg, rgba(18, 18, 18, 0.98), rgba(6, 6, 6, 0.98));
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.hp-featured-link:hover {
  border-color: rgba(242, 201, 76, 0.45);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
}

.hp-featured-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #111;
}

.hp-featured-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hp-featured-img-ph {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 900;
  color: rgba(242, 201, 76, 0.35);
  background: radial-gradient(circle at 50% 40%, rgba(242, 201, 76, 0.12), transparent 55%), #0a0a0a;
}

.hp-featured-body {
  padding: 14px 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.hp-featured-title {
  margin: 0;
  font-size: 17px;
  line-height: 1.3;
  font-weight: 800;
  color: var(--gold);
}

.hp-featured-date {
  font-size: 12px;
}

.hp-speculation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.hp-spec-card {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 14px;
  align-items: stretch;
  min-height: 0;
}

.hp-spec-thumb-wrap {
  border-radius: 10px;
  overflow: hidden;
  background: #111;
  min-height: 88px;
}

.hp-spec-thumb {
  width: 100%;
  height: 100%;
  min-height: 88px;
  object-fit: cover;
  display: block;
}

.hp-spec-thumb-ph {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: rgba(242, 201, 76, 0.3);
}

.hp-spec-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.hp-spec-body h3 {
  margin: 0;
  font-size: 15px;
}

.hp-rail-panel {
  border: 1px solid rgba(242, 201, 76, 0.22);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(14, 14, 14, 0.98), rgba(6, 6, 6, 0.98));
  padding: 14px 14px 16px;
}

.hp-rail-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-bottom: 12px;
}

.hp-rail-block h3 {
  margin: 0 0 6px;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--gold);
}

.hp-rail-flame {
  margin-right: 4px;
}

.hp-rail-note {
  margin: 0 0 10px;
  font-size: 11px;
  line-height: 1.35;
}

.hp-rail-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hp-rail-list li {
  padding: 0;
  margin: 0 0 10px;
  border: none;
}

.hp-rail-list li:last-child {
  margin-bottom: 0;
}

.hp-rail-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  text-decoration: none;
  color: inherit;
  padding: 8px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.15s ease, background 0.15s ease;
}

.hp-rail-item:hover {
  border-color: rgba(242, 201, 76, 0.22);
  background: rgba(242, 201, 76, 0.04);
}

.hp-rail-thumb {
  width: 52px;
  height: 40px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}

.hp-rail-thumb-ph {
  width: 52px;
  height: 40px;
  border-radius: 6px;
  background: #141414;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
  color: rgba(242, 201, 76, 0.35);
  flex-shrink: 0;
}

.hp-rail-item-title {
  display: block;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.35;
  color: #ececec;
}

.hp-rail-item-meta {
  display: block;
  margin-top: 4px;
  font-size: 11px;
}

.hp-transfer-pred-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hp-transfer-pred-list li {
  padding: 0;
  margin: 0 0 10px;
  border: none;
}

.hp-transfer-empty {
  padding: 8px 4px;
  font-size: 12px;
}

.hp-pred-row {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  padding: 8px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
}

.hp-pred-row:hover {
  border-color: rgba(242, 201, 76, 0.2);
}

.hp-pred-crest {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 8px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.04);
}

.hp-pred-crest-ph {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #151515;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
  color: var(--gold);
  flex-shrink: 0;
}

.hp-pred-main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hp-pred-title {
  font-size: 12px;
  font-weight: 650;
  line-height: 1.35;
  color: #e8e8e8;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hp-pred-pct {
  font-size: 13px;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 0.02em;
}

.hp-rail-block-scroll .sidebar-news-viewport {
  max-height: 320px;
}

@media (max-width: 1200px) {
  body.ft-public-site .layout.hp-premium-layout {
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 20px;
  }

  .hp-sidebar-left {
    display: none !important;
  }
}

@media (max-width: 1050px) {
  body.ft-public-site .layout.hp-premium-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hp-sidebar-right {
    order: 10;
    max-width: 460px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 900px) {
  body.ft-public-site .layout.hp-premium-layout {
    padding-top: 20px;
    padding-bottom: 48px;
  }

  .hp-glasine-grid.hp-glasine-three {
    grid-template-columns: 1fr;
  }

  .hp-featured-grid {
    grid-template-columns: 1fr;
  }

  .hp-spec-card {
    grid-template-columns: 100px minmax(0, 1fr);
  }
}

@media (max-width: 600px) {
  .ft-home-wrap.ft-page-wrap {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hp-spec-card {
    grid-template-columns: 1fr;
  }

  .hp-spec-thumb-wrap {
    max-height: 160px;
  }
}

/* —— Homepage sections (visual repair: hero copy, glasine, novo) —— */

body.ft-public-site .hp-main-hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: none !important;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  box-sizing: border-box;
}

body.ft-public-site .hp-main-hero .hero-content::after {
  content: "";
  position: absolute;
  inset: -4% -8% -6% -10%;
  background: radial-gradient(
    ellipse 118% 110% at 0% 52%,
    rgba(0, 0, 0, 0.34) 0%,
    rgba(0, 0, 0, 0.12) 52%,
    transparent 78%
  );
  z-index: -1;
  pointer-events: none;
}

body.ft-public-site .hp-hero-title,
body.ft-public-site .hp-hero-title .hero-title-balanced {
  display: block;
  font-size: clamp(32px, 3.2vw, 52px) !important;
  line-height: 1.1 !important;
  letter-spacing: -0.026em;
  font-weight: 800;
  max-width: min(20em, 100%);
  word-break: normal !important;
  overflow-wrap: normal;
  hyphens: manual;
  text-wrap: balance;
  white-space: normal;
  color: #fff !important;
}

body.ft-public-site .hp-hero-title .hero-title-balanced {
  color: inherit !important;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55), 0 1px 0 rgba(0, 0, 0, 0.35);
}

body.ft-public-site .hp-hero-title .hero-title-entity {
  color: var(--gold) !important;
  font-weight: 850;
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.55);
}

body.ft-public-site .hp-main-hero p.lead {
  max-width: 42ch;
  line-height: 1.55;
}

.hp-glasine-section {
  margin-top: 8px;
}

.hp-glasine-grid.hp-glasine-three {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  align-items: stretch;
}

.hp-glasine-card {
  min-height: 0;
  margin: 0;
}

.hp-glasine-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none !important;
  color: inherit;
  border: 1px solid rgba(242, 201, 76, 0.3);
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(168deg, rgba(16, 16, 16, 0.99), rgba(4, 4, 4, 0.99));
  transition: border-color 0.16s ease, box-shadow 0.16s ease;
}

.hp-glasine-link:hover {
  border-color: rgba(242, 201, 76, 0.5);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.5);
}

.hp-glasine-link:hover .hp-glasine-title {
  color: #fafafa !important;
}

.hp-glasine-link:hover .hp-glasine-title .hero-title-entity {
  color: var(--gold) !important;
}

.hp-glasine-media {
  aspect-ratio: 16 / 9;
  background: #0c0c0c;
  overflow: hidden;
}

.hp-glasine-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hp-glasine-img-ph {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 900;
  color: rgba(242, 201, 76, 0.3);
}

.hp-glasine-body {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  min-width: 0;
}

.hp-glasine-title {
  margin: 0;
  font-size: clamp(16px, 1.28vw, 18px);
  line-height: 1.28;
  font-weight: 750;
  color: #f2f2f2 !important;
  word-break: normal !important;
  overflow-wrap: normal !important;
  hyphens: manual;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hp-glasine-title .hero-title-balanced {
  color: inherit !important;
}

.hp-glasine-title .hero-title-entity {
  color: var(--gold) !important;
  font-weight: 800;
}

.hp-glasine-prob {
  margin-top: 4px;
  font-size: 11px;
}

.hp-novo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 18px 20px;
  align-items: stretch;
}

.hp-novo-card {
  display: flex;
  flex-direction: column;
  padding: 0 !important;
  overflow: hidden;
  border-radius: 14px;
  min-height: 0;
  align-items: stretch;
}

.hp-novo-thumb-wrap {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 0;
  overflow: hidden;
  background: #101010;
  flex-shrink: 0;
}

.hp-novo-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hp-novo-thumb-ph {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 120px;
  font-size: 18px;
  font-weight: 900;
  color: rgba(242, 201, 76, 0.28);
}

.hp-novo-card-main {
  padding: 12px 14px 14px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hp-novo-title {
  margin: 0;
  font-size: clamp(16px, 1.22vw, 18px);
  line-height: 1.28;
  font-weight: 750;
  word-break: normal !important;
  overflow-wrap: normal !important;
  hyphens: manual;
}

.hp-novo-title a {
  color: #f0f0f0;
  text-decoration: none;
}

.hp-novo-title a:hover {
  color: var(--gold);
}

.hp-novo-date {
  font-size: 12px;
}

.hp-novo-prob {
  margin-top: 4px;
  font-size: 11px;
}

.hp-transfer-pred-list .hp-pred-row-layout {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr) 18px 38px 52px;
  gap: 8px;
  align-items: center;
  text-decoration: none;
  color: inherit;
  padding: 8px 6px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
}

.hp-pred-rank {
  font-size: 11px;
  font-weight: 800;
  color: rgba(242, 201, 76, 0.55);
  text-align: center;
}

.hp-pred-namestack {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.hp-pred-line1,
.hp-pred-line2 {
  display: block;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.25;
  color: #ececec;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hp-pred-trend {
  font-size: 14px;
  color: rgba(242, 201, 76, 0.85);
  text-align: center;
}

.hp-transfer-pred-list .hp-pred-pct {
  font-size: 13px;
  font-weight: 900;
  text-align: right;
}

.hp-pred-pct.hp-pct-low {
  color: #f2994a !important;
}

.hp-pred-pct.hp-pct-high {
  color: #27ae60 !important;
}

/* Club page */
.club-page-wrap .club-page-main {
  padding: 28px 0 60px;
  max-width: 1100px;
  margin: 0 auto;
}

.club-page-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(242, 201, 76, 0.2);
}

.club-page-crest-slot {
  flex-shrink: 0;
}

.club-page-crest-img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
  padding: 6px;
}

.club-page-crest-ph {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
  color: var(--gold);
  background: #111;
}

.club-page-title {
  margin: 0;
  font-size: clamp(22px, 2.5vw, 30px);
  color: var(--gold);
  font-weight: 850;
  line-height: 1.2;
}

.club-page-sub {
  margin: 6px 0 0;
}

.club-empty-msg {
  margin-top: 12px;
}

/* Single-article club page: keep card proportions like NOVO grid, not stretched */
.club-articles-grid.club-articles-grid--single {
  max-width: 480px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  grid-template-columns: 1fr;
}

.club-articles-grid--single .hp-novo-card {
  max-width: 100%;
}

.club-articles-grid--single .hp-novo-thumb-wrap {
  max-height: 180px;
}

@media (max-width: 900px) {
  .hp-glasine-grid.hp-glasine-three {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .hp-novo-thumb-wrap {
    aspect-ratio: 16 / 10;
  }

  body.ft-public-site .hp-transfer-pred-list .hp-pred-row-layout {
    grid-template-columns: 20px minmax(0, 1fr) 16px 34px 48px;
    gap: 6px;
  }
}

/* —— Visual repair: homepage hero flex split + disable photo overlays (scoped) —— */

body.ft-public-site .hp-main-column .hero.hero-integrated.hp-main-hero {
  display: flex !important;
  flex-direction: row !important;
  align-items: stretch !important;
  grid-template-columns: unset !important;
  gap: 0 !important;
  padding: 0 !important;
  min-height: min(400px, 52vw);
}

body.ft-public-site .hp-main-column .hero.hero-integrated.hp-main-hero::before,
body.ft-public-site .hp-main-column .hero.hero-integrated.hp-main-hero::after {
  display: none !important;
  content: none !important;
  opacity: 0 !important;
}

body.ft-public-site .hp-main-column .hero.hero-integrated.hp-main-hero > .hero-content {
  flex: 1 1 46%;
  max-width: 48%;
  min-width: min(280px, 46%);
  padding: 28px 24px 28px 28px !important;
  margin: 0 !important;
  justify-content: center;
}

body.ft-public-site .hp-main-column .hero.hero-integrated.hp-main-hero > .hero-visual {
  flex: 1 1 54%;
  min-width: 0;
  max-width: 56%;
  padding: 16px 18px 16px 8px !important;
  background: transparent !important;
}

body.ft-public-site .hp-main-column .hero.hero-integrated.hp-main-hero .hero-visual::before {
  display: none !important;
  content: none !important;
  opacity: 0 !important;
}

body.ft-public-site .hp-main-column .hero.hero-integrated.hp-main-hero .hero-visual::after {
  display: block !important;
  content: "" !important;
  opacity: 1 !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 5 !important;
  pointer-events: none !important;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.38) 38%,
    rgba(0, 0, 0, 0.1) 70%,
    rgba(0, 0, 0, 0) 100%
  ) !important;
}

body.ft-public-site .hp-main-column .hero.hero-integrated.hp-main-hero .article-hero-img,
body.ft-public-site .hp-main-column .hero.hero-integrated.hp-main-hero .image-placeholder {
  filter: none !important;
  opacity: 1 !important;
  -webkit-mask-image: none !important;
  mask-image: none !important;
}

body.ft-public-site .hp-main-column .hero.hero-integrated.hp-main-hero .article-hero-img {
  object-position: 56% 18%;
}

@media (max-width: 900px) {
  body.ft-public-site .hp-main-column .hero.hero-integrated.hp-main-hero {
    flex-direction: column !important;
    min-height: unset !important;
  }

  body.ft-public-site .hp-main-column .hero.hero-integrated.hp-main-hero > .hero-content {
    flex: 1 1 auto !important;
    max-width: 100% !important;
    min-width: 0 !important;
    padding: 22px 18px !important;
  }

  body.ft-public-site .hp-main-column .hero.hero-integrated.hp-main-hero > .hero-visual {
    flex: 0 0 auto !important;
    max-width: 100% !important;
    padding: 12px 14px 18px !important;
  }

  body.ft-public-site .hp-main-column .hero.hero-integrated.hp-main-hero .article-hero-img {
    object-position: center top;
  }
}

/* =========================================================
   NEW AGENT VISUAL + NAV FIX (v36)
   - Smaller, sport-portal headline (clamp 30 / 2.8vw / 46)
   - Bottom-to-top hero fade (no horizontal wipe over face)
   - Remove counter numbers from KLUBOVI / TRENDING / NAJČITANIJE
   - Keep TRANSFER PREDVIĐANJA numbers as-is
   ========================================================= */

/* Homepage hero headline — final, smaller, sport-portal rhythm */
body.ft-public-site .hp-main-column .hp-main-hero .hp-hero-title,
body.ft-public-site .hp-main-column .hp-main-hero .hp-hero-title .hero-title-balanced,
body.ft-public-site .hp-main-column .hp-main-hero h1#heroTitle,
body.ft-public-site .hp-main-column .hp-main-hero h1#heroTitle .hero-title-balanced {
  font-size: clamp(30px, 2.8vw, 46px) !important;
  line-height: 1.1 !important;
  letter-spacing: -0.028em !important;
  font-weight: 800 !important;
  max-width: min(680px, 100%) !important;
  width: 100% !important;
  word-break: normal !important;
  overflow-wrap: normal !important;
  hyphens: manual !important;
  text-wrap: balance !important;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45) !important;
}

@media (max-width: 900px) {
  body.ft-public-site .hp-main-column .hp-main-hero .hp-hero-title,
  body.ft-public-site .hp-main-column .hp-main-hero .hp-hero-title .hero-title-balanced,
  body.ft-public-site .hp-main-column .hp-main-hero h1#heroTitle,
  body.ft-public-site .hp-main-column .hp-main-hero h1#heroTitle .hero-title-balanced {
    font-size: clamp(26px, 6.4vw, 36px) !important;
    line-height: 1.12 !important;
    max-width: 100% !important;
  }
}

/* Make sure the right hero panel is part of the flex layout (not absolute) so the
   bottom-to-top fade lives on the photo area only, not as a horizontal wipe. */
body.ft-public-site .hp-main-column .hero.hero-integrated.hp-main-hero > .hero-visual {
  position: relative !important;
  top: auto !important;
  right: auto !important;
  bottom: auto !important;
  left: auto !important;
  width: auto !important;
  overflow: hidden !important;
  background: #050505 !important;
}

/* Disable any decorative ::before art on the hero visual (was producing horizontal wipe halos) */
body.ft-public-site .hp-main-column .hero.hero-integrated.hp-main-hero .hero-visual::before,
body.ft-public-site .hp-main-column .hero.hero-integrated.hp-main-hero.hero-has-crest .hero-visual::before {
  content: none !important;
  display: none !important;
  background: none !important;
  background-image: none !important;
  opacity: 0 !important;
}

/* Single bottom-to-top fade on photo (so face stays clean, only the bottom darkens) */
body.ft-public-site .hp-main-column .hero.hero-integrated.hp-main-hero .hero-visual::after {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 5 !important;
  pointer-events: none !important;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.62) 0%,
    rgba(0, 0, 0, 0.32) 38%,
    rgba(0, 0, 0, 0.08) 70%,
    rgba(0, 0, 0, 0) 100%
  ) !important;
  opacity: 1 !important;
  filter: none !important;
  mix-blend-mode: normal !important;
}

/* Keep the player photo natural — no heavy filter/mask */
body.ft-public-site .hp-main-column .hero.hero-integrated.hp-main-hero .article-hero-img {
  filter: none !important;
  opacity: 1 !important;
  -webkit-mask-image: none !important;
  mask-image: none !important;
  object-position: 56% 22% !important;
}

/* Soft local panel behind text (not a horizontal wipe across the photo) */
body.ft-public-site .hp-main-column .hero.hero-integrated.hp-main-hero > .hero-content {
  position: relative !important;
  z-index: 8 !important;
}
body.ft-public-site .hp-main-column .hero.hero-integrated.hp-main-hero > .hero-content::before {
  content: "" !important;
  position: absolute !important;
  inset: -10% -8% -10% -10% !important;
  z-index: -1 !important;
  pointer-events: none !important;
  background: radial-gradient(
    ellipse 110% 90% at 12% 50%,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.28) 48%,
    rgba(0, 0, 0, 0) 76%
  ) !important;
}

/* Sidebar counter numbers — only TRANSFER PREDVIĐANJA keeps them */
body.ft-public-site .hp-club-list,
body.ft-public-site .hp-rail-list {
  counter-reset: none !important;
}
body.ft-public-site .hp-club-list li,
body.ft-public-site .hp-rail-list li {
  padding-left: 0 !important;
}
body.ft-public-site .hp-club-list li::before,
body.ft-public-site .hp-rail-list li::before,
body.ft-public-site .sidebar .hp-club-list li::before,
body.ft-public-site .sidebar .hp-rail-list li::before {
  content: none !important;
  display: none !important;
  counter-increment: none !important;
}

/* TRANSFER PREDVIĐANJA — explicitly keep numbers (handled by inline .hp-pred-rank, no ::before) */
body.ft-public-site .hp-transfer-pred-list {
  counter-reset: none !important;
}
body.ft-public-site .hp-transfer-pred-list li::before {
  content: none !important;
  display: none !important;
}

/* TRANSFER GLASINE titles — default white, gold only on entity spans, no underline */
body.ft-public-site .hp-glasine-title,
body.ft-public-site .hp-glasine-title .hero-title-balanced,
body.ft-public-site .hp-glasine-title a {
  color: #f2f2f2 !important;
  text-decoration: none !important;
}
body.ft-public-site .hp-glasine-title .hero-title-entity {
  color: var(--gold) !important;
  font-weight: 800 !important;
}
body.ft-public-site .hp-glasine-link,
body.ft-public-site .hp-glasine-link:hover,
body.ft-public-site .hp-glasine-link:focus {
  text-decoration: none !important;
}

/* NOVO grid — 2 cols default, 3 only at very wide widths, 1 col mobile */
body.ft-public-site .hp-novo-grid {
  grid-template-columns: repeat(2, minmax(300px, 1fr)) !important;
}
@media (min-width: 1500px) {
  body.ft-public-site .hp-main-column .hp-novo-grid {
    grid-template-columns: repeat(3, minmax(300px, 1fr)) !important;
  }
}
@media (max-width: 720px) {
  body.ft-public-site .hp-novo-grid {
    grid-template-columns: 1fr !important;
  }
}
body.ft-public-site .hp-novo-title,
body.ft-public-site .hp-novo-title a {
  word-break: normal !important;
  overflow-wrap: normal !important;
  hyphens: manual !important;
  line-height: 1.28 !important;
}

/* —— Fudbal Aktuelno page (matches public layout) —— */
body.ft-public-site .fa-page-wrap {
  width: min(1440px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 24px 0 72px;
}
body.ft-public-site .fa-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: start;
}
body.ft-public-site .fa-page-title {
  margin: 0 0 6px;
  font-size: clamp(26px, 2.2vw, 34px);
  font-weight: 850;
  letter-spacing: -0.02em;
  color: var(--gold);
}
body.ft-public-site .fa-page-sub {
  margin: 0 0 18px;
  font-size: 13px;
}
body.ft-public-site .fa-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(300px, 1fr));
  gap: 18px 20px;
}
body.ft-public-site .fa-empty {
  margin-top: 18px;
}
@media (max-width: 1100px) {
  body.ft-public-site .fa-layout {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 720px) {
  body.ft-public-site .fa-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   v38 — HOMEPAGE HERO ONLY (font + fade) — focused patch.
   Selector chain matches actual DOM:
     body.ft-public-site .hp-main-column .hero.hero-integrated.hp-main-hero
   Only homepage hero. Sidebar / Tok vijesti / NOVO / GLASINE / FA page
   are intentionally NOT touched here.
   ========================================================= */

/* HOMEPAGE HERO HEADLINE — final size/rhythm (user spec) */
body.ft-public-site .hp-main-column .hp-main-hero .hp-hero-title,
body.ft-public-site .hp-main-column .hp-main-hero .hp-hero-title .hero-title-balanced,
body.ft-public-site .hp-main-column .hp-main-hero h1#heroTitle,
body.ft-public-site .hp-main-column .hp-main-hero h1#heroTitle .hero-title-balanced,
body.ft-public-site .hp-main-column .hp-main-hero h1.hp-hero-title {
  font-size: clamp(30px, 2.5vw, 44px) !important;
  line-height: 1.08 !important;
  letter-spacing: -0.025em !important;
  font-weight: 800 !important;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif !important;
  max-width: min(620px, 100%) !important;
  width: 100% !important;
  word-break: normal !important;
  overflow-wrap: normal !important;
  hyphens: manual !important;
  text-wrap: balance !important;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45) !important;
  color: #fff !important;
  margin: 10px 0 12px !important;
}

@media (max-width: 900px) {
  body.ft-public-site .hp-main-column .hp-main-hero .hp-hero-title,
  body.ft-public-site .hp-main-column .hp-main-hero .hp-hero-title .hero-title-balanced,
  body.ft-public-site .hp-main-column .hp-main-hero h1#heroTitle,
  body.ft-public-site .hp-main-column .hp-main-hero h1#heroTitle .hero-title-balanced,
  body.ft-public-site .hp-main-column .hp-main-hero h1.hp-hero-title {
    font-size: clamp(26px, 6vw, 36px) !important;
    line-height: 1.12 !important;
    max-width: 100% !important;
  }
}

/* Gold only on real entity spans inside the homepage hero title */
body.ft-public-site .hp-main-column .hp-main-hero .hp-hero-title .hero-title-entity,
body.ft-public-site .hp-main-column .hp-main-hero h1#heroTitle .hero-title-entity {
  color: var(--gold) !important;
  font-weight: 850 !important;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45) !important;
}

/* HOMEPAGE HERO PHOTO — keep face clean, no horizontal wipe */
body.ft-public-site .hp-main-column .hero.hero-integrated.hp-main-hero .article-hero-img,
body.ft-public-site .hp-main-column .hero.hero-integrated.hp-main-hero .image-placeholder {
  filter: none !important;
  opacity: 1 !important;
  -webkit-mask-image: none !important;
  mask-image: none !important;
}
body.ft-public-site .hp-main-column .hero.hero-integrated.hp-main-hero .article-hero-img {
  object-position: 56% 22% !important;
}

/* Kill any decorative ::before art on the photo column */
body.ft-public-site .hp-main-column .hero.hero-integrated.hp-main-hero .hero-visual::before,
body.ft-public-site .hp-main-column .hero.hero-integrated.hp-main-hero.hero-has-crest .hero-visual::before {
  content: none !important;
  display: none !important;
  background: none !important;
  background-image: none !important;
  opacity: 0 !important;
}

/* Single bottom-to-top fade overlay on the photo (user spec) */
body.ft-public-site .hp-main-column .hero.hero-integrated.hp-main-hero .hero-visual::after {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 5 !important;
  pointer-events: none !important;
  background-image: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.68) 0%,
    rgba(0, 0, 0, 0.36) 34%,
    rgba(0, 0, 0, 0.10) 65%,
    rgba(0, 0, 0, 0) 100%
  ) !important;
  background-color: transparent !important;
  background-repeat: no-repeat !important;
  background-size: 100% 100% !important;
  opacity: 1 !important;
  filter: none !important;
  mix-blend-mode: normal !important;
}

/* Soft local panel BEHIND text (radial; does NOT extend over the photo) */
body.ft-public-site .hp-main-column .hero.hero-integrated.hp-main-hero > .hero-content {
  position: relative !important;
  z-index: 8 !important;
}
body.ft-public-site .hp-main-column .hero.hero-integrated.hp-main-hero > .hero-content::before {
  content: "" !important;
  position: absolute !important;
  top: -8% !important;
  bottom: -8% !important;
  left: -10% !important;
  right: 0 !important;
  z-index: -1 !important;
  pointer-events: none !important;
  background: radial-gradient(
    ellipse 90% 80% at 18% 50%,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.28) 48%,
    rgba(0, 0, 0, 0) 76%
  ) !important;
}

/* =========================================================
   v39 — HOMEPAGE HERO FADE ONLY (softer; no horizontal wipe).
   Same hi-spec selector chain as v38 → wins by source order.
   Touches only:
     .hero-visual::after        (photo overlay)
     .hero-content::before      (local panel behind text)
     .article-hero-img          (re-confirm: no filter, no mask)
   Does NOT touch font, gold colors, sidebar, Tok vijesti,
   GLASINE, NOVO, FA page, article hero, common.js.
   ========================================================= */

/* Photo: keep face naturally bright, no horizontal mask leftovers */
body.ft-public-site .hp-main-column .hero.hero-integrated.hp-main-hero .article-hero-img,
body.ft-public-site .hp-main-column .hero.hero-integrated.hp-main-hero .image-placeholder {
  filter: none !important;
  opacity: 1 !important;
  -webkit-mask-image: none !important;
  mask-image: none !important;
  -webkit-mask: none !important;
  mask: none !important;
}

/* Hero-block-level pseudo-overlays (legacy 90deg sweeps) — stay disabled */
body.ft-public-site .hp-main-column .hero.hero-integrated.hp-main-hero::before,
body.ft-public-site .hp-main-column .hero.hero-integrated.hp-main-hero::after {
  content: none !important;
  display: none !important;
  background: none !important;
  background-image: none !important;
  opacity: 0 !important;
}

/* Photo-column ::before art (legacy crest/atmosphere) — stay disabled */
body.ft-public-site .hp-main-column .hero.hero-integrated.hp-main-hero .hero-visual::before,
body.ft-public-site .hp-main-column .hero.hero-integrated.hp-main-hero.hero-has-crest .hero-visual::before {
  content: none !important;
  display: none !important;
  background: none !important;
  background-image: none !important;
  opacity: 0 !important;
}

/* Single SOFT bottom-to-top fade (final, user spec) */
body.ft-public-site .hp-main-column .hero.hero-integrated.hp-main-hero .hero-visual::after {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 5 !important;
  pointer-events: none !important;
  background-image: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.28) 32%,
    rgba(0, 0, 0, 0.08) 58%,
    rgba(0, 0, 0, 0) 100%
  ) !important;
  background-color: transparent !important;
  background-repeat: no-repeat !important;
  background-size: 100% 100% !important;
  background-position: center bottom !important;
  opacity: 1 !important;
  filter: none !important;
  mix-blend-mode: normal !important;
}

/* Local soft panel BEHIND text — strictly inside hero-content (no bleed over photo) */
body.ft-public-site .hp-main-column .hero.hero-integrated.hp-main-hero > .hero-content {
  position: relative !important;
  z-index: 8 !important;
}
body.ft-public-site .hp-main-column .hero.hero-integrated.hp-main-hero > .hero-content::before {
  content: "" !important;
  position: absolute !important;
  top: -4% !important;
  bottom: -4% !important;
  left: -8% !important;
  right: 8% !important;
  z-index: -1 !important;
  pointer-events: none !important;
  background-image: radial-gradient(
    ellipse 80% 75% at 22% 50%,
    rgba(0, 0, 0, 0.40) 0%,
    rgba(0, 0, 0, 0.18) 48%,
    rgba(0, 0, 0, 0) 78%
  ) !important;
  background-color: transparent !important;
  background-repeat: no-repeat !important;
  background-size: 100% 100% !important;
  filter: none !important;
  mix-blend-mode: normal !important;
}

/* === v40 REAL HOMEPAGE HERO IMAGE RESET ONLY === */

body.ft-public-site .hp-main-column .hero.hero-integrated.hp-main-hero {
  position: relative !important;
  overflow: hidden !important;
  min-height: 390px !important;
}

body.ft-public-site .hp-main-column .hero.hero-integrated.hp-main-hero > .hero-content {
  position: relative !important;
  z-index: 10 !important;
}

body.ft-public-site .hp-main-column .hero.hero-integrated.hp-main-hero > .hero-content::before {
  content: "" !important;
  position: absolute !important;
  top: -6% !important;
  bottom: -6% !important;
  left: -8% !important;
  right: -4% !important;
  z-index: -1 !important;
  pointer-events: none !important;
  background: radial-gradient(
    ellipse 85% 80% at 22% 50%,
    rgba(0, 0, 0, 0.62) 0%,
    rgba(0, 0, 0, 0.34) 48%,
    rgba(0, 0, 0, 0) 78%
  ) !important;
}

body.ft-public-site .hp-main-column .hero.hero-integrated.hp-main-hero > .hero-visual {
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  left: auto !important;
  width: 58% !important;
  height: 100% !important;
  min-height: 100% !important;
  overflow: hidden !important;
  z-index: 2 !important;
  display: block !important;
  background: transparent !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

body.ft-public-site .hp-main-column .hero.hero-integrated.hp-main-hero > .hero-visual::before {
  content: none !important;
  display: none !important;
  background: none !important;
  opacity: 0 !important;
}

body.ft-public-site .hp-main-column .hero.hero-integrated.hp-main-hero > .hero-visual::after {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 4 !important;
  pointer-events: none !important;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.42) 0%,
    rgba(0, 0, 0, 0.20) 35%,
    rgba(0, 0, 0, 0.05) 65%,
    rgba(0, 0, 0, 0) 100%
  ) !important;
  opacity: 1 !important;
  filter: none !important;
  mix-blend-mode: normal !important;
}

body.ft-public-site .hp-main-column .hero.hero-integrated.hp-main-hero > .hero-visual > img.article-hero-img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 100% !important;
  max-height: none !important;
  display: block !important;
  object-fit: cover !important;
  object-position: center center !important;
  opacity: 1 !important;
  filter: none !important;
  transform: none !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  -webkit-mask: none !important;
  mask: none !important;
  -webkit-mask-image: none !important;
  mask-image: none !important;
}

/* === v42 HOMEPAGE COVER HERO LAYOUT ONLY === */

body.ft-public-site .hp-main-column .hero.hero-integrated.hp-main-hero {
  position: relative !important;
  min-height: 430px !important;
  overflow: hidden !important;
  display: block !important;
  border-radius: 18px !important;
  background: #050505 !important;
}

body.ft-public-site .hp-main-column .hero.hero-integrated.hp-main-hero > .hero-visual {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 100% !important;
  z-index: 1 !important;
  overflow: hidden !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  background: #050505 !important;
}

body.ft-public-site .hp-main-column .hero.hero-integrated.hp-main-hero > .hero-visual > img.article-hero-img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 100% !important;
  max-height: none !important;
  display: block !important;
  object-fit: cover !important;
  object-position: center center !important;
  opacity: 1 !important;
  filter: none !important;
  transform: none !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  -webkit-mask: none !important;
  mask: none !important;
  -webkit-mask-image: none !important;
  mask-image: none !important;
}

body.ft-public-site .hp-main-column .hero.hero-integrated.hp-main-hero > .hero-visual::before {
  content: none !important;
  display: none !important;
  background: none !important;
  opacity: 0 !important;
}

/* Bottom dark band: title lives here. Top image stays clean. */
body.ft-public-site .hp-main-column .hero.hero-integrated.hp-main-hero > .hero-visual::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 2 !important;
  pointer-events: none !important;
  background: linear-gradient(
    0deg,
    rgba(0,0,0,0.94) 0%,
    rgba(0,0,0,0.88) 18%,
    rgba(0,0,0,0.70) 34%,
    rgba(0,0,0,0.36) 50%,
    rgba(0,0,0,0.08) 68%,
    rgba(0,0,0,0.00) 82%
  ) !important;
}

/* Move content into bottom band */
body.ft-public-site .hp-main-column .hero.hero-integrated.hp-main-hero > .hero-content {
  position: absolute !important;
  left: 30px !important;
  right: 30px !important;
  bottom: 28px !important;
  top: auto !important;
  width: auto !important;
  max-width: 760px !important;
  min-height: 0 !important;
  padding: 0 !important;
  z-index: 5 !important;
  background: transparent !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-end !important;
}

body.ft-public-site .hp-main-column .hero.hero-integrated.hp-main-hero > .hero-content::before {
  content: none !important;
  display: none !important;
  background: none !important;
}

/* Keep current title styling mostly unchanged, only make sure it fits bottom band */
body.ft-public-site .hp-main-column .hero.hero-integrated.hp-main-hero #heroTitle,
body.ft-public-site .hp-main-column .hero.hero-integrated.hp-main-hero .hp-hero-title {
  max-width: 760px !important;
  margin: 10px 0 12px !important;
}

body.ft-public-site .hp-main-column .hero.hero-integrated.hp-main-hero #heroLead {
  max-width: 640px !important;
  margin: 0 !important;
}

body.ft-public-site .hp-main-column .hero.hero-integrated.hp-main-hero #heroCta {
  align-self: flex-start !important;
  margin-top: 14px !important;
}

/* Mobile */
@media (max-width: 900px) {
  body.ft-public-site .hp-main-column .hero.hero-integrated.hp-main-hero {
    min-height: 460px !important;
  }

  body.ft-public-site .hp-main-column .hero.hero-integrated.hp-main-hero > .hero-content {
    left: 18px !important;
    right: 18px !important;
    bottom: 20px !important;
    max-width: none !important;
  }
}

/* === v43 HOMEPAGE COVER HERO IMAGE FULL WIDTH ONLY === */

body.ft-public-site .hp-main-column .hero.hero-integrated.hp-main-hero > .hero-visual {
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 100% !important;
  max-width: none !important;
  z-index: 1 !important;
  overflow: hidden !important;
  background: #050505 !important;
}

body.ft-public-site .hp-main-column .hero.hero-integrated.hp-main-hero > .hero-visual > img.article-hero-img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  min-width: 100% !important;
  min-height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: cover !important;
  object-position: center center !important;
  display: block !important;
  opacity: 1 !important;
  filter: none !important;
  transform: none !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  -webkit-mask: none !important;
  mask: none !important;
  -webkit-mask-image: none !important;
  mask-image: none !important;
}

body.ft-public-site .hp-main-column .hero.hero-integrated.hp-main-hero > .hero-visual::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 2 !important;
  pointer-events: none !important;
  background: linear-gradient(
    0deg,
    rgba(0,0,0,0.94) 0%,
    rgba(0,0,0,0.86) 20%,
    rgba(0,0,0,0.58) 38%,
    rgba(0,0,0,0.20) 58%,
    rgba(0,0,0,0.00) 78%
  ) !important;
}

body.ft-public-site .hp-main-column .hero.hero-integrated.hp-main-hero > .hero-content {
  position: absolute !important;
  left: 30px !important;
  right: 30px !important;
  bottom: 26px !important;
  top: auto !important;
  z-index: 5 !important;
  background: transparent !important;
}

/* === v44 HOMEPAGE HERO BOTTOM FADE + TEXT BAND ONLY === */

/* Bottom fade band only. Top image stays clean. */
body.ft-public-site .hp-main-column .hero.hero-integrated.hp-main-hero > .hero-visual::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 2 !important;
  pointer-events: none !important;
  background: linear-gradient(
    0deg,
    rgba(0,0,0,0.96) 0%,
    rgba(0,0,0,0.92) 18%,
    rgba(0,0,0,0.78) 34%,
    rgba(0,0,0,0.48) 48%,
    rgba(0,0,0,0.18) 62%,
    rgba(0,0,0,0.00) 76%
  ) !important;
}

/* Move all hero text into the lower fade band */
body.ft-public-site .hp-main-column .hero.hero-integrated.hp-main-hero > .hero-content {
  position: absolute !important;
  left: 30px !important;
  right: 30px !important;
  bottom: 26px !important;
  top: auto !important;
  width: auto !important;
  max-width: 780px !important;
  min-height: 0 !important;
  padding: 0 !important;
  z-index: 5 !important;
  background: transparent !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-end !important;
}

/* Remove old local black panel behind text; fade band handles readability */
body.ft-public-site .hp-main-column .hero.hero-integrated.hp-main-hero > .hero-content::before {
  content: none !important;
  display: none !important;
  background: none !important;
}

/* Badge row should be smaller and sit with the title in the bottom band */
body.ft-public-site .hp-main-column .hero.hero-integrated.hp-main-hero .hero-meta {
  margin-bottom: 8px !important;
  gap: 6px !important;
  transform: none !important;
}

body.ft-public-site .hp-main-column .hero.hero-integrated.hp-main-hero .hero-meta .badge,
body.ft-public-site .hp-main-column .hero.hero-integrated.hp-main-hero .hero-meta .score-pill {
  font-size: 9px !important;
  line-height: 1 !important;
  padding: 4px 7px !important;
  min-height: 0 !important;
}

/* Title stays in the dark fade zone */
body.ft-public-site .hp-main-column .hero.hero-integrated.hp-main-hero #heroTitle,
body.ft-public-site .hp-main-column .hero.hero-integrated.hp-main-hero .hp-hero-title {
  margin: 0 0 8px !important;
  max-width: 780px !important;
}

/* CTA stays below title inside fade zone */
body.ft-public-site .hp-main-column .hero.hero-integrated.hp-main-hero #heroCta {
  align-self: flex-start !important;
  margin-top: 8px !important;
}

/* Mobile */
@media (max-width: 900px) {
  body.ft-public-site .hp-main-column .hero.hero-integrated.hp-main-hero > .hero-content {
    left: 18px !important;
    right: 18px !important;
    bottom: 20px !important;
    max-width: none !important;
  }
}

/* =========================================================
   v45 — CLEAN HOMEPAGE HERO FADE (homepage hero only).
   Goals:
     A) Neutralize ALL legacy fade/overlay/mask layers that
        were fighting on the homepage hero only.
     B) Keep the image full-cover and clean.
     C) Apply a SINGLE bottom-to-top fade on .hero-visual::after.
     D) Anchor .hero-content to the dark bottom band.
   Scope: ONLY body.ft-public-site .hp-main-column
          .hero.hero-integrated.hp-main-hero
   Does NOT touch: font, gold entity color, common.js, sidebar,
   Tok vijesti, GLASINE, NOVO, FA page, article hero, preview,
   club, admin, backend.
   ========================================================= */

/* --- A) Neutralize legacy overlays/masks for homepage hero only --- */

/* A1. Hero block-level pseudo overlays (legacy 90deg sweeps, dim layers) */
body.ft-public-site .hp-main-column .hero.hero-integrated.hp-main-hero::before,
body.ft-public-site .hp-main-column .hero.hero-integrated.hp-main-hero::after {
  content: none !important;
  display: none !important;
  background: none !important;
  background-image: none !important;
  opacity: 0 !important;
}

/* A2. Photo column decorative ::before art (crest backplate, atmosphere) */
body.ft-public-site .hp-main-column .hero.hero-integrated.hp-main-hero > .hero-visual::before,
body.ft-public-site .hp-main-column .hero.hero-integrated.hp-main-hero.hero-has-crest > .hero-visual::before {
  content: none !important;
  display: none !important;
  background: none !important;
  background-image: none !important;
  opacity: 0 !important;
}

/* A3. Photo image: clear any legacy mask/filter (was 90deg mask-image) */
body.ft-public-site .hp-main-column .hero.hero-integrated.hp-main-hero > .hero-visual > img.article-hero-img {
  filter: none !important;
  opacity: 1 !important;
  -webkit-mask: none !important;
  mask: none !important;
  -webkit-mask-image: none !important;
  mask-image: none !important;
}

/* --- B) Hero box + photo full-cover (clean, no horizontal wipe) --- */

body.ft-public-site .hp-main-column .hero.hero-integrated.hp-main-hero {
  position: relative !important;
  overflow: hidden !important;
  min-height: 430px !important;
  background: #050505 !important;
}

body.ft-public-site .hp-main-column .hero.hero-integrated.hp-main-hero > .hero-visual {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 1 !important;
  overflow: hidden !important;
  background: #050505 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

body.ft-public-site .hp-main-column .hero.hero-integrated.hp-main-hero > .hero-visual > img.article-hero-img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  min-width: 100% !important;
  min-height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: cover !important;
  object-position: center center !important;
  display: block !important;
  opacity: 1 !important;
  filter: none !important;
  transform: none !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  -webkit-mask: none !important;
  mask: none !important;
  -webkit-mask-image: none !important;
  mask-image: none !important;
}

/* --- C) THE single bottom-to-top fade for the homepage hero --- */
body.ft-public-site .hp-main-column .hero.hero-integrated.hp-main-hero > .hero-visual::after {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 2 !important;
  pointer-events: none !important;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.96) 0%,
    rgba(0, 0, 0, 0.94) 18%,
    rgba(0, 0, 0, 0.82) 32%,
    rgba(0, 0, 0, 0.55) 45%,
    rgba(0, 0, 0, 0.22) 58%,
    rgba(0, 0, 0, 0.00) 72%
  ) !important;
  opacity: 1 !important;
  mix-blend-mode: normal !important;
  filter: none !important;
}

/* --- D) Hero content anchored to the dark bottom band --- */
body.ft-public-site .hp-main-column .hero.hero-integrated.hp-main-hero > .hero-content {
  position: absolute !important;
  left: 30px !important;
  right: 30px !important;
  bottom: 26px !important;
  top: auto !important;
  width: auto !important;
  max-width: 780px !important;
  min-height: 0 !important;
  padding: 0 !important;
  z-index: 5 !important;
  background: transparent !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-end !important;
}

body.ft-public-site .hp-main-column .hero.hero-integrated.hp-main-hero > .hero-content::before {
  content: none !important;
  display: none !important;
  background: none !important;
}

@media (max-width: 900px) {
  body.ft-public-site .hp-main-column .hero.hero-integrated.hp-main-hero > .hero-content {
    left: 18px !important;
    right: 18px !important;
    bottom: 20px !important;
    max-width: none !important;
  }
}

/* === MANUAL FIX: HOMEPAGE HERO BOTTOM FADE ON #hero ITSELF === */
/* Samo homepage hero. Ne dira font, JS, sidebar, Tok vijesti, article ili preview. */

body.ft-public-site .hp-main-column #hero.hero.hero-integrated.hp-main-hero {
  position: relative !important;
  overflow: hidden !important;
  isolation: isolate !important;
}

/* Ugasiti stare hero-level slojeve koji mogu prljati sliku */
body.ft-public-site .hp-main-column #hero.hero.hero-integrated.hp-main-hero::before {
  content: none !important;
  display: none !important;
  background: none !important;
  background-image: none !important;
  opacity: 0 !important;
}

/* Slika ostaje čista i full-cover */
body.ft-public-site .hp-main-column #hero.hero.hero-integrated.hp-main-hero > .hero-visual {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 1 !important;
  overflow: hidden !important;
  background: #050505 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

body.ft-public-site .hp-main-column #hero.hero.hero-integrated.hp-main-hero > .hero-visual::before,
body.ft-public-site .hp-main-column #hero.hero.hero-integrated.hp-main-hero > .hero-visual::after {
  content: none !important;
  display: none !important;
  background: none !important;
  background-image: none !important;
  opacity: 0 !important;
}

body.ft-public-site .hp-main-column #hero.hero.hero-integrated.hp-main-hero > .hero-visual > img.article-hero-img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  min-width: 100% !important;
  min-height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: cover !important;
  object-position: center center !important;
  display: block !important;
  opacity: 1 !important;
  filter: none !important;
  transform: none !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  -webkit-mask: none !important;
  mask: none !important;
  -webkit-mask-image: none !important;
  mask-image: none !important;
}

/* OVO JE GLAVNI FADE: crna traka od dna prema gore */
body.ft-public-site .hp-main-column #hero.hero.hero-integrated.hp-main-hero::after {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 3 !important;
  pointer-events: none !important;
  background: linear-gradient(
    0deg,
    rgba(0,0,0,0.98) 0%,
    rgba(0,0,0,0.96) 18%,
    rgba(0,0,0,0.88) 34%,
    rgba(0,0,0,0.68) 50%,
    rgba(0,0,0,0.34) 64%,
    rgba(0,0,0,0.10) 76%,
    rgba(0,0,0,0.00) 86%
  ) !important;
  opacity: 1 !important;
  mix-blend-mode: normal !important;
}

/* Tekst mora biti iznad fade trake i smješten dole */
body.ft-public-site .hp-main-column #hero.hero.hero-integrated.hp-main-hero > .hero-content {
  position: absolute !important;
  left: 30px !important;
  right: 30px !important;
  bottom: 26px !important;
  top: auto !important;
  width: auto !important;
  max-width: 780px !important;
  min-height: 0 !important;
  padding: 0 !important;
  z-index: 5 !important;
  background: transparent !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-end !important;
}

body.ft-public-site .hp-main-column #hero.hero.hero-integrated.hp-main-hero > .hero-content::before {
  content: none !important;
  display: none !important;
  background: none !important;
}

/* Sitniji badge u donjoj traci */
body.ft-public-site .hp-main-column #hero.hero.hero-integrated.hp-main-hero .hero-meta {
  margin-bottom: 8px !important;
  gap: 6px !important;
}

body.ft-public-site .hp-main-column #hero.hero.hero-integrated.hp-main-hero .hero-meta .badge,
body.ft-public-site .hp-main-column #hero.hero.hero-integrated.hp-main-hero .hero-meta .score-pill {
  font-size: 9px !important;
  line-height: 1 !important;
  padding: 4px 7px !important;
}

/* Mobile */
@media (max-width: 900px) {
  body.ft-public-site .hp-main-column #hero.hero.hero-integrated.hp-main-hero > .hero-content {
    left: 18px !important;
    right: 18px !important;
    bottom: 20px !important;
    max-width: none !important;
  }
}


/* === FINAL MANUAL TUNE: HOMEPAGE HERO FADE RATIO + META CLEANUP === */
/* Samo naslovnica/homepage hero. Ne dira JS, common.js, sidebar, Tok vijesti, article, preview ili Supabase. */

/* Fade omjer:
   0–35% od dna: jaka/tamna zona za naslov
   35–61%: postepeni fade
   61–71%: skoro providno
   71–100%: čista slika
*/
body.ft-public-site .hp-main-column #hero.hero.hero-integrated.hp-main-hero::after {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 3 !important;
  pointer-events: none !important;
  background: linear-gradient(
    0deg,
    rgba(0,0,0,0.98) 0%,
    rgba(0,0,0,0.96) 18%,
    rgba(0,0,0,0.90) 35%,
    rgba(0,0,0,0.62) 48%,
    rgba(0,0,0,0.30) 61%,
    rgba(0,0,0,0.08) 71%,
    rgba(0,0,0,0.00) 100%
  ) !important;
  opacity: 1 !important;
  mix-blend-mode: normal !important;
}

/* Slika ostaje čista i full-cover */
body.ft-public-site .hp-main-column #hero.hero.hero-integrated.hp-main-hero > .hero-visual,
body.ft-public-site .hp-main-column #hero.hero.hero-integrated.hp-main-hero > .hero-visual > img.article-hero-img {
  -webkit-mask: none !important;
  mask: none !important;
  -webkit-mask-image: none !important;
  mask-image: none !important;
  filter: none !important;
}

/* Tekst spušten u tamnu/fade zonu, da ne bježi preko čiste slike */
body.ft-public-site .hp-main-column #hero.hero.hero-integrated.hp-main-hero > .hero-content {
  position: absolute !important;
  left: 30px !important;
  right: 30px !important;
  bottom: 22px !important;
  top: auto !important;
  width: auto !important;
  max-width: 820px !important;
  min-height: 0 !important;
  padding: 0 !important;
  z-index: 5 !important;
  background: transparent !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-end !important;
}

body.ft-public-site .hp-main-column #hero.hero.hero-integrated.hp-main-hero > .hero-content::before {
  content: none !important;
  display: none !important;
  background: none !important;
}

/* Sakrij FT badge i kredibilitet/score samo u glavnoj naslovnici */
body.ft-public-site .hp-main-column #hero.hero.hero-integrated.hp-main-hero .hero-meta .badge-news,
body.ft-public-site .hp-main-column #hero.hero.hero-integrated.hp-main-hero #heroScores {
  display: none !important;
}

/* Meta red kompaktniji */
body.ft-public-site .hp-main-column #hero.hero.hero-integrated.hp-main-hero .hero-meta {
  gap: 6px !important;
  margin-bottom: 8px !important;
}

/* Glavni category badge manji */
body.ft-public-site .hp-main-column #hero.hero.hero-integrated.hp-main-hero #heroBadge {
  font-size: 9px !important;
  padding: 4px 8px !important;
  line-height: 1 !important;
  letter-spacing: 0.08em !important;
}

/* Naslov ostaje u fade zoni */
body.ft-public-site .hp-main-column #hero.hero.hero-integrated.hp-main-hero #heroTitle,
body.ft-public-site .hp-main-column #hero.hero.hero-integrated.hp-main-hero .hp-hero-title {
  margin: 0 0 10px !important;
  max-width: 820px !important;
}

/* Smanji Pročitaj više samo na naslovnici */
body.ft-public-site .hp-main-column #hero.hero.hero-integrated.hp-main-hero #heroCta {
  align-self: flex-start !important;
  font-size: 12px !important;
  padding: 9px 15px !important;
  border-radius: 999px !important;
  margin-top: 8px !important;
  min-height: 0 !important;
  line-height: 1.1 !important;
}

/* Mobile */
@media (max-width: 900px) {
  body.ft-public-site .hp-main-column #hero.hero.hero-integrated.hp-main-hero > .hero-content {
    left: 18px !important;
    right: 18px !important;
    bottom: 18px !important;
    max-width: none !important;
  }
}


/* === HERO RED BADGE ABOVE TITLE ONLY === */
/* Crveni badge za EKSKLUZIVNO / ZVANIČNO / POTVRĐENO ostaje u donjoj fade zoni iznad naslova.
   Ne dira fade, sliku, font, JS, sidebar, Tok vijesti, article ili preview. */

/* Osnovni hero meta red ostaje iznad naslova, lijevo poravnat */
body.ft-public-site .hp-main-column #hero.hero.hero-integrated.hp-main-hero .hero-meta {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 6px !important;
  margin-bottom: 9px !important;
  position: relative !important;
  z-index: 6 !important;
}

/* Ako je hero badge crveni tip: EKSKLUZIVNO / ZVANIČNO / POTVRĐENO */
body.ft-public-site .hp-main-column #hero.hero.hero-integrated.hp-main-hero #heroBadge.badge-breaking {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: auto !important;
  max-width: max-content !important;
  position: static !important;
  background: #d71920 !important;
  border: 1px solid rgba(255, 72, 72, 0.72) !important;
  color: #ffffff !important;
  box-shadow: 0 10px 24px rgba(215, 25, 32, 0.22) !important;
  font-size: 9px !important;
  line-height: 1 !important;
  padding: 5px 9px !important;
  border-radius: 999px !important;
  letter-spacing: 0.09em !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
}

/* Neutralni/gold hero badge ostaje diskretan */
body.ft-public-site .hp-main-column #hero.hero.hero-integrated.hp-main-hero #heroBadge:not(.badge-breaking) {
  position: static !important;
  display: inline-flex !important;
  width: auto !important;
  max-width: max-content !important;
  font-size: 9px !important;
  line-height: 1 !important;
  padding: 4px 8px !important;
  border-radius: 999px !important;
  letter-spacing: 0.08em !important;
}

/* FT i kredibilitet ostaju sakriveni samo u glavnom hero-u */
body.ft-public-site .hp-main-column #hero.hero.hero-integrated.hp-main-hero .hero-meta .badge-news,
body.ft-public-site .hp-main-column #hero.hero.hero-integrated.hp-main-hero #heroScores {
  display: none !important;
}


/* === HERO TITLE STRICT COLORS ONLY === */
/* Default hero title text must be white. Only .hero-title-entity is gold. */

body.ft-public-site .hp-main-column #hero.hero.hero-integrated.hp-main-hero #heroTitle {
  color: #ffffff !important;
}

body.ft-public-site .hp-main-column #hero.hero.hero-integrated.hp-main-hero #heroTitle .hero-title-entity {
  color: var(--gold) !important;
}


/* === FINAL CLEAN HERO TITLE COLORS === */
/* Reset all old hero title coloring. Default white. Only .ft-hero-gold is gold. */

body.ft-public-site .hp-main-column #hero.hero.hero-integrated.hp-main-hero #heroTitle,
body.ft-public-site .hp-main-column #hero.hero.hero-integrated.hp-main-hero #heroTitle *,
body.ft-public-site .hp-main-column #hero.hero.hero-integrated.hp-main-hero #heroTitle .hero-title-entity,
body.ft-public-site .hp-main-column #hero.hero.hero-integrated.hp-main-hero #heroTitle .hero-title-balanced {
  color: #ffffff !important;
}

body.ft-public-site .hp-main-column #hero.hero.hero-integrated.hp-main-hero #heroTitle .ft-hero-gold {
  color: var(--gold) !important;
}

html body.ft-public-site .hp-main-column #hero.hero.hero-integrated.hp-main-hero #heroTitle .hero-title-entity {
  color: var(--gold) !important;
  -webkit-text-fill-color: var(--gold) !important;
}


/* === FINAL FORCE: HERO TITLE DEFAULT WHITE, ONLY FT GOLD SPANS GOLD === */
/* JS formatter is correct. This only fixes inherited CSS color. */

html body.ft-public-site .hp-main-column section#hero.hero.hero-integrated.hp-main-hero h1#heroTitle.hp-hero-title {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

html body.ft-public-site .hp-main-column section#hero.hero.hero-integrated.hp-main-hero h1#heroTitle.hp-hero-title * {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

html body.ft-public-site .hp-main-column section#hero.hero.hero-integrated.hp-main-hero h1#heroTitle.hp-hero-title .ft-hero-gold {
  color: var(--gold) !important;
  -webkit-text-fill-color: var(--gold) !important;
}

html body.ft-public-site .hp-main-column section#hero.hero.hero-integrated.hp-main-hero h1#heroTitle.hp-hero-title .hero-title-entity {
  color: var(--gold) !important;
  -webkit-text-fill-color: var(--gold) !important;
}


/* === HOMEPAGE CARD TITLE COLORS === */
/* Default card title text is white. Only .ft-card-gold is gold. */

body.ft-public-site #glasineGrid .hp-glasine-title,
body.ft-public-site #glasineGrid .hp-glasine-title *,
body.ft-public-site #latestGrid .hp-novo-title,
body.ft-public-site #latestGrid .hp-novo-title *,
body.ft-public-site #latestGrid .visual-image-title,
body.ft-public-site #latestGrid .visual-image-title *,
body.ft-public-site #latestGrid h3,
body.ft-public-site #latestGrid h3 *,
body.ft-public-site #glasineGrid h3,
body.ft-public-site #glasineGrid h3 * {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

body.ft-public-site #glasineGrid .ft-card-gold,
body.ft-public-site #latestGrid .ft-card-gold {
  color: var(--gold) !important;
  -webkit-text-fill-color: var(--gold) !important;
}


/* === NOVO CARDS CLICK + COMPACT LAYOUT ONLY === */
/* Samo sekcija NOVO. Ne dira hero, fade, Tok vijesti, sidebar, article ili backend. */

body.ft-public-site #latestGrid .hp-novo-card {
  min-height: auto !important;
  display: block !important;
}

body.ft-public-site #latestGrid .hp-novo-card-link {
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
  color: inherit !important;
  text-decoration: none !important;
}

body.ft-public-site #latestGrid .hp-novo-card-link:hover .hp-novo-title,
body.ft-public-site #latestGrid .hp-novo-card-link:focus .hp-novo-title {
  color: #ffffff !important;
}

/* NOVO kartice malo manje/kompaktnije od Transfer glasine dana */
body.ft-public-site #latestGrid .hp-novo-thumb-wrap {
  aspect-ratio: 16 / 8.5 !important;
  min-height: 0 !important;
}

body.ft-public-site #latestGrid .hp-novo-card-main {
  padding: 10px 12px 12px !important;
  gap: 5px !important;
}

/* --- U FOKUSU (#glasineGrid): badge pill ---
   Problem: .hp-glasine-body je flex-kolona; default align-items:stretch horizontalno širi prvo dijete (span.badge).
   Rješenje: align-items:flex-start na body + naslov/datumu eksplicitno width:100% da tekst i dalje koristi punu širinu kartice.
   Prethodni fix (samo .badge { fit-content }) mogao je ostati bez efekta jer stretch na flex-item i dalje ponaša kao 100%. */
html body.ft-public-site .hp-main-column #glasineGrid .hp-glasine-body {
  align-items: flex-start !important;
}

html body.ft-public-site .hp-main-column #glasineGrid .hp-glasine-body > .hp-glasine-title {
  width: 100% !important;
  max-width: 100% !important;
  align-self: stretch !important;
}

html body.ft-public-site .hp-main-column #glasineGrid .hp-glasine-body > .hp-glasine-date {
  width: 100% !important;
  align-self: stretch !important;
}

html body.ft-public-site .hp-main-column #glasineGrid .hp-glasine-card .badge,
html body.ft-public-site .hp-main-column #glasineGrid .hp-glasine-card .badge.badge-news,
html body.ft-public-site .hp-main-column #glasineGrid .hp-glasine-card .badge.badge-breaking {
  display: inline-flex !important;
  align-self: flex-start !important;
  width: auto !important;
  max-width: max-content !important;
  flex: 0 0 auto !important;
  flex-grow: 0 !important;
  flex-shrink: 0 !important;
  box-sizing: border-box !important;
  white-space: nowrap !important;
}

/* NOVO kartice: badge širine sadržaja (flex-kolona u .hp-novo-card-main) */
body.ft-public-site .hp-main-column #latestGrid .hp-novo-card .badge {
  align-self: flex-start !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  width: fit-content !important;
  max-width: max-content !important;
  min-width: 0 !important;
  flex-shrink: 0 !important;
  box-sizing: border-box !important;
}

/* NOVO kartice — kompaktniji pill (vizuelno; iste boje kao global .badge-*) */
body.ft-public-site .hp-main-column #latestGrid .hp-novo-card .badge {
  font-size: 9px !important;
  line-height: 1 !important;
  padding: 5px 8px !important;
  border-radius: 999px !important;
  white-space: nowrap !important;
}

/* Naslov NOVO kartice kompaktniji, bez riječ-po-riječ loma */
body.ft-public-site #latestGrid .hp-novo-title {
  font-size: clamp(15px, 1.05vw, 17px) !important;
  line-height: 1.24 !important;
  margin: 0 !important;
  word-break: normal !important;
  overflow-wrap: normal !important;
  hyphens: manual !important;
}

/* Score pill u NOVO karticama isto da ne rasteže čudno */
body.ft-public-site #latestGrid .hp-novo-prob {
  align-self: flex-start !important;
  width: auto !important;
  max-width: 100% !important;
  font-size: 10.5px !important;
  padding: 5px 8px !important;
}


/* =========================================================
   TRANSFER PREDVIĐANJA — premium sidebar polish
   CSS-only patch, no hero/NOVO/backend changes
   ========================================================= */

body.ft-public-site .hp-transfer-pred-list {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
  max-height: 330px !important;
  overflow-y: auto !important;
  padding: 2px 2px 4px !important;
  margin-top: 10px !important;
  scrollbar-width: thin;
  scrollbar-color: rgba(242, 201, 76, 0.45) rgba(255, 255, 255, 0.04);
}

body.ft-public-site .hp-transfer-pred-list::-webkit-scrollbar {
  width: 6px;
}

body.ft-public-site .hp-transfer-pred-list::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 999px;
}

body.ft-public-site .hp-transfer-pred-list::-webkit-scrollbar-thumb {
  background: rgba(242, 201, 76, 0.45);
  border-radius: 999px;
}

body.ft-public-site .hp-transfer-pred-list li {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

body.ft-public-site .hp-transfer-pred-list .hp-pred-row-layout {
  display: grid !important;
  grid-template-columns: 26px minmax(0, 1fr) 30px 36px 58px !important;
  align-items: center !important;
  gap: 8px !important;
  min-height: 58px !important;
  padding: 9px 9px !important;
  border-radius: 14px !important;
  text-decoration: none !important;
  color: inherit !important;
  border: 1px solid rgba(242, 201, 76, 0.16) !important;
  background:
    linear-gradient(135deg, rgba(242, 201, 76, 0.08), rgba(255, 255, 255, 0.02) 42%, rgba(0, 0, 0, 0.34)),
    rgba(10, 10, 10, 0.82) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 8px 22px rgba(0, 0, 0, 0.20) !important;
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease,
    box-shadow 0.18s ease !important;
}

body.ft-public-site .hp-transfer-pred-list .hp-pred-row-layout:hover,
body.ft-public-site .hp-transfer-pred-list .hp-pred-row-layout:focus {
  transform: translateY(-1px) !important;
  border-color: rgba(242, 201, 76, 0.34) !important;
  background:
    linear-gradient(135deg, rgba(242, 201, 76, 0.14), rgba(255, 255, 255, 0.03) 45%, rgba(0, 0, 0, 0.30)),
    rgba(12, 12, 12, 0.92) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 10px 28px rgba(0, 0, 0, 0.28),
    0 0 18px rgba(242, 201, 76, 0.08) !important;
}

body.ft-public-site .hp-pred-rank {
  width: 24px !important;
  height: 24px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 999px !important;
  font-size: 10px !important;
  font-weight: 900 !important;
  color: rgba(242, 201, 76, 0.82) !important;
  background: rgba(242, 201, 76, 0.08) !important;
  border: 1px solid rgba(242, 201, 76, 0.16) !important;
}

body.ft-public-site .hp-pred-namestack {
  min-width: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 1px !important;
}

body.ft-public-site .hp-pred-line1,
body.ft-public-site .hp-pred-line2 {
  display: block !important;
  max-width: 100% !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  line-height: 1.08 !important;
  color: #f3f3f3 !important;
  letter-spacing: -0.015em !important;
}

body.ft-public-site .hp-pred-line1 {
  font-size: 12px !important;
  font-weight: 900 !important;
}

body.ft-public-site .hp-pred-line2 {
  font-size: 12px !important;
  font-weight: 800 !important;
  color: rgba(242, 201, 76, 0.92) !important;
}

body.ft-public-site .hp-pred-trend {
  position: relative !important;
  width: 28px !important;
  height: 24px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 0 !important;
  color: transparent !important;
  filter: drop-shadow(0 0 7px rgba(39, 174, 96, 0.38)) !important;
}

body.ft-public-site .hp-pred-trend::before {
  content: "" !important;
  width: 24px !important;
  height: 18px !important;
  display: block !important;
  border-radius: 4px !important;
  background: linear-gradient(135deg, #0e8f43 0%, #29d66f 48%, #8dffb2 100%) !important;
  clip-path: polygon(
    0 64%,
    42% 64%,
    42% 42%,
    72% 42%,
    72% 18%,
    100% 50%,
    72% 82%,
    72% 58%,
    42% 58%,
    42% 36%,
    0 36%
  ) !important;
  transform: rotate(-22deg) !important;
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.38),
    inset 0 -1px 2px rgba(0, 0, 0, 0.24),
    0 0 10px rgba(41, 214, 111, 0.24) !important;
}

body.ft-public-site .hp-pred-crest {
  width: 32px !important;
  height: 32px !important;
  border-radius: 999px !important;
  object-fit: contain !important;
  padding: 4px !important;
  background: radial-gradient(circle at 35% 28%, rgba(255,255,255,0.16), rgba(0,0,0,0.42)) !important;
  border: 1px solid rgba(242, 201, 76, 0.24) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 12px rgba(0, 0, 0, 0.25) !important;
}

body.ft-public-site .hp-pred-crest-ph {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 10px !important;
  font-weight: 900 !important;
  color: rgba(242, 201, 76, 0.92) !important;
}

body.ft-public-site .hp-transfer-pred-list .hp-pred-pct {
  justify-self: end !important;
  min-width: 50px !important;
  padding: 6px 7px !important;
  border-radius: 999px !important;
  text-align: center !important;
  font-size: 12px !important;
  line-height: 1 !important;
  font-weight: 950 !important;
  letter-spacing: -0.01em !important;
  border: 1px solid currentColor !important;
  background: rgba(255, 255, 255, 0.04) !important;
}

body.ft-public-site .hp-transfer-pred-list .hp-pred-pct.hp-pct-low {
  color: #f2a43a !important;
  background: rgba(242, 164, 58, 0.10) !important;
  box-shadow: 0 0 12px rgba(242, 164, 58, 0.08) !important;
}

body.ft-public-site .hp-transfer-pred-list .hp-pred-pct.hp-pct-high {
  color: #2ee87d !important;
  background: rgba(46, 232, 125, 0.10) !important;
  box-shadow: 0 0 12px rgba(46, 232, 125, 0.10) !important;
}

body.ft-public-site .hp-transfer-empty {
  padding: 10px 8px !important;
  border-radius: 12px !important;
  border: 1px dashed rgba(242, 201, 76, 0.20) !important;
  background: rgba(255, 255, 255, 0.025) !important;
}

@media (max-width: 1100px) {
  body.ft-public-site .hp-transfer-pred-list .hp-pred-row-layout {
    grid-template-columns: 24px minmax(0, 1fr) 28px 34px 54px !important;
  }
}


/* =========================================================
   TRANSFER PREDVIĐANJA — arrow shape tune only
   Thick glossy zig-zag arrow, closer to reference
   ========================================================= */

body.ft-public-site .hp-pred-trend {
  width: 34px !important;
  height: 26px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 0 !important;
  color: transparent !important;
  filter: drop-shadow(0 0 8px rgba(41, 214, 111, 0.28)) !important;
}

body.ft-public-site .hp-pred-trend::before {
  content: "" !important;
  display: block !important;
  width: 30px !important;
  height: 22px !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: contain !important;
  background-image: url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 48'>\
<defs>\
<linearGradient id='g' x1='0' y1='1' x2='1' y2='0'>\
<stop offset='0%' stop-color='%23169d45'/>\
<stop offset='55%' stop-color='%2332d96c'/>\
<stop offset='100%' stop-color='%2386ffae'/>\
</linearGradient>\
</defs>\
<path d='M8 35 L24 19 L38 29 L48 18' fill='none' stroke='url(%23g)' stroke-width='10' stroke-linecap='round' stroke-linejoin='round'/>\
<path d='M48 18 L48 10 L58 10' fill='none' stroke='url(%23g)' stroke-width='10' stroke-linecap='round' stroke-linejoin='round'/>\
</svg>") !important;
  transform: none !important;
  clip-path: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}


/* =========================================================
   TRANSFER PREDVIĐANJA — arrow head visibility fix only
   Clearer top-right arrow head, less "snake" look
   ========================================================= */

body.ft-public-site .hp-pred-trend {
  width: 36px !important;
  height: 28px !important;
  filter: drop-shadow(0 0 8px rgba(41, 214, 111, 0.30)) !important;
}

body.ft-public-site .hp-pred-trend::before {
  width: 34px !important;
  height: 24px !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: contain !important;
  background-image: url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 48'>\
<defs>\
<linearGradient id='g3' x1='0' y1='1' x2='1' y2='0'>\
<stop offset='0%' stop-color='%23159c44'/>\
<stop offset='55%' stop-color='%2334da6d'/>\
<stop offset='100%' stop-color='%2389ffb3'/>\
</linearGradient>\
</defs>\
<path d='M8 34 L22 21 L34 29 L45 18 L45 10 H58' fill='none' stroke='url(%23g3)' stroke-width='9' stroke-linecap='round' stroke-linejoin='round'/>\
<path d='M10 32 L22 21 L34 29 L45 18 L45 10 H56' fill='none' stroke='rgba(255,255,255,0.22)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' opacity='0.60'/>\
</svg>") !important;
}


/* =========================================================
   TRANSFER PREDVIĐANJA — filled zig-zag arrow only
   Solid body + clear triangular arrow head
   ========================================================= */

body.ft-public-site .hp-pred-trend {
  width: 36px !important;
  height: 26px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 0 !important;
  color: transparent !important;
  filter: drop-shadow(0 0 7px rgba(46, 232, 125, 0.32)) !important;
}

body.ft-public-site .hp-pred-trend::before {
  content: "" !important;
  display: block !important;
  width: 34px !important;
  height: 24px !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: contain !important;
  clip-path: none !important;
  transform: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  background-image: url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 70'>\
<defs>\
<linearGradient id='g' x1='0' y1='1' x2='1' y2='0'>\
<stop offset='0%' stop-color='%230aa84f'/>\
<stop offset='55%' stop-color='%232fe878'/>\
<stop offset='100%' stop-color='%2389ffb5'/>\
</linearGradient>\
</defs>\
<polygon fill='url(%23g)' points='4,55 14,66 40,40 52,56 78,30 69,21 96,4 88,36 80,28 50,60 38,44'/>\
<polygon fill='rgba(255,255,255,0.20)' points='13,54 40,29 52,45 76,21 73,18 52,38 40,22 10,50'/>\
</svg>") !important;
}


/* =========================================================
   TRANSFER PREDVIĐANJA — all green arrow only
   Remove dark part, keep solid green zig-zag arrow
   ========================================================= */

body.ft-public-site .hp-pred-trend::before {
  content: "" !important;
  display: block !important;
  width: 34px !important;
  height: 24px !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: contain !important;
  clip-path: none !important;
  transform: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  background-image: url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 70'>\
<defs>\
<linearGradient id='g2' x1='0' y1='1' x2='1' y2='0'>\
<stop offset='0%' stop-color='%2307a84d'/>\
<stop offset='55%' stop-color='%2327db6f'/>\
<stop offset='100%' stop-color='%237dffab'/>\
</linearGradient>\
</defs>\
<polygon fill='url(%23g2)' points='4,55 14,66 40,40 52,56 78,30 69,21 96,4 88,36 80,28 50,60 38,44'/>\
</svg>") !important;
}


/* =========================================================
   TRANSFER PREDVIĐANJA — reference-style green arrow only
   Clean filled zig-zag arrow like provided sample
   ========================================================= */

body.ft-public-site .hp-pred-trend {
  width: 38px !important;
  height: 28px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 0 !important;
  color: transparent !important;
  filter: drop-shadow(0 0 7px rgba(39, 214, 111, 0.28)) !important;
}

body.ft-public-site .hp-pred-trend::before {
  content: "" !important;
  display: block !important;
  width: 36px !important;
  height: 26px !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: contain !important;
  clip-path: none !important;
  transform: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  background-image: url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 80'>\
<defs>\
<linearGradient id='gref' x1='0' y1='1' x2='1' y2='0'>\
<stop offset='0%' stop-color='%2308a84e'/>\
<stop offset='55%' stop-color='%2326db6f'/>\
<stop offset='100%' stop-color='%237dffab'/>\
</linearGradient>\
</defs>\
<polygon fill='url(%23gref)' points='6,60 18,72 52,38 64,54 98,20 88,10 116,4 108,34 98,24 58,64 46,48'/>\
</svg>") !important;
}


/* =========================================================
   TRANSFER PREDVIĐANJA — arrow size polish only
   Bigger, bolder reference-style green arrow
   ========================================================= */

body.ft-public-site .hp-pred-trend {
  width: 42px !important;
  height: 30px !important;
}

body.ft-public-site .hp-pred-trend::before {
  width: 40px !important;
  height: 29px !important;
  background-image: url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 80'>\
<defs>\
<linearGradient id='grefb' x1='0' y1='1' x2='1' y2='0'>\
<stop offset='0%' stop-color='%2306a64c'/>\
<stop offset='55%' stop-color='%2329df72'/>\
<stop offset='100%' stop-color='%2384ffb1'/>\
</linearGradient>\
</defs>\
<polygon fill='url(%23grefb)' points='4,59 18,73 51,40 64,57 99,22 88,11 118,4 109,36 99,26 57,68 44,51'/>\
</svg>") !important;
}


/* =========================================================
   TRANSFER PREDVIĐANJA — arrow/crest spacing only
   Move arrow slightly left so it does not touch the crest
   ========================================================= */

body.ft-public-site .hp-pred-trend {
  margin-right: 8px !important;
  justify-self: center !important;
}

body.ft-public-site .hp-pred-crest,
body.ft-public-site .hp-pred-crest-ph {
  margin-left: 2px !important;
}


/* =========================================================
   TRANSFER PREDVIĐANJA — arrow slightly right + smaller only
   ========================================================= */

body.ft-public-site .hp-transfer-pred-list .hp-pred-row-layout {
  grid-template-columns: 26px minmax(0, 1fr) 40px 38px 58px !important;
  column-gap: 8px !important;
}

body.ft-public-site .hp-pred-trend {
  width: 38px !important;
  height: 28px !important;
  margin-right: 4px !important;
  margin-left: 4px !important;
  justify-self: center !important;
}

body.ft-public-site .hp-pred-trend::before {
  width: 34px !important;
  height: 24px !important;
}

body.ft-public-site .hp-pred-crest,
body.ft-public-site .hp-pred-crest-ph {
  margin-left: 2px !important;
}


/* ============================================================
   ARTICLE PAGE — POVEZANE VIJESTI (mini-cards aligned with Tok vijesti)
   Scoped to article-layout sidebar; does not touch homepage
   ============================================================ */

body .article-layout aside .sidebar:has(#relatedArticles) {
  border: 1px solid rgba(242, 201, 76, 0.35) !important;
  border-radius: 12px !important;
  background: rgba(8, 8, 8, 0.96) !important;
  padding: 8px !important;
}

body .article-layout aside .sidebar:has(#relatedArticles) > h3 {
  margin: 0 0 10px !important;
  font-size: 12px !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  color: var(--gold) !important;
  font-weight: 800 !important;
}

body .article-layout .sidebar #relatedArticles {
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
}

body .article-layout .sidebar #relatedArticles li {
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
}

body .article-layout .sidebar #relatedArticles li::before {
  content: none !important;
  display: none !important;
}

body .article-layout .article-related-card {
  display: grid !important;
  grid-template-columns: 84px minmax(0, 1fr) !important;
  gap: 10px !important;
  align-items: start !important;
  padding: 8px !important;
  border-radius: 10px !important;
  text-decoration: none !important;
  color: inherit !important;
  border: 1px solid rgba(242, 201, 76, 0.18) !important;
  background: rgba(0, 0, 0, 0.45) !important;
  transition:
    border-color 0.15s ease,
    background 0.15s ease !important;
}

body .article-layout .article-related-card:hover,
body .article-layout .article-related-card:focus {
  border-color: rgba(242, 201, 76, 0.38) !important;
  background: rgba(0, 0, 0, 0.58) !important;
}

body .article-layout .article-related-thumb {
  width: 84px !important;
  height: 52px !important;
  border-radius: 8px !important;
  object-fit: cover !important;
  display: block !important;
  background: #151515 !important;
}

body .article-layout .article-related-thumb.article-related-thumb-crest {
  object-fit: contain !important;
  padding: 5px !important;
  background: #111 !important;
}

body .article-layout .article-related-thumb-ph {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #151515 !important;
}

body .article-layout .article-related-ph-mark {
  font-weight: 900 !important;
  font-size: 11px !important;
  color: rgba(242, 201, 76, 0.85) !important;
  letter-spacing: 0.06em !important;
}

body .article-layout .article-related-item-body {
  min-width: 0 !important;
}

body .article-layout .article-related-title {
  margin: 0 !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  color: rgba(255, 255, 255, 0.96) !important;
  font-size: 13px !important;
  line-height: 1.35 !important;
  font-weight: 650 !important;
}

body .article-layout .article-related-date {
  margin-top: 4px !important;
  display: block !important;
  font-size: 11px !important;
  line-height: 1.2 !important;
  opacity: 0.72 !important;
}

@media (max-width: 980px) {
  body .article-layout .article-related-card {
    grid-template-columns: 84px minmax(0, 1fr) !important;
  }

  body .article-layout .article-related-thumb {
    width: 84px !important;
    height: 52px !important;
  }
}


/* JUVENTUS CREST VISIBILITY FIX — black logo on light circle */
body.ft-public-site .hp-club-row[href*="slug=juventus"] .hp-club-crest {
  background: #ffffff !important;
  padding: 4px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(242, 201, 76, 0.35) !important;
  object-fit: contain !important;
}


/* JUVENTUS CREST VISIBILITY FIX — black logo on light circle */
body.ft-public-site .hp-club-row[href*="slug=juventus"] .hp-club-crest {
  background: #ffffff !important;
  padding: 4px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(242, 201, 76, 0.35) !important;
  object-fit: contain !important;
}


/* =========================================================
   HEADER CLUB SEARCH
   Global club search in public header
   ========================================================= */

body.ft-public-site header.ft-header .ft-club-search {
  position: relative;
  flex: 0 1 360px;
  max-width: 360px;
  margin: 0 18px;
}

body.ft-public-site header.ft-header .ft-club-search-input {
  width: 100%;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(242, 201, 76, 0.22);
  background: rgba(255, 255, 255, 0.045);
  color: #f5f5f5;
  padding: 0 16px;
  outline: none;
  font-size: 13px;
  font-weight: 650;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

body.ft-public-site header.ft-header .ft-club-search-input::placeholder {
  color: rgba(255, 255, 255, 0.46);
}

body.ft-public-site header.ft-header .ft-club-search-input:focus {
  border-color: rgba(242, 201, 76, 0.58);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 0 0 3px rgba(242, 201, 76, 0.08);
}

body.ft-public-site header.ft-header .ft-club-search-results {
  display: none;
  position: absolute;
  z-index: 9999;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  max-height: 360px;
  overflow-y: auto;
  padding: 8px;
  border-radius: 16px;
  border: 1px solid rgba(242, 201, 76, 0.22);
  background: rgba(7, 7, 7, 0.98);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.48);
}

body.ft-public-site header.ft-header .ft-club-search-results.is-open {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

body.ft-public-site header.ft-header .ft-club-search-item {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 9px;
  align-items: center;
  padding: 8px 9px;
  border-radius: 12px;
  color: #f2f2f2;
  text-decoration: none;
  border: 1px solid transparent;
}

body.ft-public-site header.ft-header .ft-club-search-item:hover,
body.ft-public-site header.ft-header .ft-club-search-item:focus {
  border-color: rgba(242, 201, 76, 0.26);
  background: rgba(242, 201, 76, 0.08);
}

body.ft-public-site header.ft-header .ft-club-search-crest {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(242, 201, 76, 0.16);
  padding: 3px;
}

body.ft-public-site header.ft-header .ft-club-search-crest-ph {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 10px;
  font-weight: 900;
}

body.ft-public-site header.ft-header .ft-club-search-name {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 760;
}

body.ft-public-site header.ft-header .ft-club-search-empty {
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

@media (max-width: 980px) {
  body.ft-public-site header.ft-header .ft-header-inner {
    gap: 12px;
  }

  body.ft-public-site header.ft-header .ft-club-search {
    order: 3;
    flex: 1 1 100%;
    max-width: 100%;
    margin: 6px 0 0;
  }
}


/* =========================================================
   CLUB SEARCH — moved from header to left sidebar
   Search sits inside KLUBOVI box above top clubs list
   ========================================================= */

body.ft-public-site .hp-sidebar-left .hp-club-search-sidebar {
  position: relative !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 10px 0 12px !important;
  flex: none !important;
}

body.ft-public-site .hp-sidebar-left .hp-club-search-sidebar .ft-club-search-input {
  width: 100% !important;
  height: 34px !important;
  border-radius: 12px !important;
  border: 1px solid rgba(242, 201, 76, 0.24) !important;
  background: rgba(255, 255, 255, 0.045) !important;
  color: #f5f5f5 !important;
  padding: 0 11px !important;
  outline: none !important;
  font-size: 11px !important;
  font-weight: 700 !important;
}

body.ft-public-site .hp-sidebar-left .hp-club-search-sidebar .ft-club-search-input::placeholder {
  color: rgba(255, 255, 255, 0.46) !important;
}

body.ft-public-site .hp-sidebar-left .hp-club-search-sidebar .ft-club-search-input:focus {
  border-color: rgba(242, 201, 76, 0.58) !important;
  background: rgba(255, 255, 255, 0.07) !important;
  box-shadow: 0 0 0 3px rgba(242, 201, 76, 0.08) !important;
}

body.ft-public-site .hp-sidebar-left .hp-club-search-sidebar .ft-club-search-results {
  display: none !important;
  position: absolute !important;
  z-index: 9999 !important;
  top: calc(100% + 7px) !important;
  left: 0 !important;
  right: 0 !important;
  max-height: 310px !important;
  overflow-y: auto !important;
  padding: 7px !important;
  border-radius: 14px !important;
  border: 1px solid rgba(242, 201, 76, 0.22) !important;
  background: rgba(7, 7, 7, 0.98) !important;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.48) !important;
}

body.ft-public-site .hp-sidebar-left .hp-club-search-sidebar .ft-club-search-results.is-open {
  display: flex !important;
  flex-direction: column !important;
  gap: 6px !important;
}

body.ft-public-site .hp-sidebar-left .hp-club-search-sidebar .ft-club-search-item {
  display: grid !important;
  grid-template-columns: 28px minmax(0, 1fr) !important;
  gap: 8px !important;
  align-items: center !important;
  padding: 7px 8px !important;
  border-radius: 11px !important;
  color: #f2f2f2 !important;
  text-decoration: none !important;
  border: 1px solid transparent !important;
}

body.ft-public-site .hp-sidebar-left .hp-club-search-sidebar .ft-club-search-item:hover,
body.ft-public-site .hp-sidebar-left .hp-club-search-sidebar .ft-club-search-item:focus {
  border-color: rgba(242, 201, 76, 0.26) !important;
  background: rgba(242, 201, 76, 0.08) !important;
}

body.ft-public-site .hp-sidebar-left .hp-club-search-sidebar .ft-club-search-crest {
  width: 26px !important;
  height: 26px !important;
  border-radius: 999px !important;
  object-fit: contain !important;
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(242, 201, 76, 0.16) !important;
  padding: 3px !important;
}

body.ft-public-site .hp-sidebar-left .hp-club-search-sidebar .ft-club-search-crest-ph {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: var(--gold) !important;
  font-size: 10px !important;
  font-weight: 900 !important;
}

body.ft-public-site .hp-sidebar-left .hp-club-search-sidebar .ft-club-search-name {
  min-width: 0 !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
  font-size: 12px !important;
  font-weight: 760 !important;
}

body.ft-public-site .hp-sidebar-left .hp-club-search-sidebar .ft-club-search-empty {
  padding: 9px 10px !important;
  color: rgba(255, 255, 255, 0.58) !important;
  font-size: 12px !important;
}

/* Header no longer reserves visual space for club search */
body.ft-public-site header.ft-header > .ft-header-inner > .ft-club-search {
  display: none !important;
}


/* =========================================================
   HEADER NEWS SEARCH
   Search published articles from the top/right header area
   ========================================================= */

body.ft-public-site header.ft-header .ft-news-search {
  position: relative !important;
  flex: 0 1 310px !important;
  max-width: 310px !important;
  margin-left: auto !important;
  margin-right: 16px !important;
}

body.ft-public-site header.ft-header .ft-news-search-input {
  width: 100% !important;
  height: 34px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(242, 201, 76, 0.28) !important;
  background: rgba(255, 255, 255, 0.045) !important;
  color: #f5f5f5 !important;
  padding: 0 14px !important;
  outline: none !important;
  font-size: 12px !important;
  font-weight: 700 !important;
}

body.ft-public-site header.ft-header .ft-news-search-input::placeholder {
  color: rgba(255, 255, 255, 0.48) !important;
}

body.ft-public-site header.ft-header .ft-news-search-input:focus {
  border-color: rgba(242, 201, 76, 0.62) !important;
  background: rgba(255, 255, 255, 0.07) !important;
  box-shadow: 0 0 0 3px rgba(242, 201, 76, 0.08) !important;
}

body.ft-public-site header.ft-header .ft-news-search-results {
  display: none !important;
  position: absolute !important;
  z-index: 9999 !important;
  top: calc(100% + 8px) !important;
  left: 0 !important;
  right: 0 !important;
  max-height: 360px !important;
  overflow-y: auto !important;
  padding: 8px !important;
  border-radius: 16px !important;
  border: 1px solid rgba(242, 201, 76, 0.24) !important;
  background: rgba(7, 7, 7, 0.98) !important;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.48) !important;
}

body.ft-public-site header.ft-header .ft-news-search-results.is-open {
  display: flex !important;
  flex-direction: column !important;
  gap: 7px !important;
}

body.ft-public-site header.ft-header .ft-news-search-item {
  display: flex !important;
  flex-direction: column !important;
  gap: 4px !important;
  padding: 9px 10px !important;
  border-radius: 12px !important;
  color: #f2f2f2 !important;
  text-decoration: none !important;
  border: 1px solid transparent !important;
  background: rgba(255, 255, 255, 0.025) !important;
}

body.ft-public-site header.ft-header .ft-news-search-item:hover,
body.ft-public-site header.ft-header .ft-news-search-item:focus {
  border-color: rgba(242, 201, 76, 0.28) !important;
  background: rgba(242, 201, 76, 0.08) !important;
}

body.ft-public-site header.ft-header .ft-news-search-title {
  color: #f2f2f2 !important;
  font-size: 12px !important;
  line-height: 1.25 !important;
  font-weight: 800 !important;
}

body.ft-public-site header.ft-header .ft-news-search-date {
  color: rgba(255, 255, 255, 0.50) !important;
  font-size: 11px !important;
  line-height: 1.1 !important;
}

body.ft-public-site header.ft-header .ft-news-search-empty {
  padding: 10px 12px !important;
  color: rgba(255, 255, 255, 0.58) !important;
  font-size: 12px !important;
}

@media (max-width: 1100px) {
  body.ft-public-site header.ft-header .ft-news-search {
    flex: 1 1 240px !important;
    max-width: 280px !important;
    margin-left: 10px !important;
    margin-right: 10px !important;
  }
}

@media (max-width: 780px) {
  body.ft-public-site header.ft-header .ft-news-search {
    order: 3 !important;
    flex: 1 1 100% !important;
    max-width: 100% !important;
    margin: 8px 0 0 !important;
  }
}


/* =========================================================
   NEWS SEARCH — submit form + results page
   No live dropdown in header
   ========================================================= */

body.ft-public-site header.ft-header .ft-news-search {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  flex: 0 0 285px !important;
  max-width: 285px !important;
  margin-left: 18px !important;
  margin-right: 0 !important;
}

body.ft-public-site header.ft-header .ft-news-search-input {
  width: 100% !important;
  height: 34px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(242, 201, 76, 0.28) !important;
  background: rgba(255, 255, 255, 0.045) !important;
  color: #f5f5f5 !important;
  padding: 0 12px !important;
  outline: none !important;
  font-size: 12px !important;
  font-weight: 700 !important;
}

body.ft-public-site header.ft-header .ft-news-search-button {
  width: 34px !important;
  height: 34px !important;
  flex: 0 0 34px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(46, 232, 125, 0.48) !important;
  background: linear-gradient(135deg, #089a49, #2ee87d) !important;
  color: #02170b !important;
  cursor: pointer !important;
  font-weight: 900 !important;
  box-shadow: 0 0 14px rgba(46, 232, 125, 0.16) !important;
}

body.ft-public-site header.ft-header .ft-news-search-results,
body.ft-public-site header.ft-header .ft-news-search-results.is-open {
  display: none !important;
}

/* Search results page */
.ft-search-page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 34px 18px 70px;
}

.ft-search-panel {
  border: 1px solid rgba(242, 201, 76, 0.18);
  border-radius: 22px;
  background:
    radial-gradient(circle at top left, rgba(242, 201, 76, 0.08), transparent 34%),
    rgba(7, 7, 7, 0.72);
  padding: 22px;
}

.ft-search-page-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 118px;
  gap: 10px;
  margin-bottom: 24px;
}

.ft-search-page-input {
  height: 48px;
  border-radius: 16px;
  border: 1px solid rgba(242, 201, 76, 0.28);
  background: rgba(255,255,255,0.055);
  color: #f5f5f5;
  padding: 0 16px;
  font-size: 15px;
  outline: none;
}

.ft-search-page-button {
  border: 1px solid rgba(46, 232, 125, 0.48);
  border-radius: 16px;
  background: linear-gradient(135deg, #089a49, #2ee87d);
  color: #03180b;
  font-weight: 900;
  cursor: pointer;
}

.ft-search-heading h1 {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: clamp(26px, 4vw, 42px);
}

.ft-search-heading p {
  margin: 0 0 22px;
  color: rgba(255,255,255,0.62);
}

.ft-search-results-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ft-search-result-card {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 12px;
  border-radius: 18px;
  border: 1px solid rgba(242, 201, 76, 0.14);
  background: rgba(255,255,255,0.035);
  color: #f2f2f2;
  text-decoration: none;
}

.ft-search-result-card:hover {
  border-color: rgba(242, 201, 76, 0.34);
  background: rgba(242, 201, 76, 0.06);
}

.ft-search-result-img {
  width: 180px;
  height: 112px;
  border-radius: 14px;
  object-fit: cover;
  background: #090909;
  border: 1px solid rgba(242, 201, 76, 0.16);
}

.ft-search-result-ph {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-weight: 900;
}

.ft-search-result-body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.ft-search-result-category {
  color: #2ee87d;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.ft-search-result-title {
  color: #f7f7f7;
  font-size: clamp(18px, 2.2vw, 25px);
  line-height: 1.15;
  font-weight: 900;
}

.ft-search-result-date {
  color: rgba(255,255,255,0.54);
  font-size: 12px;
}

.ft-search-empty {
  padding: 18px;
  border-radius: 16px;
  border: 1px dashed rgba(242, 201, 76, 0.22);
  color: rgba(255,255,255,0.62);
}

@media (max-width: 900px) {
  body.ft-public-site header.ft-header .ft-news-search {
    order: 3 !important;
    flex: 1 1 100% !important;
    max-width: 100% !important;
    margin: 8px 0 0 !important;
  }

  .ft-search-result-card {
    grid-template-columns: 100px minmax(0, 1fr);
  }

  .ft-search-result-img {
    width: 100px;
    height: 76px;
  }
}


/* =========================================================
   NEWS SEARCH FINAL POLISH
   Header search aligned right + green Pretraga button
   ========================================================= */

body.ft-public-site header.ft-header .ft-header-inner {
  display: flex !important;
  align-items: center !important;
}

body.ft-public-site header.ft-header .ft-nav {
  margin-left: auto !important;
}

body.ft-public-site header.ft-header .ft-news-search {
  display: flex !important;
  align-items: center !important;
  gap: 7px !important;
  flex: 0 0 300px !important;
  max-width: 300px !important;
  margin-left: 22px !important;
  margin-right: 0 !important;
}

body.ft-public-site header.ft-header .ft-news-search-input {
  height: 34px !important;
  flex: 1 1 auto !important;
  min-width: 0 !important;
  border-radius: 999px !important;
  padding: 0 13px !important;
}

body.ft-public-site header.ft-header .ft-news-search-button {
  width: auto !important;
  min-width: 82px !important;
  height: 34px !important;
  padding: 0 13px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(46, 232, 125, 0.55) !important;
  background: linear-gradient(135deg, #079445, #2ee87d) !important;
  color: #03180b !important;
  font-size: 12px !important;
  font-weight: 950 !important;
  letter-spacing: 0.01em !important;
  cursor: pointer !important;
  box-shadow: 0 0 14px rgba(46, 232, 125, 0.18) !important;
}

body.ft-public-site header.ft-header .ft-news-search-button:hover,
body.ft-public-site header.ft-header .ft-news-search-button:focus {
  filter: brightness(1.08) !important;
}

body.ft-public-site header.ft-header .ft-news-search-results,
body.ft-public-site header.ft-header .ft-news-search-results.is-open {
  display: none !important;
}

/* Search page result cards closer to news/search listing style */
.ft-search-panel {
  max-width: 900px !important;
  margin: 0 auto !important;
}

.ft-search-results-list {
  gap: 12px !important;
}

.ft-search-result-card {
  grid-template-columns: 172px minmax(0, 1fr) !important;
  padding: 12px 0 !important;
  border-left: 0 !important;
  border-right: 0 !important;
  border-top: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.ft-search-result-img {
  width: 172px !important;
  height: 108px !important;
  border-radius: 4px !important;
}

.ft-search-result-title {
  font-size: clamp(17px, 2vw, 22px) !important;
}

@media (max-width: 980px) {
  body.ft-public-site header.ft-header .ft-news-search {
    order: 3 !important;
    flex: 1 1 100% !important;
    max-width: 100% !important;
    margin: 8px 0 0 !important;
  }

  .ft-search-result-card {
    grid-template-columns: 108px minmax(0, 1fr) !important;
  }

  .ft-search-result-img {
    width: 108px !important;
    height: 78px !important;
  }
}


/* =========================================================
   NEWS SEARCH — align header right + show results like listing
   ========================================================= */

/* Move header news search further right, above the right TRENDING column */
body.ft-public-site header.ft-header .ft-news-search {
  transform: translateX(78px) !important;
  flex: 0 0 300px !important;
  max-width: 300px !important;
}

/* Button text, not icon */
body.ft-public-site header.ft-header .ft-news-search-button {
  min-width: 82px !important;
  width: auto !important;
  padding: 0 14px !important;
  font-size: 12px !important;
  font-weight: 950 !important;
}

/* Search result page: less "box", more news listing */
.ft-search-page {
  max-width: 980px !important;
  padding-top: 28px !important;
}

.ft-search-panel {
  max-width: 920px !important;
  border: 0 !important;
  background: transparent !important;
  padding: 0 !important;
  margin: 0 auto !important;
}

.ft-search-page-form {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 118px !important;
  gap: 10px !important;
  margin-bottom: 28px !important;
}

.ft-search-page-input {
  height: 48px !important;
  border-radius: 14px !important;
  border: 1px solid rgba(242, 201, 76, 0.30) !important;
  background: rgba(255, 255, 255, 0.055) !important;
}

.ft-search-page-button {
  border-radius: 14px !important;
  background: linear-gradient(135deg, #079445, #2ee87d) !important;
  color: #03180b !important;
  font-weight: 950 !important;
}

.ft-search-heading {
  margin-bottom: 26px !important;
}

.ft-search-heading h1 {
  font-size: clamp(30px, 4vw, 46px) !important;
  line-height: 1.05 !important;
}

.ft-search-results-list {
  display: flex !important;
  flex-direction: column !important;
  gap: 0 !important;
}

.ft-search-result-card {
  display: grid !important;
  grid-template-columns: 190px minmax(0, 1fr) !important;
  gap: 16px !important;
  align-items: center !important;
  padding: 14px 0 !important;
  border-radius: 0 !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(255,255,255,0.11) !important;
  background: transparent !important;
  box-shadow: none !important;
}

.ft-search-result-card:hover {
  background: rgba(242, 201, 76, 0.035) !important;
}

.ft-search-result-img {
  width: 190px !important;
  height: 116px !important;
  border-radius: 4px !important;
  object-fit: cover !important;
}

.ft-search-result-category {
  color: #2ee87d !important;
}

.ft-search-result-title {
  font-size: clamp(18px, 2.2vw, 24px) !important;
  line-height: 1.18 !important;
}

@media (max-width: 1200px) {
  body.ft-public-site header.ft-header .ft-news-search {
    transform: translateX(42px) !important;
  }
}

@media (max-width: 980px) {
  body.ft-public-site header.ft-header .ft-news-search {
    transform: none !important;
  }

  .ft-search-result-card {
    grid-template-columns: 108px minmax(0, 1fr) !important;
  }

  .ft-search-result-img {
    width: 108px !important;
    height: 78px !important;
  }
}


/* =========================================================
   NEWS SEARCH — final right alignment over TRENDING column
   ========================================================= */

body.ft-public-site header.ft-header .ft-header-inner {
  display: grid !important;
  grid-template-columns: auto minmax(0, 1fr) auto !important;
  align-items: center !important;
  column-gap: 18px !important;
}

body.ft-public-site header.ft-header .ft-logo {
  grid-column: 1 !important;
}

body.ft-public-site header.ft-header .ft-nav {
  grid-column: 2 !important;
  justify-self: end !important;
  margin-left: 0 !important;
}

body.ft-public-site header.ft-header .ft-news-search {
  grid-column: 3 !important;
  justify-self: end !important;
  display: flex !important;
  align-items: center !important;
  gap: 7px !important;
  width: 300px !important;
  max-width: 300px !important;
  margin: 0 !important;
  transform: translateX(92px) !important;
}

body.ft-public-site header.ft-header .ft-news-search-input {
  height: 34px !important;
  min-width: 0 !important;
  flex: 1 1 auto !important;
}

body.ft-public-site header.ft-header .ft-news-search-button {
  width: auto !important;
  min-width: 82px !important;
  height: 34px !important;
  padding: 0 14px !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, #079445, #2ee87d) !important;
  color: #03180b !important;
  font-size: 12px !important;
  font-weight: 950 !important;
}

@media (max-width: 1280px) {
  body.ft-public-site header.ft-header .ft-news-search {
    transform: translateX(58px) !important;
    width: 285px !important;
  }
}

@media (max-width: 1100px) {
  body.ft-public-site header.ft-header .ft-header-inner {
    display: flex !important;
    flex-wrap: wrap !important;
  }

  body.ft-public-site header.ft-header .ft-news-search {
    transform: none !important;
    width: 100% !important;
    max-width: 100% !important;
    flex: 1 1 100% !important;
    margin-top: 8px !important;
  }
}


/* =========================================================
   NEWS SEARCH — HARD POSITION FIX
   Force search to the far right of header, above right sidebar area
   ========================================================= */

body.ft-public-site header.ft-header .ft-header-inner {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  min-height: 64px !important;
}

body.ft-public-site header.ft-header .ft-logo {
  flex: 0 0 auto !important;
}

body.ft-public-site header.ft-header .ft-nav {
  margin-left: auto !important;
  margin-right: 335px !important;
  flex: 0 0 auto !important;
}

body.ft-public-site header.ft-header .ft-news-search {
  position: absolute !important;
  top: 50% !important;
  right: 0 !important;
  transform: translateY(-50%) !important;
  display: flex !important;
  align-items: center !important;
  gap: 7px !important;
  width: 300px !important;
  max-width: 300px !important;
  margin: 0 !important;
  z-index: 50 !important;
}

body.ft-public-site header.ft-header .ft-news-search-input {
  height: 34px !important;
  min-width: 0 !important;
  flex: 1 1 auto !important;
}

body.ft-public-site header.ft-header .ft-news-search-button {
  min-width: 82px !important;
  height: 34px !important;
  padding: 0 14px !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, #079445, #2ee87d) !important;
  color: #03180b !important;
  font-size: 12px !important;
  font-weight: 950 !important;
}

@media (max-width: 1100px) {
  body.ft-public-site header.ft-header .ft-header-inner {
    flex-wrap: wrap !important;
  }

  body.ft-public-site header.ft-header .ft-nav {
    margin-right: 0 !important;
  }

  body.ft-public-site header.ft-header .ft-news-search {
    position: static !important;
    transform: none !important;
    width: 100% !important;
    max-width: 100% !important;
    flex: 1 1 100% !important;
    margin-top: 8px !important;
  }
}


/* =========================================================
   SEARCH FINAL FIX
   1) Hide duplicate search form on search.html results page
   2) Move header search further right above TRENDING column
   ========================================================= */

/* Search results page should show only "Rezultati za..." + results */
body.ft-public-site .ft-search-page-form {
  display: none !important;
}

/* Reduce top gap after removing duplicate form */
body.ft-public-site .ft-search-page {
  padding-top: 34px !important;
}

body.ft-public-site .ft-search-heading {
  margin-top: 0 !important;
}

/* Header news search: push right to align visually above right TRENDING column */
body.ft-public-site header.ft-header .ft-news-search {
  transform: translate(92px, -50%) !important;
}

/* On search.html if header uses static/flex state, still push right */
body.ft-public-site header.ft-header .ft-header-inner > .ft-news-search {
  margin-left: 26px !important;
}

@media (max-width: 1100px) {
  body.ft-public-site header.ft-header .ft-news-search {
    transform: none !important;
  }
}


/* =========================================================
   SEARCH MICRO ALIGN
   Samo mali pomak desno da legne iznad TRENDING kolone
   ========================================================= */

body.ft-public-site header.ft-header .ft-news-search {
  right: -18px !important;
}

@media (max-width: 1100px) {
  body.ft-public-site header.ft-header .ft-news-search {
    right: auto !important;
  }
}


/* =========================================================
   SEARCH MICRO ALIGN 2
   Još malo desno da bude paralelno sa TRENDING boxom
   ========================================================= */

body.ft-public-site header.ft-header .ft-news-search {
  right: -40px !important;
}

@media (max-width: 1100px) {
  body.ft-public-site header.ft-header .ft-news-search {
    right: auto !important;
  }
}


/* Homepage card crest fallback: U FOKUSU + NOVO */
body.ft-public-site .hp-glasine-img-crest-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at center, rgba(212, 175, 55, 0.12), rgba(0, 0, 0, 0.92) 68%);
  border: 1px solid rgba(212, 175, 55, 0.20);
}

body.ft-public-site .hp-glasine-img-crest {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 22px;
  box-sizing: border-box;
}

body.ft-public-site .hp-novo-thumb-wrap-crest {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at center, rgba(212, 175, 55, 0.12), rgba(0, 0, 0, 0.92) 68%);
  border: 1px solid rgba(212, 175, 55, 0.18);
}

body.ft-public-site .hp-novo-thumb-crest {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
  box-sizing: border-box;
}

/* Rail lists crest fallback: TRENDING + NAJČITANIJE */
body.ft-public-site .hp-rail-thumb-crest-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(circle at center, rgba(212, 175, 55, 0.12), rgba(0, 0, 0, 0.92) 70%);
  border: 1px solid rgba(212, 175, 55, 0.18);
  box-sizing: border-box;
}

body.ft-public-site .hp-rail-thumb-crest {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 7px;
  box-sizing: border-box;
  display: block;
}

/* Rail lists crest fallback size tweak */
body.ft-public-site .hp-rail-thumb-crest {
  padding: 3px !important;
  max-width: 92% !important;
  max-height: 92% !important;
}

/* Rail lists crest fallback bigger emblem */
body.ft-public-site .hp-rail-thumb-crest-wrap {
  min-width: 52px !important;
  width: 52px !important;
  height: 42px !important;
}

body.ft-public-site .hp-rail-thumb-crest {
  width: 100% !important;
  height: 100% !important;
  padding: 1px !important;
  object-fit: contain !important;
}

/* Rail lists crest fallback: slightly bigger final tweak */
body.ft-public-site .hp-rail-thumb-crest-wrap {
  min-width: 58px !important;
  width: 58px !important;
  height: 46px !important;
}

body.ft-public-site .hp-rail-thumb-crest {
  width: 100% !important;
  height: 100% !important;
  padding: 0 !important;
  object-fit: contain !important;
}

/* Article hero crest spacing tune */
body.ft-public-site .article-editorial-hero .article-hero-crest {
  width: clamp(56px, 5.4vw, 72px) !important;
  height: clamp(56px, 5.4vw, 72px) !important;
  object-fit: contain !important;
  top: clamp(48px, 6vw, 72px) !important;
  left: clamp(28px, 4vw, 46px) !important;
  transform: none !important;
  margin: 0 !important;
}

body.ft-public-site .article-editorial-hero .article-editorial-copy {
  padding-top: clamp(122px, 14vw, 158px) !important;
}

body.ft-public-site .article-editorial-hero .article-hero-headline {
  font-size: clamp(34px, 4.05vw, 54px) !important;
  line-height: 1.02 !important;
  max-width: 11.5ch;
}

@media (max-width: 760px) {
  body.ft-public-site .article-editorial-hero .article-hero-crest {
    width: 52px !important;
    height: 52px !important;
    top: 46px !important;
    left: 22px !important;
  }

  body.ft-public-site .article-editorial-hero .article-editorial-copy {
    padding-top: 108px !important;
  }

  body.ft-public-site .article-editorial-hero .article-hero-headline {
    font-size: clamp(30px, 9vw, 42px) !important;
    max-width: 12ch;
  }
}

/* Article hero headline width tune */
body.ft-public-site .article-editorial-hero .article-hero-headline {
  max-width: 13.8ch !important;
}

@media (max-width: 760px) {
  body.ft-public-site .article-editorial-hero .article-hero-headline {
    max-width: 13.2ch !important;
  }
}

/* Article body final spacing tune */
body.ft-public-site .article-layout .article-main .article-body {
  margin-top: clamp(26px, 3.2vw, 44px) !important;
  padding-top: clamp(18px, 2.2vw, 28px) !important;
  border-top: 1px solid rgba(212, 175, 55, 0.14) !important;
  max-width: 820px !important;
  font-size: 18px !important;
  line-height: 1.82 !important;
}

body.ft-public-site .article-layout .article-main .article-body p {
  margin: 0 0 20px !important;
}

body.ft-public-site .article-layout .article-main .article-body p:first-child {
  margin-top: 0 !important;
}

@media (max-width: 760px) {
  body.ft-public-site .article-layout .article-main .article-body {
    margin-top: 24px !important;
    padding-top: 18px !important;
    font-size: 16.5px !important;
    line-height: 1.75 !important;
  }

  body.ft-public-site .article-layout .article-main .article-body p {
    margin-bottom: 18px !important;
  }
}

/* Laptop density tune: 1366x768 class screens */
@media (min-width: 1024px) and (max-width: 1440px) and (max-height: 820px) {
  body.ft-public-site .ft-header-inner {
    min-height: 58px !important;
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }

  body.ft-public-site .ft-logo {
    transform: scale(0.92);
    transform-origin: left center;
  }

  body.ft-public-site .ft-nav a {
    font-size: 11px !important;
    letter-spacing: 0.08em !important;
    padding: 8px 10px !important;
  }

  body.ft-public-site .homepage-layout,
  body.ft-public-site .hp-shell,
  body.ft-public-site .hp-page {
    gap: 16px !important;
  }

  body.ft-public-site .hp-sidebar-left {
    width: 220px !important;
    max-width: 220px !important;
  }

  body.ft-public-site .hp-sidebar-right {
    width: 260px !important;
    max-width: 260px !important;
  }

  body.ft-public-site .hp-main-column {
    max-width: 720px !important;
  }

  body.ft-public-site .hp-main-hero,
  body.ft-public-site #hero.hero-integrated {
    min-height: 360px !important;
    max-height: 380px !important;
  }

  body.ft-public-site .hp-main-hero .hero-copy,
  body.ft-public-site #hero .hero-copy {
    padding: 22px 28px !important;
  }

  body.ft-public-site .hp-main-hero h1,
  body.ft-public-site #heroTitle {
    font-size: clamp(30px, 3.2vw, 44px) !important;
    line-height: 1.02 !important;
  }

  body.ft-public-site .hp-glasine-grid,
  body.ft-public-site .hp-novo-grid {
    gap: 14px !important;
  }

  body.ft-public-site .hp-glasine-card,
  body.ft-public-site .hp-novo-card {
    border-radius: 14px !important;
  }

  body.ft-public-site .hp-glasine-media {
    height: 126px !important;
  }

  body.ft-public-site .hp-glasine-body,
  body.ft-public-site .hp-novo-card .card-body {
    padding: 12px !important;
  }

  body.ft-public-site .hp-glasine-title,
  body.ft-public-site .hp-novo-card h3 {
    font-size: 15px !important;
    line-height: 1.22 !important;
  }

  body.ft-public-site .section-title {
    margin-top: 22px !important;
    margin-bottom: 12px !important;
  }

  body.ft-public-site .section-title h2 {
    font-size: 18px !important;
  }

  body.ft-public-site .hp-rail-panel {
    padding: 12px !important;
  }

  body.ft-public-site .hp-rail-item {
    padding: 8px !important;
  }

  body.ft-public-site .hp-rail-item-title {
    font-size: 12px !important;
    line-height: 1.22 !important;
  }
}

/* Laptop 1366 overflow fix */
@media (min-width: 1024px) and (max-width: 1440px) and (max-height: 820px) {
  html,
  body {
    overflow-x: hidden !important;
  }

  body.ft-public-site .homepage-layout,
  body.ft-public-site .hp-shell,
  body.ft-public-site .hp-page {
    max-width: 100vw !important;
  }

  body.ft-public-site .hp-sidebar-left {
    width: 205px !important;
    max-width: 205px !important;
    min-width: 205px !important;
  }

  body.ft-public-site .hp-sidebar-right {
    width: 245px !important;
    max-width: 245px !important;
    min-width: 245px !important;
  }

  body.ft-public-site .hp-main-column {
    max-width: 700px !important;
    min-width: 0 !important;
  }

  body.ft-public-site main,
  body.ft-public-site .hp-layout,
  body.ft-public-site .homepage-layout {
    column-gap: 14px !important;
    gap: 14px !important;
  }
}

/* Article page laptop density tune: 1366x768 class screens */
@media (min-width: 1024px) and (max-width: 1440px) and (max-height: 820px) {
  body.ft-public-site .article-layout {
    gap: 18px !important;
    padding-top: 28px !important;
  }

  body.ft-public-site .article-layout .article-main {
    max-width: 780px !important;
    min-width: 0 !important;
  }

  body.ft-public-site .article-layout aside {
    max-width: 300px !important;
    width: 300px !important;
    min-width: 300px !important;
  }

  body.ft-public-site .article-editorial-hero {
    min-height: 430px !important;
    max-height: 460px !important;
  }

  body.ft-public-site .article-editorial-copy {
    padding: 86px 28px 28px 28px !important;
  }

  body.ft-public-site .article-editorial-visual {
    min-height: 430px !important;
    max-height: 460px !important;
  }

  body.ft-public-site .article-editorial-visual .article-hero-img,
  body.ft-public-site .article-hero-img {
    height: 100% !important;
    max-height: 460px !important;
    object-fit: cover !important;
  }

  body.ft-public-site .article-editorial-hero .article-hero-crest {
    width: 62px !important;
    height: 62px !important;
    top: 58px !important;
    left: 28px !important;
  }

  body.ft-public-site .article-editorial-hero .article-hero-headline {
    font-size: clamp(32px, 3.2vw, 44px) !important;
    line-height: 1.02 !important;
    max-width: 13.8ch !important;
  }

  body.ft-public-site .article-editorial-copy .muted,
  body.ft-public-site #attribution {
    font-size: 12px !important;
    line-height: 1.45 !important;
    max-width: 300px !important;
  }

  body.ft-public-site .article-layout .prob-card,
  body.ft-public-site .article-layout aside .sidebar {
    padding: 14px !important;
  }

  body.ft-public-site .article-layout .article-main .article-body {
    margin-top: 24px !important;
    padding-top: 18px !important;
    max-width: 760px !important;
    font-size: 17px !important;
    line-height: 1.78 !important;
  }

  body.ft-public-site .article-layout .article-main .article-body p {
    margin-bottom: 18px !important;
  }
}

/* Article hero right visual fallback when no hero_image_url */
body.ft-public-site .article-editorial-visual .article-hero-visual-fallback {
  width: 100%;
  height: 100%;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background:
    radial-gradient(circle at center, rgba(212, 175, 55, 0.14), rgba(0, 0, 0, 0.94) 68%);
  border-left: 1px solid rgba(212, 175, 55, 0.14);
  color: rgba(212, 175, 55, 0.65);
}

body.ft-public-site .article-editorial-visual .article-hero-visual-fallback-crest img {
  width: min(48%, 270px);
  height: min(48%, 270px);
  object-fit: contain;
  filter: drop-shadow(0 18px 36px rgba(0, 0, 0, 0.45));
}

body.ft-public-site .article-editorial-visual .article-hero-visual-fallback .placeholder-mark {
  font-weight: 900;
  letter-spacing: 0.12em;
  font-size: 34px;
  color: rgba(212, 175, 55, 0.58);
}

body.ft-public-site .article-editorial-visual .article-hero-visual-fallback span {
  margin-top: 10px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

@media (min-width: 1024px) and (max-width: 1440px) and (max-height: 820px) {
  body.ft-public-site .article-editorial-visual .article-hero-visual-fallback {
    min-height: 430px;
    max-height: 460px;
  }
}

@media (max-width: 760px) {
  body.ft-public-site .article-editorial-visual .article-hero-visual-fallback {
    min-height: 280px;
  }

  body.ft-public-site .article-editorial-visual .article-hero-visual-fallback-crest img {
    width: min(44%, 180px);
    height: min(44%, 180px);
  }
}

/* Homepage preview hero fallback crest size final tune */
body.ft-public-site .hp-hero-visual-fallback-crest img {
  width: min(30%, 170px) !important;
  height: min(30%, 170px) !important;
  opacity: 0.92;
}

@media (max-width: 760px) {
  body.ft-public-site .hp-hero-visual-fallback-crest img {
    width: min(34%, 140px) !important;
    height: min(34%, 140px) !important;
  }
}

/* Homepage preview hero fallback crest final position */
body.ft-public-site .hp-hero-visual-fallback {
  position: relative !important;
  overflow: hidden !important;
}

body.ft-public-site .hp-hero-visual-fallback-crest img {
  position: absolute !important;
  right: 9% !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: min(24%, 145px) !important;
  height: min(24%, 145px) !important;
  opacity: 0.58 !important;
  pointer-events: none !important;
  filter: drop-shadow(0 18px 36px rgba(0, 0, 0, 0.55)) !important;
}

@media (max-width: 760px) {
  body.ft-public-site .hp-hero-visual-fallback-crest img {
    right: 8% !important;
    top: 48% !important;
    width: min(28%, 120px) !important;
    height: min(28%, 120px) !important;
    opacity: 0.48 !important;
  }
}

/* Homepage preview hero fallback crest: visible but not intrusive */
body.ft-public-site .hp-hero-visual-fallback {
  position: relative !important;
  overflow: hidden !important;
}

body.ft-public-site .hp-hero-visual-fallback-crest img {
  position: absolute !important;
  right: 8% !important;
  top: 45% !important;
  transform: translateY(-50%) !important;
  width: min(34%, 230px) !important;
  height: min(34%, 230px) !important;
  opacity: 0.78 !important;
  pointer-events: none !important;
  z-index: 1 !important;
  filter: drop-shadow(0 18px 42px rgba(0, 0, 0, 0.65)) !important;
}

@media (max-width: 760px) {
  body.ft-public-site .hp-hero-visual-fallback-crest img {
    right: 7% !important;
    top: 42% !important;
    width: min(36%, 150px) !important;
    height: min(36%, 150px) !important;
    opacity: 0.68 !important;
  }
}

/* FINAL: homepage-preview hero crest fallback visible reset */
body.ft-public-site .hero.hero-integrated.hp-main-hero .hero-visual {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 0 !important;
  overflow: hidden !important;
}

body.ft-public-site .hero.hero-integrated.hp-main-hero .hero-visual .hp-hero-visual-fallback {
  width: 100% !important;
  height: 100% !important;
  min-height: 340px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: relative !important;
  overflow: hidden !important;
  background:
    radial-gradient(circle at center, rgba(212, 175, 55, 0.14), rgba(0, 0, 0, 0.94) 70%) !important;
}

body.ft-public-site .hero.hero-integrated.hp-main-hero .hero-visual .hp-hero-visual-fallback.hp-hero-visual-fallback-crest img {
  position: static !important;
  display: block !important;
  width: 190px !important;
  height: 190px !important;
  max-width: 48% !important;
  max-height: 74% !important;
  opacity: 0.9 !important;
  visibility: visible !important;
  object-fit: contain !important;
  transform: none !important;
  pointer-events: none !important;
  z-index: 2 !important;
  filter: drop-shadow(0 18px 42px rgba(0, 0, 0, 0.65)) !important;
}

@media (max-width: 760px) {
  body.ft-public-site .hero.hero-integrated.hp-main-hero .hero-visual .hp-hero-visual-fallback {
    min-height: 260px !important;
  }

  body.ft-public-site .hero.hero-integrated.hp-main-hero .hero-visual .hp-hero-visual-fallback.hp-hero-visual-fallback-crest img {
    width: 140px !important;
    height: 140px !important;
    max-width: 46% !important;
    max-height: 70% !important;
    opacity: 0.82 !important;
  }
}

/* FINAL: homepage-preview fallback crest as right-side watermark */
body.ft-public-site .hero.hero-integrated.hp-main-hero .hero-visual .hp-hero-visual-fallback.hp-hero-visual-fallback-crest {
  position: relative !important;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 340px !important;
  overflow: hidden !important;
  background:
    radial-gradient(circle at 72% 48%, rgba(212, 175, 55, 0.13), rgba(0, 0, 0, 0.94) 62%) !important;
}

body.ft-public-site .hero.hero-integrated.hp-main-hero .hero-visual .hp-hero-visual-fallback.hp-hero-visual-fallback-crest img {
  position: absolute !important;
  right: 10% !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 210px !important;
  height: 210px !important;
  max-width: 42% !important;
  max-height: 72% !important;
  opacity: 0.62 !important;
  object-fit: contain !important;
  pointer-events: none !important;
  z-index: 0 !important;
  filter: drop-shadow(0 18px 42px rgba(0, 0, 0, 0.65)) !important;
}

body.ft-public-site .hero.hero-integrated.hp-main-hero .hero-content {
  position: relative !important;
  z-index: 3 !important;
}

@media (max-width: 760px) {
  body.ft-public-site .hero.hero-integrated.hp-main-hero .hero-visual .hp-hero-visual-fallback.hp-hero-visual-fallback-crest {
    min-height: 260px !important;
  }

  body.ft-public-site .hero.hero-integrated.hp-main-hero .hero-visual .hp-hero-visual-fallback.hp-hero-visual-fallback-crest img {
    right: 7% !important;
    top: 48% !important;
    width: 140px !important;
    height: 140px !important;
    max-width: 40% !important;
    opacity: 0.5 !important;
  }
}

/* Homepage-preview fallback crest: top-left above badge */
body.ft-public-site .hero.hero-integrated.hp-main-hero .hero-content {
  position: relative !important;
  padding-top: 118px !important;
}

body.ft-public-site .hero.hero-integrated.hp-main-hero .hero-content .hp-hero-top-left-crest {
  position: absolute !important;
  top: 18px !important;
  left: 28px !important;
  width: 102px !important;
  height: 102px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  pointer-events: none !important;
  z-index: 4 !important;
}

body.ft-public-site .hero.hero-integrated.hp-main-hero .hero-content .hp-hero-top-left-crest img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.62)) !important;
}

body.ft-public-site .hero.hero-integrated.hp-main-hero .hero-content .hero-meta,
body.ft-public-site .hero.hero-integrated.hp-main-hero .hero-content #heroTitle,
body.ft-public-site .hero.hero-integrated.hp-main-hero .hero-content #heroLead,
body.ft-public-site .hero.hero-integrated.hp-main-hero .hero-content #heroCta {
  position: relative !important;
  z-index: 5 !important;
}

body.ft-public-site .hero.hero-integrated.hp-main-hero .hero-visual .hp-hero-visual-fallback-empty {
  width: 100% !important;
  height: 100% !important;
  min-height: 340px !important;
  background:
    radial-gradient(circle at 55% 35%, rgba(212, 175, 55, 0.10), rgba(0, 0, 0, 0.96) 62%) !important;
}

@media (max-width: 760px) {
  body.ft-public-site .hero.hero-integrated.hp-main-hero .hero-content {
    padding-top: 96px !important;
  }

  body.ft-public-site .hero.hero-integrated.hp-main-hero .hero-content .hp-hero-top-left-crest {
    top: 14px !important;
    left: 18px !important;
    width: 78px !important;
    height: 78px !important;
  }

  body.ft-public-site .hero.hero-integrated.hp-main-hero .hero-visual .hp-hero-visual-fallback-empty {
    min-height: 220px !important;
  }
}

/* Homepage-preview hero crest: move above badge */
body.ft-public-site .hero.hero-integrated.hp-main-hero .hero-content .hp-hero-top-left-crest {
  top: 16px !important;
  left: 28px !important;
  width: 92px !important;
  height: 92px !important;
  z-index: 4 !important;
}

body.ft-public-site .hero.hero-integrated.hp-main-hero .hero-content {
  padding-top: 128px !important;
}

@media (max-width: 760px) {
  body.ft-public-site .hero.hero-integrated.hp-main-hero .hero-content .hp-hero-top-left-crest {
    top: 14px !important;
    left: 18px !important;
    width: 76px !important;
    height: 76px !important;
  }

  body.ft-public-site .hero.hero-integrated.hp-main-hero .hero-content {
    padding-top: 104px !important;
  }
}

/* Force spacing for homepage-preview top-left crest */
body.ft-public-site #hero.hero.hero-integrated.hp-main-hero .hero-content {
  position: relative !important;
  padding-top: 132px !important;
}

/* FINAL FIX: homepage-preview crest above badge in normal flow */
body.ft-public-site #hero.hero.hero-integrated.hp-main-hero .hero-content:has(.hp-hero-top-left-crest) {
  padding-top: 42px !important;
}

body.ft-public-site #hero.hero.hero-integrated.hp-main-hero .hero-content .hp-hero-top-left-crest {
  position: static !important;
  top: auto !important;
  left: auto !important;
  width: 86px !important;
  height: 86px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 0 14px 0 !important;
  z-index: 5 !important;
  pointer-events: none !important;
}

body.ft-public-site #hero.hero.hero-integrated.hp-main-hero .hero-content .hp-hero-top-left-crest img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  filter: drop-shadow(0 12px 28px rgba(0,0,0,0.62)) !important;
}

body.ft-public-site #hero.hero.hero-integrated.hp-main-hero .hero-content .hp-hero-top-left-crest + .hero-meta {
  margin-top: 0 !important;
}

@media (max-width: 760px) {
  body.ft-public-site #hero.hero.hero-integrated.hp-main-hero .hero-content:has(.hp-hero-top-left-crest) {
    padding-top: 34px !important;
  }

  body.ft-public-site #hero.hero.hero-integrated.hp-main-hero .hero-content .hp-hero-top-left-crest {
    width: 72px !important;
    height: 72px !important;
    margin-bottom: 12px !important;
  }
}

/* Admin crest preview final containment override */
.crest-admin-box .crest-preview-card {
  overflow: hidden !important;
  box-sizing: border-box !important;
}

.crest-admin-box .crest-preview-card #crestPreviewImg {
  display: block !important;
  width: auto !important;
  height: auto !important;
  max-width: 72% !important;
  max-height: 72% !important;
  object-fit: contain !important;
}

/* Light crest plate for dark crests like Juventus */
.crest-admin-box .crest-preview-card {
  background:
    radial-gradient(circle at center, rgba(255,255,255,0.98) 0%, rgba(246,246,246,0.94) 58%, rgba(242,201,76,0.18) 100%) !important;
  border: 1px solid rgba(242,201,76,0.45) !important;
  box-shadow:
    inset 0 0 0 1px rgba(0,0,0,0.08),
    0 14px 34px rgba(0,0,0,0.36) !important;
}

.crest-admin-box .crest-preview-card #crestPreviewImg {
  filter: drop-shadow(0 7px 13px rgba(0,0,0,0.22)) !important;
}

/* Homepage/preview top-left crest plate, similar to KLUBOVI crest visibility */
body.ft-public-site #hero.hero.hero-integrated.hp-main-hero .hero-content .hp-hero-top-left-crest {
  background:
    radial-gradient(circle at center, rgba(255,255,255,0.98) 0%, rgba(246,246,246,0.94) 62%, rgba(242,201,76,0.16) 100%) !important;
  border: 1px solid rgba(242,201,76,0.42) !important;
  border-radius: 18px !important;
  padding: 10px !important;
  box-shadow:
    inset 0 0 0 1px rgba(0,0,0,0.08),
    0 14px 34px rgba(0,0,0,0.38) !important;
}

body.ft-public-site #hero.hero.hero-integrated.hp-main-hero .hero-content .hp-hero-top-left-crest img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  filter: drop-shadow(0 7px 13px rgba(0,0,0,0.22)) !important;
}

/* PUBLIC MOBILE HOMEPAGE LAYOUT v1
   Scope: live index.html only via body.ft-home-mobile-public.
   Desktop stays unchanged. No Supabase embeds. No MutationObserver.
*/
.ft-mobile-only-nav,
.ft-mobile-club-title {
  display: none !important;
}

@media (max-width: 760px) {
  body.ft-home-mobile-public {
    overflow-x: hidden !important;
    background: #050505 !important;
  }

  body.ft-home-mobile-public .ft-desktop-club-title {
    display: none !important;
  }

  body.ft-home-mobile-public .ft-mobile-club-title {
    display: inline !important;
  }

  body.ft-home-mobile-public .ft-mobile-only-nav {
    display: inline-flex !important;
  }

  body.ft-home-mobile-public header.ft-header {
    position: sticky !important;
    top: 0 !important;
    z-index: 1000 !important;
    background: rgba(5, 5, 5, 0.97) !important;
    backdrop-filter: blur(10px) !important;
  }

  body.ft-home-mobile-public header.ft-header .ft-header-inner {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    padding: 12px 14px 14px !important;
  }

  body.ft-home-mobile-public header.ft-header .ft-logo {
    justify-content: flex-start !important;
  }

  body.ft-home-mobile-public header.ft-header .ft-nav {
    display: grid !important;
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    gap: 8px !important;
    width: 100% !important;
    overflow: visible !important;
  }

  body.ft-home-mobile-public header.ft-header .ft-nav a {
    min-height: 38px !important;
    padding: 0 6px !important;
    border-radius: 10px !important;
    border: 1px solid rgba(242, 201, 76, 0.16) !important;
    background: rgba(255, 255, 255, 0.055) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    font-size: 10px !important;
    line-height: 1.1 !important;
    letter-spacing: 0.08em !important;
    white-space: normal !important;
  }

  body.ft-home-mobile-public header.ft-header .ft-news-search {
    width: 100% !important;
    max-width: none !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    gap: 8px !important;
  }

  body.ft-home-mobile-public header.ft-header .ft-news-search-input {
    min-height: 42px !important;
    font-size: 14px !important;
  }

  body.ft-home-mobile-public header.ft-header .ft-news-search-button {
    min-height: 42px !important;
    padding: 0 12px !important;
    font-size: 12px !important;
  }

  body.ft-home-mobile-public .ft-home-wrap.ft-page-wrap {
    width: 100% !important;
    max-width: none !important;
    padding: 0 12px !important;
    box-sizing: border-box !important;
  }

  body.ft-home-mobile-public .layout.hp-premium-layout {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    padding: 14px 0 50px !important;
  }

  body.ft-home-mobile-public .hp-main-column {
    order: 1 !important;
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
  }

  body.ft-home-mobile-public .hp-sidebar-left {
    order: 2 !important;
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
  }

  body.ft-home-mobile-public .hp-sidebar-right {
    order: 3 !important;
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    margin: 0 !important;
  }

  body.ft-home-mobile-public #search {
    display: none !important;
  }

  body.ft-home-mobile-public .hero.hero-integrated.hp-main-hero,
  body.ft-home-mobile-public #hero.hero.hero-integrated.hp-main-hero {
    display: flex !important;
    flex-direction: column !important;
    min-height: 0 !important;
    max-height: none !important;
    border-radius: 18px !important;
    overflow: hidden !important;
  }

  body.ft-home-mobile-public #hero.hero.hero-integrated.hp-main-hero > .hero-visual {
    order: 1 !important;
    width: 100% !important;
    max-width: 100% !important;
    min-height: 255px !important;
    height: 255px !important;
    padding: 0 !important;
    background: #050505 !important;
  }

  body.ft-home-mobile-public #hero.hero.hero-integrated.hp-main-hero > .hero-visual > img.article-hero-img {
    width: 100% !important;
    height: 100% !important;
    min-height: 255px !important;
    object-fit: cover !important;
    object-position: center top !important;
  }

  body.ft-home-mobile-public #hero.hero.hero-integrated.hp-main-hero > .hero-content {
    order: 2 !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    padding: 16px 14px 18px !important;
    box-sizing: border-box !important;
    background: #080808 !important;
  }

  body.ft-home-mobile-public #hero.hero.hero-integrated.hp-main-hero .hero-content::before,
  body.ft-home-mobile-public #hero.hero.hero-integrated.hp-main-hero .hero-content::after {
    display: none !important;
    content: none !important;
  }

  body.ft-home-mobile-public #hero.hero.hero-integrated.hp-main-hero .hero-meta {
    gap: 6px !important;
    margin-bottom: 8px !important;
  }

  body.ft-home-mobile-public #hero.hero.hero-integrated.hp-main-hero #heroTitle,
  body.ft-home-mobile-public #hero.hero.hero-integrated.hp-main-hero .hp-hero-title {
    font-size: clamp(26px, 7.5vw, 36px) !important;
    line-height: 1.08 !important;
    max-width: 100% !important;
    margin: 0 !important;
  }

  body.ft-home-mobile-public #hero.hero.hero-integrated.hp-main-hero #heroLead {
    font-size: 14px !important;
    line-height: 1.5 !important;
    margin-top: 10px !important;
    color: #d6d6d6 !important;
  }

  body.ft-home-mobile-public #hero.hero.hero-integrated.hp-main-hero #heroCta {
    min-height: 40px !important;
    padding: 0 16px !important;
    display: inline-flex !important;
    align-items: center !important;
    margin-top: 12px !important;
  }

  body.ft-home-mobile-public .section-title {
    margin: 20px 0 12px !important;
  }

  body.ft-home-mobile-public .section-title h2 {
    font-size: 25px !important;
    letter-spacing: 0.04em !important;
  }

  body.ft-home-mobile-public .section-title span {
    font-size: 9px !important;
  }

  body.ft-home-mobile-public .hp-glasine-grid.hp-glasine-three,
  body.ft-home-mobile-public #glasineGrid.hp-glasine-grid.hp-glasine-three {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
  }

  body.ft-home-mobile-public .hp-novo-grid,
  body.ft-home-mobile-public #latestGrid.hp-novo-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
  }

  body.ft-home-mobile-public .hp-glasine-card,
  body.ft-home-mobile-public .hp-novo-card {
    border-radius: 14px !important;
    overflow: hidden !important;
  }

  body.ft-home-mobile-public .hp-glasine-media,
  body.ft-home-mobile-public .hp-novo-thumb-wrap {
    height: auto !important;
    aspect-ratio: 16 / 11 !important;
    min-height: 0 !important;
  }

  body.ft-home-mobile-public .hp-glasine-body,
  body.ft-home-mobile-public .hp-novo-card-main,
  body.ft-home-mobile-public .hp-novo-card .card-body {
    padding: 9px !important;
  }

  body.ft-home-mobile-public .hp-glasine-title,
  body.ft-home-mobile-public .hp-novo-title,
  body.ft-home-mobile-public .hp-novo-title a {
    font-size: 14px !important;
    line-height: 1.22 !important;
    letter-spacing: -0.01em !important;
  }

  body.ft-home-mobile-public .hp-glasine-date,
  body.ft-home-mobile-public .hp-novo-date,
  body.ft-home-mobile-public .hp-novo-prob {
    font-size: 10px !important;
  }

  body.ft-home-mobile-public .hp-glasine-card .badge,
  body.ft-home-mobile-public .hp-novo-card .badge {
    font-size: 8px !important;
    padding: 3px 6px !important;
    max-width: 100% !important;
  }

  body.ft-home-mobile-public .hp-sidebar-left .hp-rail-panel {
    position: static !important;
    max-height: none !important;
    overflow: visible !important;
    border-radius: 18px !important;
    padding: 14px !important;
    margin-top: 4px !important;
  }

  body.ft-home-mobile-public .hp-sidebar-left .hp-rail-panel h3 {
    font-size: 24px !important;
    letter-spacing: 0.08em !important;
    color: var(--gold) !important;
    margin-bottom: 14px !important;
  }

  body.ft-home-mobile-public .hp-sidebar-left .hp-club-search-sidebar {
    margin-bottom: 12px !important;
  }

  body.ft-home-mobile-public .hp-sidebar-left .hp-club-search-sidebar .ft-club-search-input {
    min-height: 46px !important;
    font-size: 15px !important;
    border-radius: 14px !important;
  }

  body.ft-home-mobile-public .hp-club-list {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }

  body.ft-home-mobile-public .hp-club-row {
    min-height: 58px !important;
    padding: 9px 2px !important;
    grid-template-columns: 44px minmax(0, 1fr) 18px !important;
  }

  body.ft-home-mobile-public .hp-club-crest {
    width: 38px !important;
    height: 38px !important;
  }

  body.ft-home-mobile-public .hp-club-name {
    font-size: 15px !important;
    line-height: 1.16 !important;
  }

  body.ft-home-mobile-public .hp-sidebar-right .hp-rail-panel {
    border-radius: 18px !important;
    padding: 14px !important;
  }
}

/* FIX MOBILE KLUBOVI NAV + MOBILE HOMEPAGE GRID v2
   Scope: live index.html only via body.ft-home-mobile-public.
   Desktop layout stays unchanged.
*/

/* Strong desktop hide: Klubovi must NOT show on desktop nav */
body.ft-home-mobile-public header.ft-header .ft-nav a.ft-mobile-only-nav {
  display: none !important;
}

@media (min-width: 761px) {
  body.ft-home-mobile-public header.ft-header .ft-nav a.ft-mobile-only-nav {
    display: none !important;
    visibility: hidden !important;
    width: 0 !important;
    max-width: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden !important;
    pointer-events: none !important;
  }
}

/* Mobile only: show Klubovi and force mobile news layout */
@media (max-width: 760px) {
  body.ft-home-mobile-public header.ft-header .ft-nav a.ft-mobile-only-nav {
    display: inline-flex !important;
    visibility: visible !important;
    width: auto !important;
    max-width: none !important;
    padding: 0 6px !important;
    margin: 0 !important;
    overflow: visible !important;
    pointer-events: auto !important;
  }

  body.ft-home-mobile-public .hp-sidebar-left#klubovi {
    scroll-margin-top: 190px !important;
  }

  /* Force U FOKUSU into 2 compact columns on mobile */
  body.ft-home-mobile-public .hp-main-column #glasineGrid,
  body.ft-home-mobile-public .hp-main-column #glasineGrid.hp-glasine-grid,
  body.ft-home-mobile-public .hp-main-column #glasineGrid.hp-glasine-grid.hp-glasine-three {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
    width: 100% !important;
  }

  body.ft-home-mobile-public .hp-main-column #glasineGrid .hp-glasine-card {
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
  }

  body.ft-home-mobile-public .hp-main-column #glasineGrid .hp-glasine-media {
    height: auto !important;
    min-height: 0 !important;
    aspect-ratio: 16 / 11 !important;
  }

  body.ft-home-mobile-public .hp-main-column #glasineGrid .hp-glasine-body {
    padding: 9px !important;
  }

  body.ft-home-mobile-public .hp-main-column #glasineGrid .hp-glasine-title {
    font-size: 14px !important;
    line-height: 1.22 !important;
  }

  /* Force NOVO into 2 compact columns on mobile */
  body.ft-home-mobile-public .hp-main-column #latestGrid,
  body.ft-home-mobile-public .hp-main-column #latestGrid.hp-novo-grid,
  body.ft-home-mobile-public .hp-main-column #latestGrid.grid-cards {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
    width: 100% !important;
  }

  body.ft-home-mobile-public .hp-main-column #latestGrid .hp-novo-card {
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
  }

  body.ft-home-mobile-public .hp-main-column #latestGrid .hp-novo-thumb-wrap {
    height: auto !important;
    min-height: 0 !important;
    aspect-ratio: 16 / 11 !important;
  }

  body.ft-home-mobile-public .hp-main-column #latestGrid .hp-novo-card-main,
  body.ft-home-mobile-public .hp-main-column #latestGrid .card-body {
    padding: 9px !important;
  }

  body.ft-home-mobile-public .hp-main-column #latestGrid .hp-novo-title,
  body.ft-home-mobile-public .hp-main-column #latestGrid .hp-novo-title a {
    font-size: 14px !important;
    line-height: 1.22 !important;
  }

  /* Mobile club section title */
  body.ft-home-mobile-public #klubovi .ft-mobile-club-title {
    display: inline !important;
  }

  body.ft-home-mobile-public #klubovi .ft-desktop-club-title {
    display: none !important;
  }
}

/* FIX MOBILE HEADER + HERO VISIBILITY v3
   Scope: live index.html only via body.ft-home-mobile-public.
   Fixes mobile nav overlap and forces naslovnica/hero above U FOKUSU.
   Desktop remains unchanged.
*/
@media (max-width: 760px) {
  body.ft-home-mobile-public header.ft-header {
    position: sticky !important;
    top: 0 !important;
    z-index: 5000 !important;
    background: rgba(5, 5, 5, 0.98) !important;
    border-bottom: 1px solid rgba(242, 201, 76, 0.22) !important;
  }

  body.ft-home-mobile-public header.ft-header .ft-header-inner {
    display: grid !important;
    grid-template-columns: 1fr !important;
    grid-template-areas:
      "logo"
      "nav"
      "search" !important;
    gap: 12px !important;
    width: 100% !important;
    max-width: none !important;
    padding: 14px 14px 12px !important;
    box-sizing: border-box !important;
  }

  body.ft-home-mobile-public header.ft-header .ft-logo {
    grid-area: logo !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    width: 100% !important;
    min-width: 0 !important;
  }

  body.ft-home-mobile-public header.ft-header .ft-mark {
    width: 48px !important;
    height: 48px !important;
    flex: 0 0 48px !important;
  }

  body.ft-home-mobile-public header.ft-header .ft-zone {
    font-size: 11px !important;
    letter-spacing: 0.18em !important;
  }

  body.ft-home-mobile-public header.ft-header .ft-logo a {
    font-size: 23px !important;
    line-height: 1.05 !important;
  }

  body.ft-home-mobile-public header.ft-header .ft-nav {
    grid-area: nav !important;
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    gap: 8px !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    padding: 2px 0 4px !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
  }

  body.ft-home-mobile-public header.ft-header .ft-nav::-webkit-scrollbar {
    display: none !important;
  }

  body.ft-home-mobile-public header.ft-header .ft-nav a {
    flex: 0 0 auto !important;
    min-width: 104px !important;
    min-height: 40px !important;
    padding: 0 12px !important;
    border-radius: 11px !important;
    border: 1px solid rgba(242, 201, 76, 0.17) !important;
    background: rgba(255, 255, 255, 0.06) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    white-space: nowrap !important;
    text-align: center !important;
    font-size: 10px !important;
    line-height: 1 !important;
    letter-spacing: 0.08em !important;
  }

  body.ft-home-mobile-public header.ft-header .ft-nav a.ft-mobile-only-nav {
    display: inline-flex !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  body.ft-home-mobile-public header.ft-header .ft-news-search {
    grid-area: search !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    gap: 8px !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
  }

  body.ft-home-mobile-public header.ft-header .ft-news-search-input {
    min-width: 0 !important;
    width: 100% !important;
    min-height: 46px !important;
    border-radius: 15px !important;
    font-size: 15px !important;
    padding: 0 14px !important;
  }

  body.ft-home-mobile-public header.ft-header .ft-news-search-button {
    min-height: 46px !important;
    border-radius: 15px !important;
    padding: 0 16px !important;
    font-size: 14px !important;
    font-weight: 900 !important;
  }

  body.ft-home-mobile-public .layout.hp-premium-layout {
    padding-top: 14px !important;
  }

  body.ft-home-mobile-public .hp-main-column {
    display: flex !important;
    flex-direction: column !important;
  }

  /* Force hero/naslovnica to exist and stay before U FOKUSU */
  body.ft-home-mobile-public .hp-main-column #hero.hero.hero-integrated.hp-main-hero {
    order: 0 !important;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    flex-direction: column !important;
    width: 100% !important;
    min-height: 0 !important;
    height: auto !important;
    max-height: none !important;
    margin: 0 0 22px !important;
    border-radius: 18px !important;
    overflow: hidden !important;
    border: 1px solid rgba(242, 201, 76, 0.26) !important;
    background: #070707 !important;
  }

  body.ft-home-mobile-public .hp-main-column #hero.hero.hero-integrated.hp-main-hero > .hero-visual {
    order: 1 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100% !important;
    max-width: 100% !important;
    height: 265px !important;
    min-height: 265px !important;
    padding: 0 !important;
    margin: 0 !important;
    position: relative !important;
    overflow: hidden !important;
  }

  body.ft-home-mobile-public .hp-main-column #hero.hero.hero-integrated.hp-main-hero > .hero-visual::after {
    content: "" !important;
    display: block !important;
    position: absolute !important;
    inset: 0 !important;
    z-index: 2 !important;
    background: linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.74) 0%,
      rgba(0, 0, 0, 0.36) 40%,
      rgba(0, 0, 0, 0.06) 75%,
      rgba(0, 0, 0, 0) 100%
    ) !important;
    pointer-events: none !important;
  }

  body.ft-home-mobile-public .hp-main-column #hero.hero.hero-integrated.hp-main-hero > .hero-visual > img.article-hero-img {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 265px !important;
    object-fit: cover !important;
    object-position: center top !important;
  }

  body.ft-home-mobile-public .hp-main-column #hero.hero.hero-integrated.hp-main-hero > .hero-content {
    order: 2 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    padding: 15px 14px 18px !important;
    margin: 0 !important;
    box-sizing: border-box !important;
    background: #080808 !important;
    position: relative !important;
    z-index: 3 !important;
  }

  body.ft-home-mobile-public .hp-main-column #hero.hero.hero-integrated.hp-main-hero > .hero-content::before,
  body.ft-home-mobile-public .hp-main-column #hero.hero.hero-integrated.hp-main-hero > .hero-content::after {
    display: none !important;
    content: none !important;
  }

  body.ft-home-mobile-public .hp-main-column #hero.hero.hero-integrated.hp-main-hero .hp-hero-top-left-crest {
    width: 70px !important;
    height: 70px !important;
    top: 14px !important;
    left: 14px !important;
  }

  body.ft-home-mobile-public .hp-main-column #hero.hero.hero-integrated.hp-main-hero .hero-meta {
    margin-bottom: 8px !important;
  }

  body.ft-home-mobile-public .hp-main-column #hero.hero.hero-integrated.hp-main-hero #heroTitle,
  body.ft-home-mobile-public .hp-main-column #hero.hero.hero-integrated.hp-main-hero .hp-hero-title {
    font-size: clamp(27px, 7.6vw, 38px) !important;
    line-height: 1.07 !important;
    max-width: 100% !important;
    margin: 0 !important;
    letter-spacing: -0.03em !important;
  }

  body.ft-home-mobile-public .hp-main-column #hero.hero.hero-integrated.hp-main-hero #heroLead {
    display: block !important;
    font-size: 14px !important;
    line-height: 1.48 !important;
    margin-top: 9px !important;
    color: #d7d7d7 !important;
  }

  body.ft-home-mobile-public .hp-main-column #hero.hero.hero-integrated.hp-main-hero #heroCta {
    display: inline-flex !important;
    align-items: center !important;
    min-height: 40px !important;
    padding: 0 16px !important;
    margin-top: 12px !important;
  }

  body.ft-home-mobile-public .hp-main-column .hp-glasine-section {
    order: 1 !important;
  }

  body.ft-home-mobile-public .hp-main-column #latest {
    order: 2 !important;
  }
}

/* FIX MOBILE NAV FIT + HERO READABILITY v4
   Scope: live index.html only via body.ft-home-mobile-public.
   Desktop remains unchanged.
*/
@media (max-width: 760px) {
  /* Header: make all 5 category buttons fit cleanly */
  body.ft-home-mobile-public header.ft-header .ft-nav {
    display: grid !important;
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    gap: 6px !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow: visible !important;
    padding: 0 !important;
  }

  body.ft-home-mobile-public header.ft-header .ft-nav a,
  body.ft-home-mobile-public header.ft-header .ft-nav a.ft-mobile-only-nav {
    min-width: 0 !important;
    width: 100% !important;
    min-height: 38px !important;
    padding: 0 4px !important;
    margin: 0 !important;
    border-radius: 10px !important;
    font-size: 8.5px !important;
    line-height: 1.08 !important;
    letter-spacing: 0.065em !important;
    white-space: normal !important;
    text-align: center !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
  }

  /* Hero card: keep image first, readable title/content below */
  body.ft-home-mobile-public .hp-main-column #hero.hero.hero-integrated.hp-main-hero {
    background: #070707 !important;
    box-shadow: 0 18px 52px rgba(0, 0, 0, 0.46) !important;
  }

  body.ft-home-mobile-public .hp-main-column #hero.hero.hero-integrated.hp-main-hero > .hero-visual {
    height: 250px !important;
    min-height: 250px !important;
    max-height: 250px !important;
  }

  body.ft-home-mobile-public .hp-main-column #hero.hero.hero-integrated.hp-main-hero > .hero-visual::after {
    background: linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.40) 0%,
      rgba(0, 0, 0, 0.14) 45%,
      rgba(0, 0, 0, 0) 100%
    ) !important;
    z-index: 2 !important;
  }

  body.ft-home-mobile-public .hp-main-column #hero.hero.hero-integrated.hp-main-hero > .hero-content {
    background:
      linear-gradient(180deg, rgba(14,14,14,0.98) 0%, rgba(5,5,5,0.98) 100%) !important;
    padding: 16px 14px 18px !important;
    opacity: 1 !important;
    filter: none !important;
    mix-blend-mode: normal !important;
    color: #ffffff !important;
  }

  body.ft-home-mobile-public .hp-main-column #hero.hero.hero-integrated.hp-main-hero .hero-meta,
  body.ft-home-mobile-public .hp-main-column #hero.hero.hero-integrated.hp-main-hero #heroTitle,
  body.ft-home-mobile-public .hp-main-column #hero.hero.hero-integrated.hp-main-hero #heroTitle *,
  body.ft-home-mobile-public .hp-main-column #hero.hero.hero-integrated.hp-main-hero #heroLead,
  body.ft-home-mobile-public .hp-main-column #hero.hero.hero-integrated.hp-main-hero #heroCta {
    opacity: 1 !important;
    filter: none !important;
    visibility: visible !important;
    mix-blend-mode: normal !important;
  }

  body.ft-home-mobile-public .hp-main-column #hero.hero.hero-integrated.hp-main-hero #heroTitle,
  body.ft-home-mobile-public .hp-main-column #hero.hero.hero-integrated.hp-main-hero .hp-hero-title {
    color: #ffffff !important;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.65) !important;
    font-size: clamp(27px, 7.4vw, 36px) !important;
    line-height: 1.08 !important;
  }

  body.ft-home-mobile-public .hp-main-column #hero.hero.hero-integrated.hp-main-hero #heroTitle .ft-hero-gold,
  body.ft-home-mobile-public .hp-main-column #hero.hero.hero-integrated.hp-main-hero #heroTitle .hero-title-entity {
    color: var(--gold) !important;
  }

  body.ft-home-mobile-public .hp-main-column #hero.hero.hero-integrated.hp-main-hero #heroLead {
    color: rgba(245, 245, 245, 0.86) !important;
  }

  body.ft-home-mobile-public .hp-main-column #hero.hero.hero-integrated.hp-main-hero .badge {
    opacity: 1 !important;
  }

  body.ft-home-mobile-public .hp-main-column #hero.hero.hero-integrated.hp-main-hero #heroCta {
    color: #090909 !important;
    background: linear-gradient(180deg, #f7d95a 0%, #d6a927 100%) !important;
    font-weight: 900 !important;
  }
}

/* FIX MOBILE HERO CONTENT FINAL v5
   Scope: live index.html only via body.ft-home-mobile-public.
   Removes old hero overlays from covering mobile hero text.
   Desktop remains unchanged.
*/
@media (max-width: 760px) {
  body.ft-home-mobile-public .hp-main-column #hero.hero.hero-integrated.hp-main-hero {
    position: relative !important;
    isolation: isolate !important;
    background: #070707 !important;
  }

  /* Kill any old full-card overlay that can darken the title/content */
  body.ft-home-mobile-public .hp-main-column #hero.hero.hero-integrated.hp-main-hero::before,
  body.ft-home-mobile-public .hp-main-column #hero.hero.hero-integrated.hp-main-hero::after {
    content: none !important;
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    background: none !important;
    background-image: none !important;
    pointer-events: none !important;
  }

  body.ft-home-mobile-public .hp-main-column #hero.hero.hero-integrated.hp-main-hero > .hero-content {
    position: relative !important;
    z-index: 50 !important;
    opacity: 1 !important;
    visibility: visible !important;
    filter: none !important;
    mix-blend-mode: normal !important;
    background: #080808 !important;
    color: #fff !important;
    padding: 16px 14px 18px !important;
  }

  body.ft-home-mobile-public .hp-main-column #hero.hero.hero-integrated.hp-main-hero > .hero-content *,
  body.ft-home-mobile-public .hp-main-column #hero.hero.hero-integrated.hp-main-hero .hero-meta,
  body.ft-home-mobile-public .hp-main-column #hero.hero.hero-integrated.hp-main-hero #heroTitle,
  body.ft-home-mobile-public .hp-main-column #hero.hero.hero-integrated.hp-main-hero #heroLead,
  body.ft-home-mobile-public .hp-main-column #hero.hero.hero-integrated.hp-main-hero #heroCta {
    opacity: 1 !important;
    visibility: visible !important;
    filter: none !important;
    mix-blend-mode: normal !important;
  }

  body.ft-home-mobile-public .hp-main-column #hero.hero.hero-integrated.hp-main-hero #heroTitle,
  body.ft-home-mobile-public .hp-main-column #hero.hero.hero-integrated.hp-main-hero .hp-hero-title,
  body.ft-home-mobile-public .hp-main-column #hero.hero.hero-integrated.hp-main-hero #heroTitle * {
    color: #fff !important;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.72) !important;
  }

  body.ft-home-mobile-public .hp-main-column #hero.hero.hero-integrated.hp-main-hero #heroTitle .ft-hero-gold,
  body.ft-home-mobile-public .hp-main-column #hero.hero.hero-integrated.hp-main-hero #heroTitle .hero-title-entity {
    color: var(--gold) !important;
  }

  body.ft-home-mobile-public .hp-main-column #hero.hero.hero-integrated.hp-main-hero .badge {
    color: var(--gold) !important;
    border-color: rgba(242, 201, 76, 0.58) !important;
    background: rgba(242, 201, 76, 0.13) !important;
  }

  body.ft-home-mobile-public .hp-main-column #hero.hero.hero-integrated.hp-main-hero .badge.badge-breaking {
    color: #fff !important;
    background: #e32929 !important;
    border-color: rgba(255, 80, 80, 0.72) !important;
  }

  body.ft-home-mobile-public .hp-main-column #hero.hero.hero-integrated.hp-main-hero #heroLead {
    color: rgba(245, 245, 245, 0.88) !important;
  }

  body.ft-home-mobile-public .hp-main-column #hero.hero.hero-integrated.hp-main-hero #heroCta {
    color: #090909 !important;
    background: linear-gradient(180deg, #f7d95a 0%, #d6a927 100%) !important;
    border: none !important;
    box-shadow: 0 10px 24px rgba(242, 201, 76, 0.18) !important;
  }

  /* Crest should not darken content */
  body.ft-home-mobile-public .hp-main-column #hero.hero.hero-integrated.hp-main-hero .hp-hero-top-left-crest {
    opacity: 1 !important;
    filter: none !important;
  }
}

/* SEARCH RESULT CATEGORY LABEL POLISH v1
   Fixes search.html labels/colors:
   RUMOUR/CONFIRMED/ZVANICNO -> Bosnian public labels.
*/
body.ft-public-site .ft-search-result-category {
  display: inline-flex !important;
  align-items: center !important;
  width: fit-content !important;
  max-width: 100% !important;
  border-radius: 999px !important;
  padding: 4px 9px !important;
  font-size: 10px !important;
  line-height: 1.2 !important;
  font-weight: 900 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
}

body.ft-public-site .ft-search-result-category--gold {
  color: var(--gold) !important;
  border: 1px solid rgba(242, 201, 76, 0.48) !important;
  background: rgba(242, 201, 76, 0.10) !important;
}

body.ft-public-site .ft-search-result-category--red {
  color: #fff !important;
  border: 1px solid rgba(255, 80, 80, 0.72) !important;
  background: rgba(227, 41, 41, 0.92) !important;
  box-shadow: 0 0 18px rgba(227, 41, 41, 0.16) !important;
}

@media (max-width: 760px) {
  body.ft-public-site .ft-search-result-category {
    font-size: 9px !important;
    padding: 3px 7px !important;
    letter-spacing: 0.07em !important;
  }
}

/* JUVENTUS CREST CONTRAST FIX
   Scope: only Juventus crest in fallback / crest UI blocks.
   Goal: add white backing behind the dark Juventus crest for better contrast
   on live web + mobile + preview, without changing layout.
*/
body.ft-public-site .hp-hero-top-left-crest img[src*="juventus"],
body.ft-public-site .hp-hero-top-left-crest img[src*="Juventus"],
body.ft-public-site .hp-hero-visual-fallback-crest img[src*="juventus"],
body.ft-public-site .hp-hero-visual-fallback-crest img[src*="Juventus"],
body.ft-public-site .article-hero-visual-fallback-crest img[src*="juventus"],
body.ft-public-site .article-hero-visual-fallback-crest img[src*="Juventus"],
body.ft-public-site .hp-club-crest img[src*="juventus"],
body.ft-public-site .hp-club-crest img[src*="Juventus"],
body.ft-public-site .ft-club-search-crest img[src*="juventus"],
body.ft-public-site .ft-club-search-crest img[src*="Juventus"] {
  background: linear-gradient(180deg, #ffffff 0%, #f2f2f2 100%) !important;
  border-radius: 18px !important;
  padding: 8px !important;
  box-sizing: border-box !important;
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.34),
    inset 0 0 0 1px rgba(0, 0, 0, 0.08) !important;
}

/* JUVENTUS CREST CONTRAST FIX v2 REAL TARGET
   Targets real article/mobile/preview Juventus crest elements:
   .article-hero-crest and fallback crest img with Juventus_FC URL.
*/
body.ft-public-site img.article-hero-crest[src*="Juventus_FC"],
body.ft-public-site #heroCrest[src*="Juventus_FC"],
body.ft-public-site .article-hero-visual-fallback.article-hero-visual-fallback-crest img[src*="Juventus_FC"],
body.ft-public-site .hp-hero-top-left-crest img[src*="Juventus_FC"],
body.ft-public-site .hp-hero-visual-fallback-crest img[src*="Juventus_FC"],
body.ft-public-site img.article-hero-crest[src*="Juventus"],
body.ft-public-site #heroCrest[src*="Juventus"],
body.ft-public-site .article-hero-visual-fallback.article-hero-visual-fallback-crest img[src*="Juventus"],
body.ft-public-site .hp-hero-top-left-crest img[src*="Juventus"],
body.ft-public-site .hp-hero-visual-fallback-crest img[src*="Juventus"] {
  background: linear-gradient(180deg, #ffffff 0%, #f3f3f3 100%) !important;
  border-radius: 18px !important;
  padding: 8px !important;
  box-sizing: border-box !important;
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.46),
    inset 0 0 0 1px rgba(0, 0, 0, 0.10) !important;
}

/* Keep the small top article crest badge clean and readable */
body.ft-public-site img.article-hero-crest[src*="Juventus_FC"],
body.ft-public-site #heroCrest[src*="Juventus_FC"],
body.ft-public-site img.article-hero-crest[src*="Juventus"],
body.ft-public-site #heroCrest[src*="Juventus"] {
  object-fit: contain !important;
  object-position: center !important;
}

/* JUVENTUS CREST CONTRAST FIX v3 HOMEPAGE CARDS
   Scope: homepage cards only.
   Fixes Juventus dark logo inside U FOKUSU / NOVO / rail card image areas.
*/
body.ft-public-site .hp-glasine-media img[src*="Juventus_FC"],
body.ft-public-site .hp-glasine-media img[src*="Juventus"],
body.ft-public-site .hp-novo-thumb-wrap img[src*="Juventus_FC"],
body.ft-public-site .hp-novo-thumb-wrap img[src*="Juventus"],
body.ft-public-site .visual-image-thumb img[src*="Juventus_FC"],
body.ft-public-site .visual-image-thumb img[src*="Juventus"],
body.ft-public-site .sidebar-news-thumb img[src*="Juventus_FC"],
body.ft-public-site .sidebar-news-thumb img[src*="Juventus"],
body.ft-public-site .hp-rail-thumb img[src*="Juventus_FC"],
body.ft-public-site .hp-rail-thumb img[src*="Juventus"],
body.ft-public-site img.hp-novo-thumb-crest[src*="Juventus_FC"],
body.ft-public-site img.hp-novo-thumb-crest[src*="Juventus"],
body.ft-public-site img.hp-glasine-crest[src*="Juventus_FC"],
body.ft-public-site img.hp-glasine-crest[src*="Juventus"] {
  background: linear-gradient(180deg, #ffffff 0%, #f3f3f3 100%) !important;
  border-radius: 18px !important;
  padding: 10px !important;
  box-sizing: border-box !important;
  object-fit: contain !important;
  object-position: center !important;
  max-width: 72% !important;
  max-height: 72% !important;
  margin: auto !important;
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.46),
    inset 0 0 0 1px rgba(0, 0, 0, 0.10) !important;
}

/* If the Juventus crest is rendered as the direct image in a card media box */
body.ft-public-site .hp-glasine-media > img[src*="Juventus_FC"],
body.ft-public-site .hp-glasine-media > img[src*="Juventus"],
body.ft-public-site .hp-novo-thumb-wrap > img[src*="Juventus_FC"],
body.ft-public-site .hp-novo-thumb-wrap > img[src*="Juventus"] {
  width: auto !important;
  height: auto !important;
}


/* Homepage hero image crop: keep player head visible on portrait Wikimedia photos */
body.ft-public-site .hp-main-column #hero.hero.hero-integrated.hp-main-hero > .hero-visual > img.article-hero-img,
body.ft-public-site .hp-main-column .hero.hero-integrated.hp-main-hero > .hero-visual > img.article-hero-img,
body.ft-public-site #hero.hero.hero-integrated.hp-main-hero > .hero-visual > img.article-hero-img {
  object-position: center 22% !important;
}

/* Homepage/listing cards: keep badges compact, not full-width */
body.ft-public-site .hp-main-column #glasineGrid .hp-glasine-body,
body.ft-public-site .hp-main-column #latestGrid .hp-novo-card-main {
  align-items: flex-start !important;
}

body.ft-public-site .hp-main-column #glasineGrid .hp-glasine-body > .hp-glasine-title,
body.ft-public-site .hp-main-column #glasineGrid .hp-glasine-body > .hp-glasine-date,
body.ft-public-site .hp-main-column #latestGrid .hp-novo-card-main > .hp-novo-title,
body.ft-public-site .hp-main-column #latestGrid .hp-novo-card-main > .hp-novo-date,
body.ft-public-site .hp-main-column #latestGrid .hp-novo-card-main > .hp-novo-prob {
  width: 100% !important;
  max-width: 100% !important;
  align-self: stretch !important;
}

body.ft-public-site .hp-main-column .visual-image-card .badge,
body.ft-public-site .hp-main-column .article-card .badge,
body.ft-public-site .hp-main-column .news-card .badge,
body.ft-public-site .hp-main-column .hp-card .badge,
body.ft-public-site .hp-main-column .section-transfer-glasine .badge,
body.ft-public-site .hp-main-column .hp-glasine-section .badge,
body.ft-public-site .hp-main-column #glasineGrid .hp-glasine-card .badge,
body.ft-public-site .hp-main-column #latestGrid .hp-novo-card .badge {
  display: inline-flex !important;
  width: auto !important;
  max-width: max-content !important;
  min-width: 0 !important;
  align-self: flex-start !important;
  justify-content: center !important;
  white-space: nowrap !important;
  flex: 0 0 auto !important;
  border-radius: 999px !important;
}

/* Homepage/listing cards: keep player heads visible in thumbnails */
body.ft-public-site .hp-main-column #glasineGrid .hp-glasine-img:not(.hp-glasine-img-crest),
body.ft-public-site .hp-main-column .visual-image-card img,
body.ft-public-site .hp-main-column .visual-image-thumb,
body.ft-public-site .hp-main-column .article-card img,
body.ft-public-site .hp-main-column .news-card img,
body.ft-public-site .hp-main-column .hp-card img,
body.ft-public-site .hp-main-column .section-transfer-glasine img:not(.hp-glasine-img-crest),
body.ft-public-site .hp-main-column .hp-glasine-section .hp-glasine-img:not(.hp-glasine-img-crest),
body.ft-public-site .hp-main-column #latestGrid .hp-novo-thumb:not(.hp-novo-thumb-crest) {
  object-position: center top !important;
}

/* Club/listing cards: compact category badges */
body.ft-public-site .club-page-wrap #clubArticles .hp-novo-card-main,
body.ft-public-site .club-articles-grid .hp-novo-card-main {
  align-items: flex-start !important;
}

body.ft-public-site .club-page-wrap #clubArticles .hp-novo-card-main > .hp-novo-title,
body.ft-public-site .club-page-wrap #clubArticles .hp-novo-card-main > .hp-novo-date,
body.ft-public-site .club-page-wrap #clubArticles .hp-novo-card-main > .hp-novo-prob,
body.ft-public-site .club-articles-grid .hp-novo-card-main > .hp-novo-title,
body.ft-public-site .club-articles-grid .hp-novo-card-main > .hp-novo-date,
body.ft-public-site .club-articles-grid .hp-novo-card-main > .hp-novo-prob {
  width: 100% !important;
  max-width: 100% !important;
  align-self: stretch !important;
}

body.ft-public-site .club-page-wrap .hp-novo-card .badge,
body.ft-public-site .club-articles-grid .hp-novo-card .badge,
body.ft-public-site #clubArticles .hp-novo-card .badge {
  display: inline-flex !important;
  width: auto !important;
  max-width: max-content !important;
  min-width: 0 !important;
  align-self: flex-start !important;
  justify-content: center !important;
  white-space: nowrap !important;
  flex: 0 0 auto !important;
  border-radius: 999px !important;
}

/* Club/listing cards: keep player heads visible */
body.ft-public-site .club-page-wrap #clubArticles .hp-novo-thumb:not(.hp-novo-thumb-crest),
body.ft-public-site .club-articles-grid .hp-novo-thumb:not(.hp-novo-thumb-crest) {
  object-position: center top !important;
}

/* TOK VIJESTI: manual scroll like KLUBOVI, auto-scroll preserved */
body.ft-public-site .sidebar-news-viewport,
body.ft-public-site .tok-vijesti-viewport,
body.ft-public-site .news-ticker-viewport {
  max-height: 320px !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  overscroll-behavior: contain !important;
  scrollbar-width: thin !important;
  scrollbar-color: rgba(212, 175, 55, 0.65) rgba(255, 255, 255, 0.04) !important;
}

body.ft-public-site .sidebar-news-viewport::-webkit-scrollbar,
body.ft-public-site .tok-vijesti-viewport::-webkit-scrollbar,
body.ft-public-site .news-ticker-viewport::-webkit-scrollbar {
  width: 6px !important;
}

body.ft-public-site .sidebar-news-viewport::-webkit-scrollbar-track,
body.ft-public-site .tok-vijesti-viewport::-webkit-scrollbar-track,
body.ft-public-site .news-ticker-viewport::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.04) !important;
  border-radius: 999px !important;
}

body.ft-public-site .sidebar-news-viewport::-webkit-scrollbar-thumb,
body.ft-public-site .tok-vijesti-viewport::-webkit-scrollbar-thumb,
body.ft-public-site .news-ticker-viewport::-webkit-scrollbar-thumb {
  background: rgba(212, 175, 55, 0.72) !important;
  border-radius: 999px !important;
}

/* Pause auto-scroll while user interacts with TOK VIJESTI */
body.ft-public-site .sidebar-news-viewport:hover .sidebar-news-track,
body.ft-public-site .sidebar-news-viewport:focus-within .sidebar-news-track,
body.ft-public-site .tok-vijesti-viewport:hover .sidebar-news-track,
body.ft-public-site .news-ticker-viewport:hover .sidebar-news-track {
  animation-play-state: paused !important;
}

/* Universal safe crop for real photo thumbnails, not hero */
body.ft-public-site .ft-thumb-photo,
body.ft-public-site .hp-main-column .visual-image-thumb.ft-thumb-photo,
body.ft-public-site .hp-main-column .hp-glasine-img.ft-thumb-photo,
body.ft-public-site .hp-main-column .hp-novo-thumb.ft-thumb-photo,
body.ft-public-site .article-card .ft-thumb-photo,
body.ft-public-site .news-card .ft-thumb-photo,
body.ft-public-site .sidebar-news-thumb.ft-thumb-photo,
body.ft-public-site .hp-rail-thumb.ft-thumb-photo {
  object-fit: cover !important;
  object-position: center top !important;
}

/* Universal crest visibility plate for dark/light crests */
body.ft-public-site .ft-thumb-crest,
body.ft-public-site .sidebar-news-thumb.ft-thumb-crest,
body.ft-public-site .hp-main-column .visual-image-thumb.ft-thumb-crest,
body.ft-public-site .hp-main-column .hp-glasine-img.ft-thumb-crest,
body.ft-public-site .hp-main-column .hp-novo-thumb.ft-thumb-crest,
body.ft-public-site .article-card .ft-thumb-crest,
body.ft-public-site .news-card .ft-thumb-crest,
body.ft-public-site .hp-rail-thumb-crest.ft-thumb-crest {
  object-fit: contain !important;
  object-position: center center !important;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.98) 0%, rgba(246, 246, 246, 0.94) 62%, rgba(242, 201, 76, 0.16) 100%) !important;
  border: 1px solid rgba(242, 201, 76, 0.35) !important;
  box-sizing: border-box !important;
}

body.ft-public-site .sidebar-news-thumb.ft-thumb-crest {
  padding: 5px !important;
}

body.ft-public-site .hp-glasine-img.ft-thumb-crest,
body.ft-public-site .hp-novo-thumb.ft-thumb-crest,
body.ft-public-site .hp-rail-thumb-crest.ft-thumb-crest {
  padding: 10px !important;
}

/* Mobile homepage hero: remove hard black block and keep soft full-width fade */
@media (max-width: 760px) {
  body.ft-home-mobile-public .hp-main-column #hero.hero.hero-integrated.hp-main-hero,
  body.ft-home-mobile-public #hero.hero.hero-integrated.hp-main-hero {
    position: relative !important;
    overflow: hidden !important;
  }

  body.ft-home-mobile-public .hp-main-column #hero.hero.hero-integrated.hp-main-hero > .hero-visual::after,
  body.ft-home-mobile-public #hero.hero.hero-integrated.hp-main-hero > .hero-visual::after {
    content: none !important;
    display: none !important;
    background: none !important;
  }

  body.ft-home-mobile-public .hp-main-column #hero.hero.hero-integrated.hp-main-hero::before,
  body.ft-home-mobile-public #hero.hero.hero-integrated.hp-main-hero::before {
    content: none !important;
    display: none !important;
  }

  body.ft-home-mobile-public .hp-main-column #hero.hero.hero-integrated.hp-main-hero > .hero-visual,
  body.ft-home-mobile-public #hero.hero.hero-integrated.hp-main-hero > .hero-visual {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
    position: relative !important;
    z-index: 1 !important;
  }

  body.ft-home-mobile-public .hp-main-column #hero.hero.hero-integrated.hp-main-hero > .hero-visual > img.article-hero-img,
  body.ft-home-mobile-public #hero.hero.hero-integrated.hp-main-hero > .hero-visual > img.article-hero-img {
    width: 100% !important;
    max-width: 100% !important;
    display: block !important;
  }

  body.ft-home-mobile-public .hp-main-column #hero.hero.hero-integrated.hp-main-hero::after,
  body.ft-home-mobile-public #hero.hero.hero-integrated.hp-main-hero::after {
    content: "" !important;
    display: block !important;
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    top: 34% !important;
    bottom: auto !important;
    height: 170px !important;
    min-height: 0 !important;
    max-height: none !important;
    z-index: 3 !important;
    pointer-events: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.18) 35%,
      rgba(0, 0, 0, 0.58) 70%,
      rgba(0, 0, 0, 0.96) 100%
    ) !important;
  }

  body.ft-home-mobile-public .hp-main-column #hero.hero.hero-integrated.hp-main-hero > .hero-content,
  body.ft-home-mobile-public #hero.hero.hero-integrated.hp-main-hero > .hero-content {
    position: relative !important;
    z-index: 5 !important;
    margin-top: 0 !important;
    padding: 16px 14px 18px !important;
    background: #080808 !important;
    box-sizing: border-box !important;
  }

  body.ft-home-mobile-public .hp-main-column #hero.hero.hero-integrated.hp-main-hero .hp-hero-top-left-crest,
  body.ft-home-mobile-public #hero.hero.hero-integrated.hp-main-hero .hp-hero-top-left-crest {
    z-index: 6 !important;
  }

  body.ft-home-mobile-public .hp-main-column #hero.hero.hero-integrated.hp-main-hero > .hero-content::before,
  body.ft-home-mobile-public .hp-main-column #hero.hero.hero-integrated.hp-main-hero > .hero-content::after,
  body.ft-home-mobile-public #hero.hero.hero-integrated.hp-main-hero .hero-content::before,
  body.ft-home-mobile-public #hero.hero.hero-integrated.hp-main-hero .hero-content::after {
    display: none !important;
    content: none !important;
  }
}

/* Terminal fix: mobile homepage hero soft overlap fade, no hard black cut */
@media (max-width: 760px) {
  /*
    FINAL MOBILE HERO MODEL
    - pozicija ostaje ista
    - fade ostaje mekan
    - dio ispod naslova ide u punu crnu
  */

  body.ft-home-mobile-public .hp-main-column #hero.hero.hero-integrated.hp-main-hero,
  body.ft-home-mobile-public #hero.hero.hero-integrated.hp-main-hero {
    position: relative !important;
    display: block !important;
    overflow: hidden !important;
    isolation: isolate !important;
    min-height: 760px !important;
    height: 760px !important;
    max-height: none !important;
    background: #080808 !important;
    border-radius: 18px !important;
  }

  body.ft-home-mobile-public .hp-main-column #hero.hero.hero-integrated.hp-main-hero > .hero-visual,
  body.ft-home-mobile-public #hero.hero.hero-integrated.hp-main-hero > .hero-visual {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 100% !important;
    max-height: none !important;
    z-index: 1 !important;
    overflow: hidden !important;
    background: #080808 !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  body.ft-home-mobile-public .hp-main-column #hero.hero.hero-integrated.hp-main-hero > .hero-visual > img.article-hero-img,
  body.ft-home-mobile-public #hero.hero.hero-integrated.hp-main-hero > .hero-visual > img.article-hero-img {
    position: absolute !important;
    inset: 0 !important;
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 100% !important;
    object-fit: cover !important;
    object-position: center top !important;
    opacity: 1 !important;
  }

  body.ft-home-mobile-public .hp-main-column #hero.hero.hero-integrated.hp-main-hero::before,
  body.ft-home-mobile-public #hero.hero.hero-integrated.hp-main-hero::before,
  body.ft-home-mobile-public .hp-main-column #hero.hero.hero-integrated.hp-main-hero > .hero-visual::before,
  body.ft-home-mobile-public .hp-main-column #hero.hero.hero-integrated.hp-main-hero > .hero-visual::after,
  body.ft-home-mobile-public #hero.hero.hero-integrated.hp-main-hero > .hero-visual::before,
  body.ft-home-mobile-public #hero.hero.hero-integrated.hp-main-hero > .hero-visual::after {
    content: none !important;
    display: none !important;
    background: none !important;
  }

  /*
    Fade ostaje mekan gore,
    ali donji dio puno ranije prelazi u čistu crnu
  */
  body.ft-home-mobile-public .hp-main-column #hero.hero.hero-integrated.hp-main-hero::after,
  body.ft-home-mobile-public #hero.hero.hero-integrated.hp-main-hero::after {
    content: "" !important;
    display: block !important;
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 62% !important;
    z-index: 3 !important;
    pointer-events: none !important;
    background: linear-gradient(
      180deg,
      rgba(8, 8, 8, 0.00) 0%,
      rgba(8, 8, 8, 0.04) 14%,
      rgba(8, 8, 8, 0.12) 24%,
      rgba(8, 8, 8, 0.26) 38%,
      rgba(8, 8, 8, 0.48) 52%,
      rgba(8, 8, 8, 0.74) 66%,
      rgba(8, 8, 8, 0.92) 78%,
      #080808 86%,
      #080808 100%
    ) !important;
  }

  body.ft-home-mobile-public .hp-main-column #hero.hero.hero-integrated.hp-main-hero > .hero-content,
  body.ft-home-mobile-public #hero.hero.hero-integrated.hp-main-hero > .hero-content {
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 28px !important;
    top: auto !important;
    z-index: 5 !important;
    width: 100% !important;
    max-width: none !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 18px !important;
    box-sizing: border-box !important;
    background: transparent !important;
    overflow: visible !important;
  }

  body.ft-home-mobile-public .hp-main-column #hero.hero.hero-integrated.hp-main-hero > .hero-content::before,
  body.ft-home-mobile-public .hp-main-column #hero.hero.hero-integrated.hp-main-hero > .hero-content::after,
  body.ft-home-mobile-public #hero.hero.hero-integrated.hp-main-hero > .hero-content::before,
  body.ft-home-mobile-public #hero.hero.hero-integrated.hp-main-hero > .hero-content::after {
    content: none !important;
    display: none !important;
    background: none !important;
  }

  body.ft-home-mobile-public .hp-main-column #hero.hero.hero-integrated.hp-main-hero .hp-hero-top-left-crest,
  body.ft-home-mobile-public #hero.hero.hero-integrated.hp-main-hero .hp-hero-top-left-crest,
  body.ft-home-mobile-public .hp-main-column #hero.hero.hero-integrated.hp-main-hero .hero-meta,
  body.ft-home-mobile-public #hero.hero.hero-integrated.hp-main-hero .hero-meta,
  body.ft-home-mobile-public .hp-main-column #hero.hero.hero-integrated.hp-main-hero #heroTitle,
  body.ft-home-mobile-public #hero.hero.hero-integrated.hp-main-hero #heroTitle,
  body.ft-home-mobile-public .hp-main-column #hero.hero.hero-integrated.hp-main-hero #heroLead,
  body.ft-home-mobile-public #hero.hero.hero-integrated.hp-main-hero #heroLead,
  body.ft-home-mobile-public .hp-main-column #hero.hero.hero-integrated.hp-main-hero #heroCta,
  body.ft-home-mobile-public #hero.hero.hero-integrated.hp-main-hero #heroCta {
    position: relative !important;
    z-index: 6 !important;
  }

  body.ft-home-mobile-public .hp-main-column #hero.hero.hero-integrated.hp-main-hero .hero-meta,
  body.ft-home-mobile-public #hero.hero.hero-integrated.hp-main-hero .hero-meta {
    margin-top: 0 !important;
    margin-bottom: 8px !important;
  }

  body.ft-home-mobile-public .hp-main-column #hero.hero.hero-integrated.hp-main-hero #heroTitle,
  body.ft-home-mobile-public .hp-main-column #hero.hero.hero-integrated.hp-main-hero .hp-hero-title,
  body.ft-home-mobile-public #hero.hero.hero-integrated.hp-main-hero #heroTitle,
  body.ft-home-mobile-public #hero.hero.hero-integrated.hp-main-hero .hp-hero-title {
    margin: 0 !important;
    line-height: 1.06 !important;
    text-shadow: 0 4px 22px rgba(0, 0, 0, 0.82) !important;
  }

  body.ft-home-mobile-public .hp-main-column #hero.hero.hero-integrated.hp-main-hero #heroCta,
  body.ft-home-mobile-public #hero.hero.hero-integrated.hp-main-hero #heroCta {
    margin-top: 14px !important;
  }
}

/* Mobile hero: final solid black bottom plate under CTA */
@media (max-width: 760px) {
  body.ft-home-mobile-public .hp-main-column #hero.hero.hero-integrated.hp-main-hero::before,
  body.ft-home-mobile-public #hero.hero.hero-integrated.hp-main-hero::before {
    content: "" !important;
    display: block !important;
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 190px !important;
    z-index: 4 !important;
    pointer-events: none !important;
    background: #080808 !important;
  }

  body.ft-home-mobile-public .hp-main-column #hero.hero.hero-integrated.hp-main-hero > .hero-content,
  body.ft-home-mobile-public #hero.hero.hero-integrated.hp-main-hero > .hero-content {
    z-index: 6 !important;
  }
}

/* Mobile hero: force black base through real content layer, not pseudo layers */
@media (max-width: 760px) {
  body.ft-home-mobile-public .hp-main-column #hero.hero.hero-integrated.hp-main-hero > .hero-content,
  body.ft-home-mobile-public #hero.hero.hero-integrated.hp-main-hero > .hero-content {
    bottom: 0 !important;
    padding: 0 18px 58px !important;
    z-index: 20 !important;
    background: linear-gradient(
      180deg,
      rgba(8, 8, 8, 0.00) 0%,
      rgba(8, 8, 8, 0.72) 18%,
      #080808 34%,
      #080808 100%
    ) !important;
  }

  body.ft-home-mobile-public .hp-main-column #hero.hero.hero-integrated.hp-main-hero #heroCta,
  body.ft-home-mobile-public #hero.hero.hero-integrated.hp-main-hero #heroCta {
    margin-top: 14px !important;
  }
}

/* X/Twitter embed cards from mobile admin body HTML */
.article-body .ft-x-embed-card .ft-x-embed-widget {
  margin: 12px 0 10px;
  max-width: 100%;
  overflow: hidden;
}

.article-body .ft-x-embed-card .twitter-tweet,
.article-body .ft-x-embed-card .twitter-tweet iframe {
  margin-left: auto !important;
  margin-right: auto !important;
  max-width: 100% !important;
}

.article-body .ft-x-embed-card.ft-x-embed-loaded > a {
  display: none;
}

.article-body .ft-embed-card.ft-x-embed-loaded .ft-embed-fallback {
  display: none;
}

@media (max-width: 640px) {
  .article-body .ft-x-embed-card,
  .article-body .ft-x-embed-card .ft-x-embed-widget,
  .article-body .ft-x-embed-card iframe {
    max-width: 100%;
    overflow: hidden;
  }
}

/* Desktop homepage density polish — index / hp-premium-layout only (min-width: 1024px) */
@media (min-width: 1024px) {
  body.ft-public-site .layout.hp-premium-layout {
    padding: 20px 0 48px;
    grid-template-columns: 196px minmax(0, 1fr) 272px;
    gap: 16px;
  }

  body.ft-public-site .hp-main-column .hero.hero-integrated.hp-main-hero,
  body.ft-public-site .hp-main-column #hero.hero.hero-integrated.hp-main-hero {
    min-height: 360px !important;
    max-height: 400px !important;
  }

  body.ft-public-site .hp-main-column #hero.hero.hero-integrated.hp-main-hero > .hero-content {
    left: 24px !important;
    right: 24px !important;
    bottom: 18px !important;
    max-width: 720px !important;
  }

  body.ft-public-site .hp-main-column #hero.hero.hero-integrated.hp-main-hero #heroTitle,
  body.ft-public-site .hp-main-column #hero.hero.hero-integrated.hp-main-hero .hp-hero-title,
  html body.ft-public-site .hp-main-column section#hero.hero.hero-integrated.hp-main-hero h1#heroTitle.hp-hero-title {
    font-size: clamp(26px, 2.35vw, 40px) !important;
    line-height: 1.08 !important;
    margin: 0 0 8px !important;
    max-width: 680px !important;
  }

  body.ft-public-site .hp-main-column #hero.hero.hero-integrated.hp-main-hero #heroLead,
  body.ft-public-site .hp-main-column #hero.hero.hero-integrated.hp-main-hero p.lead {
    display: none !important;
  }

  body.ft-public-site .hp-main-column #hero.hero.hero-integrated.hp-main-hero #heroCta {
    margin-top: 6px !important;
    padding: 8px 14px !important;
    font-size: 11px !important;
  }

  body.ft-public-site .hp-main-column #hero.hero.hero-integrated.hp-main-hero .hero-meta {
    margin-bottom: 6px !important;
  }

  body.ft-public-site .hp-main-column .section-title {
    margin: 20px 0 10px;
  }

  body.ft-public-site .hp-main-column .section-title h2 {
    font-size: 16px;
  }

  body.ft-public-site .hp-main-column .section-title span {
    font-size: 11px;
  }

  body.ft-public-site .hp-glasine-section {
    margin-top: 4px;
  }

  body.ft-public-site .hp-main-column .hp-glasine-grid.hp-glasine-three {
    gap: 14px;
  }

  body.ft-public-site .hp-main-column .hp-glasine-media {
    aspect-ratio: 16 / 8.5;
  }

  body.ft-public-site .hp-main-column .hp-glasine-body {
    padding: 11px 13px 12px;
    gap: 6px;
  }

  body.ft-public-site .hp-main-column .hp-glasine-title {
    font-size: clamp(14px, 1.05vw, 16px);
    line-height: 1.24;
    -webkit-line-clamp: 3;
  }

  body.ft-public-site .hp-main-column .hp-novo-grid {
    gap: 14px 16px !important;
    grid-template-columns: repeat(2, minmax(260px, 1fr)) !important;
  }

  body.ft-public-site .hp-main-column .hp-novo-thumb-wrap {
    aspect-ratio: 16 / 9;
  }

  body.ft-public-site .hp-main-column .hp-novo-card-main {
    padding: 10px 12px 12px;
    gap: 5px;
  }

  body.ft-public-site .hp-main-column .hp-novo-title {
    font-size: clamp(14px, 1.02vw, 16px) !important;
    line-height: 1.24 !important;
  }

  body.ft-public-site .hp-main-column .hp-novo-date {
    font-size: 11px;
  }

  body.ft-public-site .hp-sidebar-left .hp-rail-panel {
    padding: 6px;
    top: 10px;
  }

  body.ft-public-site .hp-sidebar-left .hp-club-search-sidebar {
    margin-bottom: 6px;
  }

  body.ft-public-site .hp-sidebar-left .hp-club-row {
    padding: 7px 4px;
    gap: 8px;
    font-size: 12px;
  }

  body.ft-public-site .hp-sidebar-left .hp-club-crest,
  body.ft-public-site .hp-sidebar-left .hp-club-crest-ph {
    width: 28px;
    height: 28px;
  }

  body.ft-public-site .hp-sidebar-right .hp-rail-panel {
    padding: 10px 11px 12px;
  }

  body.ft-public-site .hp-sidebar-right .hp-rail-stack {
    gap: 14px;
  }

  body.ft-public-site .hp-sidebar-right .hp-rail-block h3 {
    font-size: 11px;
    margin-bottom: 4px;
  }

  body.ft-public-site .hp-sidebar-right .hp-rail-note {
    margin-bottom: 8px;
    font-size: 10px;
  }

  body.ft-public-site .hp-sidebar-right .hp-rail-list li {
    margin-bottom: 8px;
  }

  body.ft-public-site .hp-sidebar-right .hp-rail-item {
    padding: 6px;
    gap: 8px;
  }

  body.ft-public-site .hp-sidebar-right .hp-rail-thumb,
  body.ft-public-site .hp-sidebar-right .hp-rail-thumb-ph {
    width: 46px;
    height: 34px;
  }

  body.ft-public-site .hp-sidebar-right .hp-rail-item-title {
    font-size: 12px;
    line-height: 1.3;
  }

  body.ft-public-site .hp-sidebar-right .sidebar-news-viewport {
    max-height: 340px;
    padding: 6px;
  }

  body.ft-public-site .hp-sidebar-right .sidebar-news-track {
    gap: 8px;
  }

  body.ft-public-site .hp-sidebar-right .sidebar-news-item {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 8px;
    padding: 6px;
  }

  body.ft-public-site .hp-sidebar-right .sidebar-news-thumb {
    width: 72px;
    height: 44px;
  }

  body.ft-public-site .hp-sidebar-right .sidebar-news-title {
    font-size: 12px;
    line-height: 1.3;
  }

  body.ft-public-site .hp-sidebar-right .sidebar-news-date {
    font-size: 10px;
    margin-top: 2px;
  }

  body.ft-public-site .hp-transfer-pred-list .hp-pred-row-layout {
    gap: 5px;
    font-size: 12px;
  }
}

@media (min-width: 1500px) {
  body.ft-public-site .hp-main-column .hp-novo-grid {
    grid-template-columns: repeat(3, minmax(240px, 1fr)) !important;
  }
}

/* Desktop scale: 100% zoom ≈ previous ~80% zoom — homepage + header only */
@media (min-width: 1024px) {
  body.ft-public-site .ft-home-wrap.ft-page-wrap {
    max-width: 1248px;
    padding-left: 18px;
    padding-right: 18px;
  }

  body.ft-public-site header.ft-header .ft-header-inner {
    max-width: 1248px !important;
    min-height: 52px !important;
    padding: 8px 16px !important;
    gap: 10px !important;
    flex-wrap: nowrap !important;
  }

  body.ft-public-site header.ft-header .ft-logo {
    flex: 0 0 auto !important;
    gap: 10px !important;
    max-width: 210px !important;
    min-width: 0 !important;
  }

  body.ft-public-site header.ft-header .ft-mark {
    width: 36px !important;
    height: 36px !important;
    font-size: 13px !important;
    border-radius: 9px !important;
  }

  body.ft-public-site header.ft-header .ft-zone {
    font-size: 9px !important;
    letter-spacing: 0.18em !important;
  }

  body.ft-public-site header.ft-header .ft-logo > div:last-child > div:last-child {
    font-size: clamp(14px, 1.35vw, 17px) !important;
    line-height: 1.12 !important;
  }

  body.ft-public-site header.ft-header .ft-nav {
    position: static !important;
    margin-left: 6px !important;
    margin-right: 6px !important;
    flex: 1 1 auto !important;
    min-width: 0 !important;
    flex-wrap: nowrap !important;
    justify-content: center !important;
    gap: 2px 4px !important;
  }

  body.ft-public-site header.ft-header .ft-nav a {
    padding: 5px 7px !important;
    font-size: 9px !important;
    letter-spacing: 0.07em !important;
  }

  body.ft-public-site header.ft-header .ft-nav a.ft-mobile-only-nav {
    display: none !important;
  }

  body.ft-public-site header.ft-header .ft-news-search {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    transform: none !important;
    display: flex !important;
    align-items: center !important;
    flex: 0 0 198px !important;
    width: 198px !important;
    max-width: 198px !important;
    min-width: 198px !important;
    margin: 0 0 0 auto !important;
    gap: 6px !important;
    z-index: 5 !important;
  }

  body.ft-public-site header.ft-header .ft-news-search-input {
    width: auto !important;
    height: 30px !important;
    flex: 1 1 auto !important;
    min-width: 0 !important;
    padding: 0 10px !important;
    font-size: 11px !important;
  }

  body.ft-public-site header.ft-header .ft-news-search-button {
    width: auto !important;
    min-width: 68px !important;
    height: 30px !important;
    flex: 0 0 auto !important;
    padding: 0 10px !important;
    font-size: 10px !important;
    letter-spacing: 0.02em !important;
    white-space: nowrap !important;
  }

  /* 5-track grid: sidebar | L gap | main | R gap | sidebar — equal 24px gutters, no transform */
  body.ft-public-site .layout.hp-premium-layout {
    padding: 16px 0 40px;
    grid-template-columns: 172px 24px minmax(0, 1fr) 24px 238px;
    column-gap: 0;
    row-gap: 14px;
  }

  body.ft-public-site .layout.hp-premium-layout > .hp-sidebar-left {
    grid-column: 1;
    min-width: 0;
  }

  body.ft-public-site .layout.hp-premium-layout > .hp-main-column {
    grid-column: 3;
    padding-left: 0;
    padding-right: 0;
    box-sizing: border-box;
    transform: none;
    width: 100%;
    max-width: 100%;
  }

  body.ft-public-site .layout.hp-premium-layout > .hp-sidebar-right {
    grid-column: 5;
    min-width: 0;
  }

  body.ft-public-site .layout.hp-premium-layout > .hp-sidebar-left .hp-rail-panel {
    box-sizing: border-box;
    padding-right: 8px;
  }

  body.ft-public-site .hp-main-column > .hero.hero-integrated.hp-main-hero,
  body.ft-public-site .hp-main-column > #hero.hero.hero-integrated.hp-main-hero {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  body.ft-public-site .hp-main-column .hero.hero-integrated.hp-main-hero,
  body.ft-public-site .hp-main-column #hero.hero.hero-integrated.hp-main-hero {
    min-height: 320px !important;
    max-height: 360px !important;
  }

  body.ft-public-site .hp-main-column #hero.hero.hero-integrated.hp-main-hero > .hero-content {
    left: 20px !important;
    right: 20px !important;
    bottom: 14px !important;
    max-width: 640px !important;
  }

  body.ft-public-site .hp-main-column #hero.hero.hero-integrated.hp-main-hero #heroTitle,
  body.ft-public-site .hp-main-column #hero.hero.hero-integrated.hp-main-hero .hp-hero-title,
  html body.ft-public-site .hp-main-column section#hero.hero.hero-integrated.hp-main-hero h1#heroTitle.hp-hero-title {
    font-size: clamp(22px, 2vw, 34px) !important;
    line-height: 1.06 !important;
    margin: 0 0 6px !important;
    max-width: 600px !important;
  }

  body.ft-public-site .hp-main-column #hero.hero.hero-integrated.hp-main-hero #heroCta {
    margin-top: 4px !important;
    padding: 7px 12px !important;
    font-size: 10px !important;
  }

  body.ft-public-site .hp-main-column #hero.hero.hero-integrated.hp-main-hero .hero-meta {
    margin-bottom: 4px !important;
    gap: 4px !important;
  }

  body.ft-public-site .hp-main-column #hero.hero.hero-integrated.hp-main-hero #heroBadge {
    font-size: 8px !important;
    padding: 3px 7px !important;
  }

  body.ft-public-site .hp-main-column .section-title {
    margin: 14px 0 8px;
    padding-left: 10px;
  }

  body.ft-public-site .hp-main-column .section-title h2 {
    font-size: 15px;
  }

  body.ft-public-site .hp-main-column .section-title span {
    font-size: 10px;
  }

  body.ft-public-site .hp-glasine-section {
    margin-top: 2px;
  }

  body.ft-public-site .hp-main-column .hp-glasine-grid.hp-glasine-three,
  body.ft-public-site .hp-main-column #glasineGrid.hp-glasine-grid.hp-glasine-three {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
  }

  body.ft-public-site .hp-main-column .hp-glasine-media {
    aspect-ratio: 16 / 8.75;
  }

  body.ft-public-site .hp-main-column .hp-glasine-body {
    padding: 10px 12px 11px;
    gap: 5px;
  }

  body.ft-public-site .hp-main-column .hp-glasine-title {
    font-size: clamp(14px, 1.05vw, 17px);
    line-height: 1.22;
    -webkit-line-clamp: 3;
  }

  body.ft-public-site .hp-main-column .hp-glasine-link {
    border-radius: 12px;
  }

  body.ft-public-site .hp-main-column .hp-novo-grid,
  body.ft-public-site .hp-main-column #latestGrid.hp-novo-grid {
    gap: 10px 11px !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  body.ft-public-site .hp-main-column .hp-novo-thumb-wrap {
    aspect-ratio: 16 / 7.25;
  }

  body.ft-public-site .hp-main-column .hp-novo-card-main {
    padding: 7px 9px 9px;
    gap: 4px;
  }

  body.ft-public-site .hp-main-column .hp-novo-title,
  body.ft-public-site .hp-main-column #latestGrid .hp-novo-title {
    font-size: clamp(12px, 0.88vw, 14px) !important;
    line-height: 1.24 !important;
    display: -webkit-box !important;
    -webkit-box-orient: vertical !important;
    -webkit-line-clamp: 2;
    overflow: hidden;
    word-break: normal !important;
    overflow-wrap: normal !important;
  }

  body.ft-public-site .hp-main-column .hp-novo-date {
    font-size: 10px;
  }

  body.ft-public-site .hp-main-column .hp-novo-prob {
    font-size: 10px;
  }

  body.ft-public-site .hp-sidebar-left .hp-rail-panel {
    padding: 5px;
    top: 8px;
  }

  body.ft-public-site .hp-sidebar-left .hp-club-row {
    padding: 6px 3px;
    gap: 7px;
    font-size: 11px;
  }

  body.ft-public-site .hp-sidebar-left .hp-club-crest,
  body.ft-public-site .hp-sidebar-left .hp-club-crest-ph {
    width: 26px;
    height: 26px;
  }

  body.ft-public-site .hp-sidebar-right .hp-rail-panel {
    padding: 8px 9px 10px;
  }

  body.ft-public-site .hp-sidebar-right .hp-rail-stack {
    gap: 12px;
  }

  body.ft-public-site .hp-sidebar-right .hp-rail-block h3 {
    font-size: 10px;
  }

  body.ft-public-site .hp-sidebar-right .hp-rail-item {
    padding: 5px;
    gap: 7px;
  }

  body.ft-public-site .hp-sidebar-right .hp-rail-thumb,
  body.ft-public-site .hp-sidebar-right .hp-rail-thumb-ph {
    width: 42px;
    height: 32px;
  }

  body.ft-public-site .hp-sidebar-right .hp-rail-item-title {
    font-size: 11px;
  }

  body.ft-public-site .hp-sidebar-right .sidebar-news-viewport {
    max-height: 300px;
    padding: 5px;
  }

  body.ft-public-site .hp-sidebar-right .sidebar-news-item {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 7px;
    padding: 5px;
  }

  body.ft-public-site .hp-sidebar-right .sidebar-news-thumb {
    width: 64px;
    height: 40px;
  }

  body.ft-public-site .hp-sidebar-right .sidebar-news-title {
    font-size: 11px;
  }
}

@media (min-width: 1280px) {
  body.ft-public-site .hp-main-column .hp-novo-grid,
  body.ft-public-site .hp-main-column #latestGrid.hp-novo-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 10px 12px !important;
  }
}

@media (min-width: 1500px) {
  body.ft-public-site .hp-main-column .hp-glasine-grid.hp-glasine-three,
  body.ft-public-site .hp-main-column #glasineGrid.hp-glasine-grid.hp-glasine-three {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

/* Final desktop homepage main column balance - 20260522 */
@media (min-width: 1024px) {
  html body.ft-public-site .ft-page-wrap.ft-home-wrap > main.layout.hp-premium-layout > .hp-main-column {
    transform: translateX(16px) !important;
  }
}

/* Desktop NOVO overflow 4-card row inside stable homepage column - 20260522 */
@media (min-width: 1024px) {
  html body.ft-public-site .hp-main-column > #latest {
    width: calc(100% + 226px) !important;
    max-width: none !important;
    margin-left: -224px !important;
    margin-top: 18px !important;
    padding: 0 !important;
  }

  html body.ft-public-site .hp-main-column > #latest .section-title {
    margin: 0 0 10px !important;
    padding-left: 0 !important;
  }

  html body.ft-public-site .hp-main-column > #latest #latestGrid.hp-novo-grid {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 14px !important;
  }

  html body.ft-public-site .hp-main-column > #latest #latestGrid .hp-novo-card {
    min-width: 0 !important;
  }

  html body.ft-public-site .hp-main-column > #latest #latestGrid .hp-novo-thumb-wrap {
    aspect-ratio: 16 / 9 !important;
  }

  html body.ft-public-site .hp-main-column > #latest #latestGrid .hp-novo-card-main {
    padding: 7px 8px 9px !important;
    gap: 4px !important;
  }

  html body.ft-public-site .hp-main-column > #latest #latestGrid .hp-novo-title {
    font-size: clamp(11.5px, 0.74vw, 13.5px) !important;
    line-height: 1.2 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
  }

  html body.ft-public-site .hp-main-column > #latest #latestGrid .badge {
    width: fit-content !important;
    max-width: 100% !important;
    align-self: flex-start !important;
    font-size: 8px !important;
    padding: 3px 7px !important;
  }

  html body.ft-public-site .hp-main-column > #latest #latestGrid .hp-novo-date,
  html body.ft-public-site .hp-main-column > #latest #latestGrid .hp-novo-prob {
    font-size: 10px !important;
  }
}

/* Right sidebar polish — desktop only (TRENDING + Transfer Predviđanja) */
@media (min-width: 1024px) {
  body.ft-public-site .hp-sidebar-right .hp-rail-list li {
    margin-bottom: 7px !important;
  }

  body.ft-public-site .hp-sidebar-right .hp-rail-item {
    align-items: center !important;
    padding: 6px 7px !important;
    gap: 9px !important;
  }

  body.ft-public-site .hp-sidebar-right .hp-rail-thumb,
  body.ft-public-site .hp-sidebar-right .hp-rail-thumb-ph,
  body.ft-public-site .hp-sidebar-right .hp-rail-thumb-crest-wrap {
    width: 52px !important;
    height: 42px !important;
    flex-shrink: 0 !important;
    border-radius: 7px !important;
  }

  body.ft-public-site .hp-sidebar-right .hp-rail-thumb-crest {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
  }

  body.ft-public-site .hp-sidebar-right .hp-rail-item-text {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    min-width: 0 !important;
    flex: 1 1 auto !important;
  }

  body.ft-public-site .hp-sidebar-right .hp-rail-item-title {
    font-size: 12px !important;
    line-height: 1.28 !important;
  }

  body.ft-public-site .hp-sidebar-right .hp-rail-item-meta {
    margin-top: 2px !important;
    font-size: 10px !important;
  }

  body.ft-public-site .hp-sidebar-right .hp-transfer-pred-list {
    gap: 6px !important;
    max-height: 300px !important;
  }

  body.ft-public-site .hp-sidebar-right .hp-transfer-pred-list .hp-pred-row-layout {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 30px 32px 42px !important;
    align-items: center !important;
    gap: 6px !important;
    min-height: 46px !important;
    padding: 5px 7px !important;
    border-radius: 10px !important;
  }

  body.ft-public-site .hp-sidebar-right .hp-transfer-pred-list .hp-pred-rank {
    display: none !important;
  }

  body.ft-public-site .hp-sidebar-right .hp-transfer-player-name {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    gap: 0 !important;
    min-width: 0 !important;
    line-height: 1.1 !important;
  }

  body.ft-public-site .hp-sidebar-right .hp-transfer-player-first,
  body.ft-public-site .hp-sidebar-right .hp-transfer-player-last {
    display: block !important;
    max-width: 100% !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  body.ft-public-site .hp-sidebar-right .hp-transfer-player-first {
    font-size: 11px !important;
    font-weight: 800 !important;
    color: #f2f2f2 !important;
  }

  body.ft-public-site .hp-sidebar-right .hp-transfer-player-last {
    font-size: 10px !important;
    font-weight: 700 !important;
    color: rgba(242, 201, 76, 0.9) !important;
  }

  body.ft-public-site .hp-sidebar-right .hp-transfer-pred-list .hp-pred-trend {
    width: 28px !important;
    height: 22px !important;
    margin: 0 !important;
    justify-self: center !important;
  }

  body.ft-public-site .hp-sidebar-right .hp-transfer-pred-list .hp-pred-trend::before {
    width: 26px !important;
    height: 20px !important;
  }

  body.ft-public-site .hp-sidebar-right .hp-transfer-pred-list .hp-pred-crest,
  body.ft-public-site .hp-sidebar-right .hp-transfer-pred-list .hp-pred-crest-ph {
    width: 30px !important;
    height: 30px !important;
    padding: 3px !important;
    margin: 0 !important;
    justify-self: center !important;
    border-radius: 50% !important;
    object-fit: contain !important;
    box-sizing: border-box !important;
    background: radial-gradient(
      circle,
      #ffffff 0%,
      #f7f7f7 70%,
      rgba(255, 255, 255, 0.88) 100%
    ) !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.9) !important;
  }

  body.ft-public-site .hp-sidebar-right .hp-transfer-pred-list .hp-pred-pct {
    min-width: 0 !important;
    width: 42px !important;
    padding: 3px 4px !important;
    font-size: 10px !important;
    line-height: 1 !important;
    font-weight: 900 !important;
    border-radius: 999px !important;
    justify-self: end !important;
  }
}

/* Transfer Predviđanja — white/off-white crest background (sidebar only) */
body.ft-public-site .hp-sidebar-right .hp-transfer-pred-list img.hp-pred-crest,
body.ft-public-site .hp-sidebar-right .hp-transfer-pred-list .hp-pred-crest {
  background: radial-gradient(circle, #ffffff 0%, #f7f7f7 70%, rgba(255, 255, 255, 0.92) 100%) !important;
  padding: 3px !important;
  border-radius: 50% !important;
  object-fit: contain !important;
  box-sizing: border-box !important;
}

body.ft-public-site .hp-sidebar-right .hp-transfer-pred-list .hp-pred-crest-ph {
  background: radial-gradient(circle, #ffffff 0%, #f7f7f7 70%, rgba(255, 255, 255, 0.92) 100%) !important;
  color: #111 !important;
}

/* RESTORE DESKTOP KLUBOVI LEFT SIDEBAR
   Scope: desktop public homepage only.
   Keeps hero, U FOKUSU, NOVO, right sidebar and Transfer Predviđanja untouched.
*/
@media (min-width: 1024px) {
  body.ft-public-site .layout.hp-premium-layout {
    display: grid !important;
    grid-template-columns: 190px 24px minmax(0, 1fr) 24px 300px !important;
    column-gap: 0 !important;
    row-gap: 14px !important;
    align-items: start !important;
  }

  body.ft-public-site .layout.hp-premium-layout > .hp-sidebar-left {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    grid-column: 1 !important;
    width: 190px !important;
    min-width: 190px !important;
    max-width: 190px !important;
    position: static !important;
    top: auto !important;
    align-self: start !important;
    z-index: 2 !important;
  }

  body.ft-public-site .layout.hp-premium-layout > .hp-main-column {
    grid-column: 3 !important;
    min-width: 0 !important;
  }

  body.ft-public-site .layout.hp-premium-layout > .hp-sidebar-right {
    grid-column: 5 !important;
    min-width: 0 !important;
  }

  body.ft-public-site .layout.hp-premium-layout > .hp-sidebar-left .hp-rail-panel {
    display: block !important;
    width: 100% !important;
    position: static !important;
    top: auto !important;
    max-height: 475px !important;
    overflow-y: auto !important;
  }

  body.ft-public-site .layout.hp-premium-layout > .hp-sidebar-left .hp-club-list {
    display: block !important;
    list-style: none !important;
    margin: 10px 0 0 !important;
    padding: 0 !important;
  }

  body.ft-public-site .layout.hp-premium-layout > .hp-sidebar-left .hp-club-row {
    display: flex !important;
    align-items: center !important;
    gap: 9px !important;
    width: 100% !important;
  }

  body.ft-public-site .layout.hp-premium-layout > .hp-sidebar-left .hp-club-crest,
  body.ft-public-site .layout.hp-premium-layout > .hp-sidebar-left .hp-club-crest-ph {
    width: 28px !important;
    height: 28px !important;
    flex: 0 0 28px !important;
    object-fit: contain !important;
  }
}

/* Mobile stays as current mobile layout. */
@media (max-width: 1023px) {
  body.ft-home-mobile-public .layout.hp-premium-layout > .hp-sidebar-left {
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    position: static !important;
  }
}


/* Center only homepage hero + U FOKUSU between KLUBOVI and TRENDING.
   Does not touch KLUBOVI sidebar, internal scroll, TRENDING, or lower sections. */
@media (min-width: 1024px) {
  body.ft-public-site .hp-main-column > #hero.hero.hero-integrated.hp-main-hero,
  body.ft-public-site .hp-main-column > #transfer-glasine.hp-glasine-section {
    transform: translateX(-16px) !important;
  }
}


/* ===== Card badge preko slike (gornji lijevi ugao) ===== */
.hp-glasine-media,
.hp-novo-media-wrap {
  position: relative;
}
.hp-novo-media-wrap {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.ft-card-badge {
  position: absolute !important;
  top: 8px;
  left: 8px;
  z-index: 3;
  font-size: 9px;
  padding: 3px 7px;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(2px);
  border-radius: 4px;
  letter-spacing: 0.1em;
}
/* ===== kraj card badge ===== */

/* ===== Kartice: vise slike, kompaktan tekst, datum na dno, fade ===== */
.hp-glasine-media {
  aspect-ratio: 16 / 11;
}
.hp-novo-thumb-wrap {
  aspect-ratio: 16 / 11;
}
.hp-glasine-body,
.hp-novo-card-main {
  padding-top: 8px !important;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}
.hp-glasine-date,
.hp-novo-date {
  margin-top: auto !important;
  padding-top: 6px;
}
.hp-glasine-media::after,
.hp-novo-thumb-wrap::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 42%;
  pointer-events: none;
  z-index: 2;
  background: linear-gradient(
    to bottom,
    rgba(13, 13, 13, 0) 0%,
    rgba(13, 13, 13, 0.5) 72%,
    rgba(13, 13, 13, 0.9) 100%
  );
}
/* ===== kraj kartice ===== */

/* ===== Pravne stranice + footer ===== */
.ft-legal-page {
  max-width: 820px;
  margin: 0 auto;
  padding: 32px 20px 64px;
}
.ft-legal-content h1 {
  color: var(--gold, #f2c94c);
  font-size: clamp(28px, 4vw, 42px);
  margin: 0 0 6px;
  line-height: 1.1;
}
.ft-legal-updated { color: #888; font-size: 13px; margin: 0 0 28px; }
.ft-legal-content h2 {
  color: #f2f2f2; font-size: 20px; margin: 30px 0 10px;
  padding-bottom: 6px; border-bottom: 1px solid rgba(242,201,76,0.18);
}
.ft-legal-content p, .ft-legal-content li {
  color: #cfcfcf; font-size: 15px; line-height: 1.7;
}
.ft-legal-content ul { margin: 10px 0 16px; padding-left: 22px; }
.ft-legal-content li { margin-bottom: 6px; }
.ft-legal-content a { color: var(--gold, #f2c94c); text-decoration: none; }
.ft-legal-content a:hover { text-decoration: underline; }
.ft-legal-content strong { color: #f2f2f2; }
.ft-legal-note {
  margin-top: 36px; padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 14px; color: #999;
}

.ft-footer {
  border-top: 1px solid rgba(255,255,255,0.08);
  background: #0b0b0b;
  margin-top: 48px;
}
.ft-footer-inner {
  max-width: 1280px; margin: 0 auto; padding: 28px 20px;
  display: flex; flex-direction: column; align-items: center;
  gap: 12px; text-align: center;
}
.ft-footer-brand {
  color: var(--gold, #f2c94c); font-weight: 800; font-size: 16px;
  letter-spacing: 0.04em;
}
.ft-footer-nav {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 22px;
}
.ft-footer-nav a { color: #cfcfcf; text-decoration: none; font-size: 14px; }
.ft-footer-nav a:hover { color: var(--gold, #f2c94c); }
.ft-footer-copy { color: #777; font-size: 12px; line-height: 1.6; }
/* ===== kraj ===== */

/* === Card title manual entities (gold), konzistentno s hero title_entities === */
.ft-card-entity { color: var(--gold); }

/* === Card badge boja po pravilniku kategorija (samo boja teksta; pozicija/podloga netaknuti) === */
.ft-card-badge.badge-breaking { color: var(--red) !important; }
.ft-card-badge.badge-news { color: var(--gold) !important; }

/* === Card badge: breaking = pun crveni pill (bijeli tekst), pozicija netaknuta. News ostaje kako jest. === */
.ft-card-badge.badge-breaking {
  background: #b00000 !important;
  color: #ffffff !important;
  border: none !important;
  backdrop-filter: none !important;
}

/* === Club kartice: naslov čisto bijeli kao na naslovnici (izjednačeno s #latestGrid). Zlatni entiteti ostaju zlatni. === */
body.ft-public-site #clubArticles .hp-novo-title,
body.ft-public-site #clubArticles .hp-novo-title a,
body.ft-public-site .club-articles-grid .hp-novo-title,
body.ft-public-site .club-articles-grid .hp-novo-title a {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}
body.ft-public-site #clubArticles .hp-novo-title .ft-card-entity,
body.ft-public-site .club-articles-grid .hp-novo-title .ft-card-entity {
  color: var(--gold) !important;
  -webkit-text-fill-color: var(--gold) !important;
}
