/* =============================================
   LIGHT THEME
   ============================================= */
html[data-theme="light"] {
  --bg:         #f5f4f0;
  --bg-2:       #eeecea;
  --bg-3:       #e4e2de;
  --bg-card:    #ffffff;
  --border:     rgba(0,0,0,0.08);
  --border-red: rgba(136,27,22,0.18);
  --text:       #16151a;
  --text-muted: #4c4c5a;
  --text-dim:   #9090a0;
}

[data-theme="light"] .badge-news,
[data-theme="light"] .card-type-badge,
[data-theme="light"] .badge-pletyka {
  color: #0c0c0f;
}

[data-theme="light"] .mobile-menu,
[data-theme="light"] .search-bar {
  background: var(--bg-2);
}

[data-theme="light"] .article-update {
  background: rgba(136,27,22,0.06);
}

[data-theme="light"] .article-title {
  color: var(--text);
}

/* Theme toggle button */
.theme-toggle {
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 0.2s var(--ease);
}

.theme-toggle:hover {
  background: rgba(255,255,255,0.08);
  color: var(--text);
}

[data-theme="light"] .theme-toggle:hover {
  background: rgba(0,0,0,0.06);
}

.theme-toggle .icon-moon { display: block; }
.theme-toggle .icon-sun  { display: none; }

[data-theme="light"] .theme-toggle .icon-moon { display: none; }
[data-theme="light"] .theme-toggle .icon-sun  { display: block; }

/* === RESET & BASE === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --red:        #881b16;
  --red-vivid:  #a82018;
  --red-dark:   #5a0f0f;
  --gold:       #fab10d;
  --gold-light: #fdd05a;
  --bg:         #0c0c0f;
  --bg-2:       #111115;
  --bg-3:       #17171d;
  --bg-card:    #1a1a22;
  --border:     rgba(255,255,255,0.07);
  --border-red: rgba(136,27,22,0.4);
  --text:       #e8e8ef;
  --text-muted: #888896;
  --text-dim:   #5a5a6a;
  --white:      #ffffff;
  --nav-h:      64px;
  --radius:     8px;
  --radius-lg:  14px;
  --shadow:     0 4px 24px rgba(0,0,0,0.5);
  --shadow-lg:  0 12px 48px rgba(0,0,0,0.7);
  --font-head:  'Barlow Condensed', sans-serif;
  --font-body:  'Barlow', sans-serif;
  --ease:       cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

img {
  display: block;
  /* max-width: 100%; */
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  color: inherit;
}

ul, ol {
  list-style: none;
}

/* === SCROLLBAR === */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-2); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 3px; }

/* =============================================
   HEADER
   ============================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(12,12,15,1);
  /* backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px); */
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s var(--ease);
 
  /* Header mindig sotet - lokalisan felulirjuk a light theme valtozokat */
   --bg:         #0c0c0f;
  --bg-2:       #111115;
  --bg-3:       #17171d;
  --bg-card:    #1a1a22;
  --border:     rgba(255,255,255,0.07);
  --border-red: rgba(136,27,22,0.4);
  --text:       #e8e8ef;
  --text-muted: #888896;
  --text-dim:   #5a5a6a;
  --white:      #ffffff;
 
} 

.site-header.scrolled {
  box-shadow: 0 2px 32px rgba(0,0,0,0.6);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  height: var(--nav-h);
}

/* Logo */
.logo {
  flex-shrink: 0;
}

.logo-img {
  height: 36px;
  width: auto;
  filter: brightness(1.1);
  transition: filter 0.2s;
}

.logo:hover .logo-img {
  filter: brightness(1.3);
}

/* Platform nav */
.platform-nav {
  display: flex;
  gap: 6px;
}

.platform-pill {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: all 0.2s var(--ease);
  white-space: nowrap;
}

