/* ── Header ─────────────────────────────────────────────── */
.site-header *,
.site-header *::before,
.site-header *::after { box-sizing: border-box; margin: 0; padding: 0; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 3px solid #c0392b;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.logo {
  text-decoration: none;
  display: flex;
  align-items: baseline;
  gap: 1px;
  flex-shrink: 0;
}
.logo-main {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: -0.3px;
}
.logo-accent { color: #c0392b; }
.logo-tld {
  font-size: 0.75rem;
  color: rgba(0,0,0,0.35);
  font-weight: 400;
}
.nav-desktop { flex: 1; }
.nav-desktop ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-desktop > ul > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  color: #333333;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav-desktop > ul > li > a:hover,
.nav-desktop > ul > li > a:focus {
  color: #c0392b;
  background: rgba(192,57,43,0.08);
}
.chevron {
  width: 10px;
  height: 6px;
  transition: transform 0.2s;
  flex-shrink: 0;
}
.has-dropdown { position: relative; }
.has-dropdown .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  padding-top: 10px;
  background: transparent;
  z-index: 200;
  list-style: none;
  min-width: 210px;
}
.dropdown::before {
  content: '';
  display: block;
  height: 10px;
}
.dropdown-inner {
  background: #ffffff;
  border: 1px solid rgba(192,57,43,0.3);
  border-radius: 10px;
  padding: 6px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}