.platform-pill:hover,
.platform-pill.active {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

/* Section nav */
.section-nav {
  display: flex;
  gap: 4px;
  margin-left: auto;
}

.section-nav a {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 6px 12px;
  border-radius: var(--radius);
  color: var(--text-muted);
  transition: all 0.2s var(--ease);
  white-space: nowrap;
}

.section-nav a:hover {
  color: var(--text);
  background: rgba(255,255,255,0.06);
}

.section-nav a.active {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
}

/* Header actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  margin-left: auto;
}

.search-btn {
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 0.2s var(--ease);
}

.search-btn:hover {
  background: rgba(255,255,255,0.08);
  color: var(--text);
}


.hamburger {
  display: none;
  width: 38px;
  height: 38px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: var(--radius);
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
  transform-origin: center;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Search bar */
.search-bar {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s var(--ease);
}

.search-bar.open {
  max-height: 72px;
}

.search-bar-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 16px 24px;
  color: var(--text-muted);
}

.search-input {
  flex: 1;
  background: none;
  border: none;
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  outline: none;
}

.search-input::placeholder {
  color: var(--text-dim);
}

.search-bar .close-btn {
  font-family: var(--font-body);
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 4px;
  border: 1px solid var(--border);
  color: var(--text-dim);
  cursor: pointer;
  background: var(--bg-card);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s var(--ease);
}

.mobile-menu.open {
  max-height: 500px;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 12px 24px 24px;
}

.mobile-nav a {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  transition: color 0.2s;
}

.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--gold); }

.mobile-divider {
  height: 1px;
  background: var(--red);
  margin: 8px 0;
}

/* =============================================
   PAGE CONTAINER
   ============================================= */
.page-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 24px;
}

/* =============================================
   HERO SLIDER
   ============================================= */
.hero-section {
  position: relative;
  background: var(--bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
  
.hero-slider {
  position: relative;
  height: clamp(480px, 58vw, 480px);
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s var(--ease);
  will-change: opacity;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

.slide-bg {
  position: absolute;
  inset: 0;
  background-image: var(--slide-img);
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s var(--ease);
}

.hero-slide.active .slide-bg {
  transform: scale(1);
}

/* Gradient overlay */
.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    25deg,
    rgba(12,12,15,0.95) 0%,
    rgba(12,12,15,0.3) 20%,
    rgba(12,12,15,0.15) 100%
  );
  z-index: 1;
}

.slide-content {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  right: 50%;
  padding: clamp(24px, 4vw, 60px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.slide-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.badge {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
}

.badge-news    { background: var(--gold); color: var(--bg); }
.badge-review  {
   background: var(--red); color: var(--white);
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px; }

.slide-author,
.slide-platform {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.slide-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.5vw, 52px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--white);
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s 0.2s var(--ease), transform 0.6s 0.2s var(--ease);
}

.hero-slide.active .slide-title {
  opacity: 1;
  transform: translateY(0);
}

.slide-lead {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
  max-width: 480px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s 0.35s var(--ease), transform 0.6s 0.35s var(--ease);
}

.hero-slide.active .slide-lead {
  opacity: 1;
  transform: translateY(0);
}

.slide-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s 0.48s var(--ease), transform 0.6s 0.48s var(--ease), color 0.2s;
  align-self: flex-start;
}

.hero-slide.active .slide-cta { opacity: 1; transform: translateY(0); }
.slide-cta:hover { color: var(--gold-light); }
.slide-cta svg { transition: transform 0.2s var(--ease); }
.slide-cta:hover svg { transform: translateX(4px); }

/* Slider controls */
.slider-controls {
  position: absolute;
  bottom: 78px;
  right: 28px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 10px;
}

.slider-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.2s var(--ease);
}

.slider-btn:hover {
  background: var(--red);
  border-color: var(--red);
}

.slider-dots {
  display: flex;
  gap: 6px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transition: all 0.3s var(--ease);
}

.dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/* Slide thumbnails */
.slide-thumbs {
  display: flex;
  gap: 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  overflow-x: auto;
  scrollbar-width: none;
  /* Slide-thumbs mindig sotet - lokalisan felulirjuk a light theme valtozokat */
  --bg:         #0c0c0f;
  --bg-2:       #111115;
  --bg-3:       #17171d;
  --bg-card:    #1a1a22;
  --border:     rgba(255,255,255,0.07);
  --border-red: rgba(136,27,22,0.4);
  --text:       #e8e8ef;
  --text-muted: #888896;
  --text-dim:   #5a5a6a;
  --white:      #ffffff;
}

.slide-thumbs::-webkit-scrollbar { display: none; }

.thumb {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border-right: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.2s var(--ease);
  min-width: 200px;
  flex: 1;
  border-bottom: 3px solid transparent;
  font-family: var(--font-body);
  text-align: left;
}

.thumb:hover {
  background: rgba(255,255,255,0.04);
}

.thumb.active {
  border-bottom-color: var(--gold);
  background: rgba(250,177,13,0.05);
}

.thumb img {
  width: 52px;
  height: 36px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.thumb.active img,
.thumb:hover img {
  opacity: 1;
}

.thumb span {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1.3;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: color 0.2s;
}

.thumb.active span { color: var(--text); }

/* =============================================
   CONTENT WRAPPER (Feed + Sidebar)
   ============================================= */
.content-wrapper {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 32px;
  margin: 20px 0;
}

/* =============================================
   FEED TABS
   ============================================= */

/* =============================================
   ARTICLES GRID
   ============================================= */
.articles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.articles-grid > * {
  flex: 1 1 calc(50% - 10px);
  min-width: 300px;
}

.articles-grid.games-list > * {
  flex: 1 1 100%;
  max-width: 100%;
}

.article-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  /* border: 1px solid var(--border); */
  overflow: hidden;
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

/* .article-card:hover {
  transform: translateY(-3px);
  border-color: rgba(136,27,22,0.35);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
} */

.article .table-article {
    width: 100%;
    overflow-x: auto;
}

.blockquote, .keretes {
  margin: 20px 0;
  padding: 30px 40px 20px 40px;
  border-left: 4px solid var(--red);
  background-color: var(--bg-2);
  font-style: italic;
  position: relative;
}


.blockquote p {
  margin-bottom: 0 !important;
}

.blockquote footer{
  display: block;
  font-size: 0.9em;
  color: #777;
  font-style: normal;
}

.blockquote:before,
.blockquote:after {
  content: '"';
  font-size: 4em;
  color: var(--red);
  position: absolute;
}

.blockquote:before {
    top: -10px;
    left: 15px;
}

.blockquote:after {
  bottom: -40px;
  right: 20px;
}

.card-big {
  flex: 1 1 100%;
  max-width: 100%;
  display: flex;
  flex-direction: row;
}

.card-big > .card-img-wrap {
  flex: 0 0 55%;
}

.card-big > .card-body {
  flex: 0 0 45%;
}

.card-img-wrap {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.card-big .card-img-wrap {
  aspect-ratio: auto;
  height: auto;
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.article-card:hover .card-img-wrap img {
  transform: scale(1.04);
}

.card-type-badge,
.badge-review-sm,
.badge-culture-sm {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  background: var(--gold);
  color: var(--bg);
  z-index: 1;
}

.badge-review-sm  { background: var(--red); color: var(--white); }
.badge-culture-sm { background: #1d4e89; color: var(--white); }

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card-big .card-body {
  padding: 28px;
  justify-content: center;
}

.card-title {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.card-big .card-title {
  font-size: 30px;
}

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

.card-lead {
  font-size: 16px;
  /* color: var(--text-muted); */
  line-height: 1.6;
}

.card-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  font-size: 13px;
  color: var(--text-dim);
}

.meta-author {
  color: var(--red-vivid);
  font-weight: 600;
}

.meta-dot::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--text-dim);
    flex-shrink: 0;
    display: inline-block;
    margin: 0 4px;
    vertical-align: middle;
}

/*** Table ***/
.table {
    width: 100%;
    overflow-x: auto;
    margin-bottom: 20px;
        border-collapse: collapse;
}
.table td, .table th {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}


/* =============================================
   SIDEBAR
   ============================================= */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sidebar-widget {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  /* border: 1px solid var(--border); */
  padding: 22px;
  position: relative;
  overflow: hidden;
}

.widget-title {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.widget-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* Trending */
/* Social links */
.sidebar-social {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-muted);
  transition: all 0.2s var(--ease);
}

.social-link:hover { color: var(--white); border-color: transparent; }
.social-fb:hover { background: #1877f2; }
.social-x:hover  { background: #000; }
.social-ig:hover { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.social-yt:hover { background: #ff0000; }
.social-tw:hover { background: #9146ff; }

/* Comment widget */
.comment-tabs {
  display: flex;
  border-bottom: 1px solid var(--border);
  margin-bottom: 14px;
}

.comment-tab {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 12px;
  color: var(--text-dim);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all 0.2s var(--ease);
}

.comment-tab.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.comment-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.comment-list.hidden { display: none; }

.comment-item {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.comment-item:last-child { border-bottom: none; }

.comment-title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text-muted);
  transition: color 0.2s;
}

.comment-title:hover { color: var(--text); }

.comment-meta {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
}

.comment-nick { color: var(--red-vivid); font-weight: 700; }
.comment-time { color: var(--text-dim); }

/* HWSW list */
.hwsw-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 10px;
}

.hwsw-list li {
  border-bottom: 1px solid var(--border);
}

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

.hwsw-list a {
  display: block;
  padding: 9px 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text-muted);
  transition: color 0.2s;
}

.hwsw-list a:hover { color: #39f690; }

.hwsw-logo {
    background-color: #0c0c0f;
    padding: 10px 50px;
    border-radius: var(--radius);
}


/* =============================================
   ARTICLE PAGE
   ============================================= */

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  /* padding: 20px 0 0; */
  font-size: 13px;
  color: var(--text-dim);
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--text-dim);
  transition: color 0.2s;
}

.breadcrumb a:hover { color: var(--text); }

.breadcrumb-sep {
  color: var(--text-dim);
  opacity: 0.5;
}

.breadcrumb-current {
  color: var(--text-muted);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 420px;
}

/* Article layout */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  margin: 28px 0 60px;
  align-items: start;
}

/* Article header */
.article-header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: start;
}

.article-header-with-cover {
    grid-template-columns: 120px 1fr;
    margin-bottom: 1rem;
    background-color: var(--bg-card);
    padding: 1rem;
    border-radius: var(--radius-lg);
}

.article-header-cover {
  order: 1;
}

.article-header-cover .game-cover {
  width: 100%;
  max-width: 120px;
  height: auto;
  border-radius: var(--radius);
  display: block;
}

.article-header-body {
  order: 2;
}


.article-header-with-cover  .article-byline {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 0;
    border:0;
    padding: 0;

}

.article-header-with-cover  .article-byline p {
  font-size: 13px;
}

.article-meta-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.badge-pletyka{
  background: var(--gold);
  color: var(--bg);
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
}

.article-section-link {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color 0.2s;
}

.article-section-link:hover { color: var(--text-muted); }

.article-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--white);
}