.has-dropdown.is-open .dropdown { display: block; }
.has-dropdown.is-open .chevron { transform: rotate(180deg); }
.header-cta {
  display: inline-flex;
  align-items: center;
  padding: 9px 20px;
  background: #c0392b;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 8px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.1s;
}
.header-cta:hover { background: #a93226; transform: translateY(-1px); }
.header-cta:active { transform: translateY(0); }
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: transparent;
  border: none;
  cursor: pointer;
  margin-left: auto;
  border-radius: 6px;
  transition: background 0.2s;
}
.nav-toggle:hover { background: rgba(0,0,0,0.06); }
.hamburger-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: #333333;
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
  transform-origin: center;
}
.nav-toggle[aria-expanded="true"] .hamburger-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .hamburger-bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle[aria-expanded="true"] .hamburger-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-mobile {
  display: none;
  position: fixed;
  top: 67px;
  left: 0;
  right: 0;
  z-index: 999;
  background: #1a1a1a;
  border-bottom: 3px solid #c0392b;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.nav-mobile.is-open { display: block; }
.nav-mobile ul { list-style: none; margin: 0; padding: 8px 0; }
.nav-mobile ul li a {
  display: block;
  padding: 16px 24px;
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  border-left: 3px solid transparent;
}
.nav-mobile ul li a:hover,
.nav-mobile ul li a.nav-active {
  background: rgba(255,255,255,0.06);
  border-left-color: #c0392b;
}
.mob-cta-wrap {
  padding: 16px 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.mob-cta-btn {
  display: block;
  width: 100%;
  padding: 14px 20px;
  background: #c0392b;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 8px;
}
.mob-casino-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 6px;
  padding: 4px 20px 12px;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mob-casino-grid a {
  display: block;
  padding: 8px 6px;
  text-align: center;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 500;
  border-radius: 6px;
  background: rgba(255,255,255,0.05);
  transition: background 0.15s, color 0.15s;
}
.mob-casino-grid a:hover {
  background: rgba(192,57,43,0.2);
  color: #ffffff;
}
.nav-toggle[aria-expanded="true"] .hamburger-bar { background: #1a1a1a; }
.dropdown-grid-wrapper { list-style: none; }
.dropdown-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  min-width: 380px;
  padding: 8px;
}
.dropdown-grid a {
  display: block;
  padding: 8px 12px;
  color: #333333;
  text-decoration: none;
  font-size: 0.83rem;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.dropdown-grid a:hover { background: rgba(192,57,43,0.08); color: #c0392b; }
.dropdown-all-link {
  grid-column: 1 / -1;
  font-weight: 600 !important;
  color: #c0392b !important;
  border-top: 1px solid rgba(0,0,0,0.07);
  margin-top: 4px;
  padding-top: 10px !important;
}
.dropdown-all-link:hover { background: rgba(192,57,43,0.06) !important; }
.mobile-has-submenu .mobile-dropdown-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-has-submenu .mobile-dropdown-row > a { flex: 1; }
.mobile-dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 48px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: rgba(255,255,255,0.6);
  flex-shrink: 0;
  transition: color 0.2s;
}
.mobile-dropdown-toggle:hover { color: #ffffff; }
.mobile-dropdown-toggle svg { transition: transform 0.25s; }
.mobile-dropdown-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }
.mobile-submenu { list-style: none; background: rgba(0,0,0,0.25); overflow: hidden; }
.mobile-submenu li a {
  display: flex;
  align-items: center;
  padding: 11px 24px 11px 36px;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 400;
  transition: background 0.15s, color 0.15s;
  border-left: 3px solid transparent;
}
.mobile-submenu li a:hover {
  color: #ffffff;
  background: rgba(255,255,255,0.05);
  border-left-color: #c0392b;
}
.mobile-submenu-all {
  font-weight: 600 !important;
  color: rgba(192,57,43,0.9) !important;
  border-top: 1px solid rgba(255,255,255,0.07);
  margin-top: 2px;
  padding-top: 13px !important;
}
.mobile-submenu-all:hover { color: #c0392b !important; }
@media (max-width: 900px) {
  .nav-desktop { display: none; }
  .header-cta:not(.mobile-cta) { display: none; }
  .nav-toggle { display: flex; }
  .header-inner { gap: 12px; }
}
@media (max-width: 400px) {
  .logo-main { font-size: 0.95rem; }
  .header-inner { padding: 0 14px; }
}

/* ── Reset & Base ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  background: #f5f5f5;
  color: #1a1a1a;
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page-wrapper {
  flex: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 24px 80px;
  width: 100%;
}

/* ── Breadcrumb ─────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(0,0,0,0.4);
  margin-bottom: 28px;
}
.breadcrumb a { color: rgba(0,0,0,0.4); text-decoration: none; }
.breadcrumb a:hover { color: #c0392b; }
.breadcrumb-sep { color: rgba(0,0,0,0.2); }
.breadcrumb-current { color: rgba(0,0,0,0.65); }

/* ── Layout ─────────────────────────────────────────────── */
.review-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 28px;
  align-items: start;
}
.review-layout > * { min-width: 0; }

/* ── Hero card ──────────────────────────────────────────── */
.hero-card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
  margin-bottom: 24px;
}
.hero-screenshot {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #1a1a1a;
}
.hero-screenshot img {
  width: 100%;
  height: auto;
  display: block;
}
.hero-screenshot .mobile-img { display: none; }
.hero-card-body { padding: 28px 32px 32px; }
.casino-name-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}
.casino-name {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.2;
}
.rating-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #fff5f0;
  border: 1px solid rgba(192,57,43,0.2);
  border-radius: 10px;
  padding: 6px 14px;
  flex-shrink: 0;
}
.rating-stars { color: #c0392b; font-size: 0.9rem; letter-spacing: 1px; }
.rating-num { font-size: 1rem; font-weight: 700; color: #c0392b; }
.casino-tagline {
  font-size: 0.95rem;
  color: rgba(0,0,0,0.55);
  margin-bottom: 24px;
}
.license-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f0faf0;
  border: 1px solid rgba(39,174,96,0.25);
  border-radius: 8px;
  padding: 5px 12px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #1e8449;
}

/* ── Prose sections ─────────────────────────────────────── */
.section {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 20px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
}
.section h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid #f0f0f0;
}
.section p {
  font-size: 0.925rem;
  color: rgba(0,0,0,0.65);
  line-height: 1.75;
  margin-bottom: 12px;
}
.section p:last-child { margin-bottom: 0; }