.article-byline {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.platforms-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 1rem;
}

.platform-item {
  background: var(--bg);
  color: var(--text);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border-red);
  flex-shrink: 0;
}
.article-byline .author-avatar:not(:first-child) {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border-red);
  flex-shrink: 0;
  margin-left: -20px;
}

.byline-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.byline-author {
  font-size: 14px;
  font-weight: 700;
  color: var(--red-vivid);
}

.byline-author:hover { color: var(--gold); }

.byline-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-dim);
}

.byline-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--text-dim);
}

.byline-comments { color: var(--text-dim); }
.byline-comments:hover { color: var(--text-muted); }

/* Article lead */
.article-lead {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.65;
  color: var(--text);
  border-left: 3px solid var(--red);
  padding: 4px 0 4px 20px;
  margin: 28px 0 32px;
}

/* Article body */
.article-body {
  font-size: 16px;
  line-height: 1.8;
  /* color: var(--text-muted); */
}

.article-body p {
  margin-bottom: 22px;
}

.article-body a {
  color: var(--gold);
  text-decoration: underline;
  text-decoration-color: rgba(250,177,13,0.35);
  text-underline-offset: 3px;
  transition: color 0.2s, text-decoration-color 0.2s;
}

.article-body a:hover {
  color: var(--gold-light);
  text-decoration-color: rgba(250,177,13,0.7);
}

.article-body strong {
  color: var(--text);
  font-weight: 700;
}

.article-body img {
  max-width: 100%;
  border-radius: var(--radius);
}

.article-body h3{
  font-size: 20px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin: 16px 0 16px;
}

.article-body .thumbs {
  display: grid;
  grid-template-columns: auto auto auto auto;
  gap: 20px;  
}

.article-figure {
  margin: 32px 0;
  text-align: center;
}

.article-figure img {
  max-width: 100%;
  border-radius: var(--radius);
  display: inline-block;
  border: 1px solid var(--border);
}

.article-update {
  background: rgba(136,27,22,0.1);
  border-left: 3px solid var(--red);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 14px 18px;
  margin: 4px 0 22px;
}

.article-update p { margin-bottom: 0; color: var(--text); }

/* Article social bar */
.article-social-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  margin-top: 40px;
  flex-wrap: wrap;
}

.social-bar-label {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-right: 4px;
}

.social-share-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  border-radius: 100px;
  border: 1px solid var(--border);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  transition: all 0.2s var(--ease);
}

.social-share-btn:hover { color: var(--white); border-color: transparent; }
.social-share-fb:hover { background: #1877f2; }
.social-share-x:hover  { background: #000; }


.game-firms {
  font-size: 0.7rem;
  padding: 10px 0;
}

.game-cover-placeholder {
  width: 120px;
  height: 160px;
  background: var(--bg-card);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  font-size: 12px;
  text-align: center;
  padding: 8px;
}



/* Review verdict box */
.review-verdict {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.verdict-lists {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.verdict-title {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.verdict-title--pros { color: #4caf50; }
.verdict-title--cons { color: var(--red-vivid); }

.verdict-pros ul,
.verdict-cons ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.verdict-pros li,
.verdict-cons li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

.verdict-pros li::before {
  content: '+';
  font-weight: 700;
  color: #4caf50;
  flex-shrink: 0;
  font-size: 16px;
  line-height: 1.3;
}

.verdict-cons li::before {
  content: '-';
  font-weight: 700;
  color: var(--red-vivid);
  flex-shrink: 0;
  font-size: 16px;
  line-height: 1.3;
}

.verdict-score {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--red);
  border-radius: var(--radius);
  padding: 20px;
}

.score-number {
  font-family: var(--font-head);
  font-size: 56px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.score-label {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-top: 6px;
  white-space: nowrap;
}

/* Comments section */
.comments-section {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 2px solid var(--border);
}

.comments-title {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}

.no-comments-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 24px;
  text-align: center;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
}

.no-comments-box a {
  color: var(--gold);
  font-weight: 600;
}

.no-comments-box a:hover { color: var(--gold-light); }

/* Sidebar related news */
.related-news-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.related-news-item {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.related-news-item:last-child { border-bottom: none; }

.related-news-img {
  width: 80px;
  height: 56px;
  object-fit: cover;
  border-radius: var(--radius);
  flex-shrink: 0;
  transition: opacity 0.2s;
}

.related-news-item:hover .related-news-img { opacity: 0.85; }

.related-news-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.related-news-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1.4;
  transition: color 0.2s;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.related-news-item:hover .related-news-title { color: var(--text); }

.related-news-meta {
  font-size: 12px;
  color: var(--text-dim);
}

.related-game-widget {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

/* Related game widget */
.related-game-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    font-size: 15px;
    font-weight: 600;
    color: var(--text-muted);
    transition: all 0.2s var(--ease);
}

.related-game-link:hover { color: var(--gold); }

.related-game-icon {
  width: 32px;
  height: 32px;
  background: var(--bg-3);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--text-dim);
}

/* Game score widget */
.game-score-widget {
  background: var(--red);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.game-score-label {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1.2;
}

.game-score-value {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

/* Rating widget (pros/cons) */
.rating-widget {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rating-score-card {
  background: var(--red);
  border-radius: var(--radius);
  padding: 22px 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.rating-score-label {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.rating-score-value {
  font-family: var(--font-head);
  font-size: 42px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.rating-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.rating-section + .rating-section {
  border-top: 1px solid var(--border);
  padding-top: 22px;
}

.rating-section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--text);
}

.rating-section-title--pros { color: #4caf50; }
.rating-section-title--cons { color: var(--red-vivid); }
 

.rating-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.rating-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}

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

.rating-list li::before {
  content: '';
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  margin-top: 1px;
  background-size: 12px 12px;
  background-repeat: no-repeat;
  background-position: center;
}

.rating-list--pros li::before {
  background-color: rgba(76, 175, 80, 0.15);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234caf50' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E");
}

.rating-list--cons li::before {
  background-color: rgba(168, 32, 24, 0.15);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a82018' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 6L6 18M6 6l12 12'/%3E%3C/svg%3E");
}

[data-theme="light"] .rating-list--pros li::before {
  background-color: rgba(76, 175, 80, 0.12);
}

[data-theme="light"] .rating-list--cons li::before {
  background-color: rgba(168, 32, 24, 0.12);
}

.blockheader {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
  margin-top: 12px;
}

/* Game content tabs */
.game-content-tabs {
  display: flex;
  gap: 10px;
  margin: 24px 0;
}

.search-content-tabs {
  display: flex;
  gap: 10px;
}

.game-content-tab, .search-content-tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: var(--radius);
  border: 0px solid var(--border);
  background: var(--bg-card);
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: all 0.2s var(--ease);
  text-align: center;
}

.game-content-tab:hover, .search-content-tab:hover {
  border-color: var(--red);
  color: var(--text);
  background: rgba(136,27,22,0.1);
}

.game-content-tab.active, .search-content-tab.active {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.gallery-block {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 10px 20px;
}

.gallery-block h3 {
  padding-bottom: 10px;
}

.gallery-block a {
  text-decoration: none;
}

.gallery-block .gallery-helper {
  font-size: 13px;
  color: var(--text);
  margin-top: 12px;
}

/* Gallery viewer card */
.gallery-viewer-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 16px;
  margin: 0 0 24px;
}

/* Gallery navigation */
.gallery-navigation {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 16px;
}

.gallery-nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1 1 0;
  min-width: 140px;
  padding: 12px 16px;
  border-radius: var(--radius);
  background: var(--bg-3);
  border: 1px solid var(--border);
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  transition: all 0.2s var(--ease);
  text-align: center;
  cursor: pointer;
}

.gallery-nav-btn:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.gallery-nav-btn.is-disabled {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}

.gallery-nav-btn svg {
  flex-shrink: 0;
  transition: transform 0.2s var(--ease);
}

.gallery-nav-btn:hover svg {
  transform: scale(1.1);
}

/* Gallery single-image viewer */
.gallery-image-viewer {
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-main-image {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
}

.gallery-image-caption {
  font-size: 13px;
  color: var(--text);
  margin-top: 8px;
}

/* Galleries grid */
.galleries-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 24px 0;
}

/* Gallery images grid */
.gallery-images {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 24px 0;
  padding: 16px;
  background: var(--bg-card);
  border-radius: var(--radius);
}

.image-thumbnail-holder {
  aspect-ratio: 16 / 10;
}

.image-thumbnail-wrapper {
  width: 100%;
  height: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-3);
  cursor: pointer;
}

.image-thumbnail-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.25s var(--ease);
}

.image-thumbnail-wrapper:hover img {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .gallery-images {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .article-body .thumbs {
    display: grid;
    grid-template-columns: auto auto auto;
    gap: 20px;  
  }
}

@media (max-width: 480px) {
  .gallery-images {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .article-body .thumbs {
    display: grid;
    grid-template-columns: auto auto;
    gap: 20px;  
  }
  
}

.gallery-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
}



.gallery-info {
  padding: 16px 16px 0;
 
}

.gallery-title {
  margin: 0;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text);
}

.gallery-count {
  display: inline;
  margin-left: 8px;
  font-size: 13px;
  font-weight: 400;
  color: var(--text-muted);
  white-space: nowrap;
}

.gallery-images-preview {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  padding: 12px;
  flex: 1;
  align-items: stretch;
}

.gallery-preview-thumb,
.gallery-preview-more {
  flex: 1 1 0;
  min-width: 0;
}

.gallery-preview-thumb {
  display: block;
  aspect-ratio: 16 / 10;
  border-radius: calc(var(--radius) - 4px);
  overflow: hidden;
  background: var(--bg-body);
}

.gallery-preview-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.2s var(--ease);
}

.gallery-preview-thumb:hover img {
  transform: scale(1.05);
}

.gallery-preview-more {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16 / 10;
  border-radius: calc(var(--radius) - 4px);
  background: rgba(136, 27, 22, 0.1);
  color: var(--red);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

.gallery-preview-more:hover {
  background: var(--red);
  color: var(--white);
}

@media (max-width: 768px) {
  .gallery-card {
    flex-direction: column;
  }

  .gallery-images-preview {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    flex-wrap: wrap;
  }

  .gallery-preview-thumb,
  .gallery-preview-more {
    flex: 0 0 auto;
    width: 100%;
    aspect-ratio: 16 / 10;
  }
}

.no-galleries {
  grid-column: 1 / -1;
  padding: 24px;
  text-align: center;
  color: var(--text-muted);
  background: var(--bg-card);
  border-radius: var(--radius);
}

/* Pagination */

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 24px 0;
    list-style: none;
    font-family: var(--font-head);
}

.pagination .page-item {
    display: flex;
}

.pagination a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    border-radius: var(--radius);
    background: var(--bg-card);
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-decoration: none;
    transition: all 0.2s var(--ease);
}

.pagination a:hover {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
}

.pagination .page-item.active a {
    background: var(--red);
    border-color: var(--red);
    color: var(--white); 
}

.pagination .page-item.disabled a {
    opacity: 0.4;
    pointer-events: none;
}

.pagination .first,
.pagination .last {
    padding: 0 16px;
}



.archive-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.archive-list li {
  border-bottom: 1px solid var(--border);
}

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

.archive-list a {
  display: block;
  padding: 9px 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text-muted);
  transition: color 0.2s;
}

.archive-list a:hover {
  color: var(--text);
}

.archive-older a {
  font-weight: 700;
}

/* ABC archívum */
.archive-abc-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
}

.archive-abc-list li {
  border-bottom: none;
}

.archive-abc-list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  padding: 0;
  border-radius: var(--radius);
  background: var(--bg-3);
  border: 1px solid var(--border);
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  transition: all 0.2s var(--ease);
}