/* ── Pros / Cons ────────────────────────────────────────── */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.pros, .cons {
  border-radius: 12px;
  padding: 20px;
}
.pros { background: #f6fef6; border: 1px solid rgba(39,174,96,0.2); }
.cons { background: #fff8f8; border: 1px solid rgba(192,57,43,0.15); }
.pros h3 { font-size: 0.85rem; font-weight: 700; color: #1e8449; margin-bottom: 12px; }
.cons h3 { font-size: 0.85rem; font-weight: 700; color: #c0392b; margin-bottom: 12px; }
.pros ul, .cons ul { list-style: none; }
.pros ul li, .cons ul li {
  font-size: 0.875rem;
  color: rgba(0,0,0,0.65);
  padding: 5px 0;
  display: flex;
  gap: 8px;
}
.pros ul li::before { content: "✓"; color: #1e8449; font-weight: 700; flex-shrink: 0; }
.cons ul li::before { content: "✗"; color: #c0392b; font-weight: 700; flex-shrink: 0; }

/* ── Bonus box ──────────────────────────────────────────── */
.bonus-box {
  background: linear-gradient(135deg, #fff0f0, #fff8f8);
  border: 1px solid rgba(192,57,43,0.2);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 20px;
}
.bonus-box h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #c0392b;
  margin-bottom: 4px;
}
.bonus-headline {
  font-size: 1.35rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
  line-height: 1.3;
}
.bonus-code {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1.5px dashed rgba(192,57,43,0.4);
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #c0392b;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.bonus-terms {
  font-size: 0.8rem;
  color: rgba(0,0,0,0.45);
  line-height: 1.5;
}

/* ── Bonus steps ────────────────────────────────────────── */
.bonus-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 20px 0;
}
.bonus-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  position: relative;
}
.bonus-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 19px;
  top: 40px;
  bottom: -12px;
  width: 2px;
  background: #f0f0f0;
}
.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #c0392b;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.step-num.green { background: #1e8449; }
.step-body {
  background: #fafafa;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 12px;
  padding: 14px 18px;
  flex: 1;
  margin-bottom: 12px;
}
.step-body strong {
  display: block;
  font-size: 0.9rem;
  color: #1a1a1a;
  margin-bottom: 4px;
}
.step-body span {
  font-size: 0.82rem;
  color: rgba(0,0,0,0.5);
  line-height: 1.5;
}
.step-result {
  display: inline-block;
  margin-top: 6px;
  background: #fff0f0;
  border: 1px solid rgba(192,57,43,0.2);
  border-radius: 6px;
  padding: 3px 10px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #c0392b;
}
.step-result.green {
  background: #f0faf0;
  border-color: rgba(39,174,96,0.2);
  color: #1e8449;
}

/* ── Bonus table ────────────────────────────────────────── */
@keyframes scroll-hint {
  0%   { transform: translateX(0);    opacity: 1; }
  40%  { transform: translateX(18px); opacity: 0.7; }
  60%  { transform: translateX(18px); opacity: 0.7; }
  100% { transform: translateX(0);    opacity: 1; }
}
.table-scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: 16px;
  scrollbar-width: thin;
  scrollbar-color: #c0392b rgba(0,0,0,0.08);
}
.table-scroll::-webkit-scrollbar {
  height: 6px;
}
.table-scroll::-webkit-scrollbar-track {
  background: rgba(0,0,0,0.06);
  border-radius: 99px;
}
.table-scroll::-webkit-scrollbar-thumb {
  background: #c0392b;
  border-radius: 99px;
  animation: scroll-hint 1.8s ease-in-out 0.6s 3;
}
.table-scroll::-webkit-scrollbar-thumb:hover {
  background: #a93226;
}
.bonus-table {
  width: max-content;
  min-width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}
.bonus-table th {
  text-align: left;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(0,0,0,0.4);
  padding: 8px 12px;
  border-bottom: 2px solid #f0f0f0;
  white-space: nowrap;
}
.bonus-table td {
  padding: 10px 12px;
  color: rgba(0,0,0,0.65);
  border-bottom: 1px solid #f5f5f5;
  white-space: nowrap;
}
.bonus-table tr:last-child td { border-bottom: none; }
.bonus-table tr:nth-child(even) td { background: #fafafa; }

/* ── Payment pills ──────────────────────────────────────── */
.payment-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}
.payment-pill {
  background: #f5f5f5;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 8px;
  padding: 6px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(0,0,0,0.6);
}

/* ── Provider tags ──────────────────────────────────────── */
.provider-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.provider-tag {
  background: #f5f5f5;
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 0.8rem;
  color: rgba(0,0,0,0.55);
}

/* ── Sport tags ─────────────────────────────────────────── */
.sports-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.sport-tag {
  background: #eef4ff;
  border: 1px solid rgba(37,99,235,0.12);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 0.8rem;
  color: rgba(0,0,0,0.6);
}

/* ── Sidebar ────────────────────────────────────────────── */
.sidebar { position: sticky; top: 80px; }

.cta-box {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
  margin-bottom: 20px;
  text-align: center;
}
.cta-box h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 6px;
}
.cta-box .cta-bonus {
  font-size: 1.1rem;
  font-weight: 700;
  color: #c0392b;
  margin-bottom: 4px;
}
.cta-box .cta-sub {
  font-size: 0.8rem;
  color: rgba(0,0,0,0.45);
  margin-bottom: 20px;
}
.cta-btn {
  display: block;
  padding: 14px 20px;
  background: #c0392b;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 10px;
  transition: background 0.2s;
  margin-bottom: 10px;
}
.cta-btn:hover { background: #a93226; }
.cta-disclaimer {
  font-size: 0.72rem;
  color: rgba(0,0,0,0.3);
  line-height: 1.5;
}

.info-box {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
}
.info-box h3 {
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(0,0,0,0.4);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 16px;
}
.info-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
  padding: 10px 0;
  border-bottom: 1px solid #f5f5f5;
  font-size: 0.85rem;
}
.info-row:last-child { border-bottom: none; }
.info-row-label { color: rgba(0,0,0,0.45); flex-shrink: 0; }
.info-row-value { font-weight: 600; color: #1a1a1a; text-align: right; }
.info-row-value.green { color: #1e8449; }

/* ── Mobile CTA ─────────────────────────────────────────── */
.page-cta-box {
  display: none;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
  margin-bottom: 20px;
  text-align: center;
}
.page-cta-box h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 6px;
}
.page-cta-box .cta-bonus {
  font-size: 1.1rem;
  font-weight: 700;
  color: #c0392b;
  margin-bottom: 4px;
}
.page-cta-box .cta-sub {
  font-size: 0.8rem;
  color: rgba(0,0,0,0.45);
  margin-bottom: 20px;
}

/* ── Author meta (hero card) ────────────────────────────── */
.author-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid #f0f0f0;
}
.author-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.author-meta-text {
  font-size: 0.8rem;
  color: rgba(0,0,0,0.45);
  line-height: 1.4;
}
.author-meta-text a {
  color: rgba(0,0,0,0.55);
  font-weight: 600;
  text-decoration: none;
}
.author-meta-text a:hover { color: #c0392b; }

/* ── Mobile fakti ───────────────────────────────────────── */
.mobile-facts {
  display: none;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  padding: 20px 24px 8px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
  margin-bottom: 16px;
}
.mobile-facts h3 {
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(0,0,0,0.4);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 4px;
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .review-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .pros-cons { grid-template-columns: 1fr; }
  .page-cta-box { display: block; }
  .mobile-facts { display: block; }
  .sidebar .cta-box { display: none; }
  .sidebar .info-box { display: none; }
}
@media (max-width: 600px) {
  .page-wrapper { padding: 16px 16px 64px; }
  .hero-card-body { padding: 20px; }
  .section { padding: 22px 18px; }
  .hero-screenshot .desktop-img { display: none; }
  .hero-screenshot .mobile-img { display: block; }
  .casino-name { font-size: 1.4rem; }
}

/* ── Author Box ─────────────────────────────────────────── */
.author-box {
  display: flex;
  gap: 0;
  align-items: stretch;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  margin-top: 32px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
  overflow: hidden;
}
.author-box-photo {
  width: 120px;
  flex-shrink: 0;
}
.author-box-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}
.author-box-body {
  flex: 1;
  padding: 28px 30px;
}
.author-box-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(0,0,0,0.35);
  margin-bottom: 4px;
}
.author-box-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 2px;
}
.author-box-title {
  font-size: 0.82rem;
  color: #c0392b;
  font-weight: 600;
  margin-bottom: 12px;
}
.author-box-bio {
  font-size: 0.875rem;
  color: rgba(0,0,0,0.6);
  line-height: 1.7;
  margin: 0;
}
@media (max-width: 600px) {
  .author-box { flex-direction: column; }
  .author-box-photo { width: 100%; height: 220px; }
  .author-box-body { padding: 20px; }
}