.archive-abc-list a:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.archive-abc-list li.active a,
.archive-abc-list li.selected a {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

/* Archívum időpontválasztó card */
.archive-picker-card {
  margin-bottom: 20px;
  padding: 26px;
}

.archive-picker-title {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 18px;
  line-height: 1.2;
}

.archive-picker-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.archive-picker-row:last-child {
  margin-bottom: 0;
}

.archive-picker-label {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  min-width: 58px;
  padding-top: 6px;
  flex-shrink: 0;
}

.archive-picker-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  flex: 1;
}

.archive-picker-list li {
  border-bottom: none;
}

.archive-picker-list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  padding: 5px 9px;
  border-radius: var(--radius);
  background: var(--bg-3);
  border: 1px solid var(--border);
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  color: var(--red-vivid);
  transition: all 0.2s var(--ease);
  white-space: nowrap;
}

.archive-picker-list li.active a {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.archive-picker-list a:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

@media (max-width: 720px) {
  .archive-picker-row {
    flex-direction: column;
    gap: 10px;
  }

  .archive-picker-label {
    padding-top: 0;
  }
}

@media (max-width: 480px) {
  .archive-picker-title {
    font-size: 22px;
  }

  .archive-picker-list a {
    font-size: 14px;
    padding: 7px 10px;
    min-width: 46px;
  }
}



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

@media (max-width: 720px) {
  .article-lead { font-size: 16px; }
  .breadcrumb-current { max-width: 200px; }
  .verdict-score { min-width: 0; padding: 16px; }
}



/*** Profile Card ***/
.profil-holder {
    display: flex;
    flex-direction: row;
    align-items: start;
    padding: 20px;
    margin-bottom: 20px;
    gap: 20px;
      background: var(--bg-card);
    border-radius: var(--radius-lg);
}

.profil-holder .avatar {
    width: 100px;
    height: 100px;
    overflow: hidden;
    margin-bottom: 0;
    flex-shrink: 0;
}

.profil-holder .user-info {
    flex: 1;
}

.profil-holder .avatar img {
    width: 100px;
    height: 100px;
    border-radius: var(--radius);
    object-fit: cover;
    margin-bottom: 10px;
}



.related-news {
    margin-bottom: 20px;
}

.related-news a h3 {
    /* text-decoration: none; */
    transition: color 0.2s;
}

.related-news a:hover h3 {
    color: var(--gold);
}

.related-news h4 {
    padding: 0;
    margin: 0;
    /* font-size: 14pt; */
    /* padding: 0;
    margin: 0;
    margin-bottom: 10px;
    border-left: 10px solid var(--pcg-red);
    padding-left: 10px;   */
}

.related-news h3 {
    position: relative;
    font-size: 12pt;
    padding: 0;
    padding-left: 15px;
    padding-bottom: 5px;

}



.related-news h3::before {
    content: "";
    display: block;
    width: 5px;
    height: 10px;
    left: 0;
    margin-top: 8px;
    position: absolute;
    background-color: var(--red);
    clip-path: polygon(0 0, 0 100%, 100% 50%);

}


/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--bg-2);
  /* border-top: 1px solid var(--border); */
}