/* ── Logo marquee ticker ─────────────────────────────────── */
.logo-ticker {
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  overflow: hidden;
  width: 100%;
  position: relative;
}
.logo-ticker::before, .logo-ticker::after {
  content: ''; position: absolute; top: 0;
  width: 80px; height: 100%; z-index: 2; pointer-events: none;
}
.logo-ticker::before { left: 0; background: linear-gradient(to right, #fff, transparent); }
.logo-ticker::after  { right: 0; background: linear-gradient(to left, #fff, transparent); }
.logo-ticker-track {
  display: flex; align-items: center; width: max-content;
  animation: ticker-scroll 30s linear infinite;
}
.logo-ticker:hover .logo-ticker-track { animation-play-state: paused; }
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker-logo {
  display: flex; align-items: center; justify-content: center;
  padding: 14px 28px;
  border-right: 1px solid rgba(0,0,0,0.06);
  flex-shrink: 0; text-decoration: none;
  transition: background 0.15s;
}
.ticker-logo:hover { background: #f5f5f5; }
.ticker-logo img {
  height: 32px; width: auto; display: block;
  filter: grayscale(100%) opacity(0.6);
  transition: filter 0.2s, transform 0.2s;
}
.ticker-logo:hover img { filter: grayscale(0%) opacity(1); transform: scale(1.05); }