.footer-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 60px 24px 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  width: 200px;
  filter: brightness(0.85);
}

.footer-brand p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 0.2s var(--ease);
}

.footer-social a:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-nav-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav-col h4 {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 6px;
}

.footer-nav-col a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-nav-col a:hover { color: var(--text); }

.footer-bottom {
  max-width: 1160px;
  margin: 0 auto;
  padding: 20px 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--text-dim);
}

.footer-bottom a {
  color: var(--red-vivid);
  transition: color 0.2s;
}

.footer-bottom a:hover { color: var(--gold); }

/* =============================================
   RESPONSIVE
   ============================================= */

/* Tablet / Small Desktop */
@media (max-width: 1100px) {
  .content-wrapper {
    grid-template-columns: 1fr;
  }

  .sidebar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .section-nav { display: none; }
  .platform-nav { display: none; }

  .hamburger { display: flex; }
  .mobile-menu { display: block; }

  .slide-thumbs { display: none; }
}

/* Mobile */
@media (max-width: 720px) {
  .articles-grid > * {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .card-big {
    flex-direction: column;
  }

  .card-big > .card-img-wrap,
  .card-big > .card-body {
    flex: 1 1 auto;
    width: 100%;
  }

  .card-big .card-img-wrap {
    height: 200px;
  }

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

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-nav {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .hero-section {
    position: relative;
  }

  .slide-content {
    right: 0;
    padding: 24px;
  }

  .slide-title {
    font-size: 26px;
  }

  .slider-controls {
    bottom: 16px;
    right: 16px;
  }

  .header-inner {
    padding: 0 16px;
  }

  .hero-slider {
    position: relative;
    height: 280px;
    overflow: hidden;
  }

}

/* =============================================
   ACCESSIBILITY & UTILITIES
   ============================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .ticker-content { animation: none; }
  .slide-bg { transform: none !important; }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}


/*** third-party ***/

.instagram-media {
    margin: 0 auto !important;
    margin-bottom: 20px !important;
}

.twitter-tweet {
    margin: 0 auto !important;
    margin-bottom: 20px !important;
}

iframe[src*="youtube.com"] {
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
}