/* Fresh homepage design — ssolski-muzej.si */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --fresh-navy: #0f2744;
  --fresh-teal: #0d9488;
  --fresh-gold: #f59e0b;
  --fresh-surface: #f8fafc;
  --fresh-card: #ffffff;
  --fresh-border: rgba(15, 39, 68, 0.08);
  --fresh-shadow: 0 0.4rem 2rem rgba(15, 39, 68, 0.08);
  --fresh-radius: 1.2rem;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--fresh-surface);
  color: #334155;
}

/* ── Intro hero ── */
.intro-home {
  position: relative;
  overflow: hidden;
  padding: 3.5rem 0 2.5rem !important;
  color: #fff;
  text-align: left;
  background-color: var(--fresh-navy) !important;
  background-image: linear-gradient(135deg, var(--fresh-navy) 0%, #1a3a5c 45%, #0d9488 100%) !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}

.intro-home::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(245, 158, 11, 0.15) 0%, transparent 45%),
    radial-gradient(circle at 10% 80%, rgba(13, 148, 136, 0.2) 0%, transparent 40%);
  pointer-events: none;
}

.intro-home .container {
  position: relative;
  z-index: 1;
}

.intro-home__layout,
.intro-home__layout--solo {
  display: grid;
  gap: 2rem;
  align-items: center;
  width: 100%;
  max-width: none;
}

.intro-home__content {
  width: 100%;
  max-width: none;
}

@media (min-width: 992px) {
  .intro-home__layout {
    grid-template-columns: 1fr minmax(18rem, 34%);
    gap: 3rem;
  }

  .intro-home__layout--solo {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: none;
    margin: 0;
  }
}

.intro-home__title {
  color: #fff !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em;
  line-height: 1.15 !important;
  text-align: left;
}

.intro-home__text {
  color: rgba(255, 255, 255, 0.88) !important;
  font-size: 1.45rem !important;
  line-height: 1.65 !important;
  text-align: left;
  max-width: none;
}

.intro-home__hero-img {
  display: block;
  width: 100%;
  max-width: 42rem;
  margin: 0 auto;
  border-radius: var(--fresh-radius);
  box-shadow: 0 1.2rem 3rem rgba(0, 0, 0, 0.25);
}

.intro-home__list a {
  background: rgba(255, 255, 255, 0.12) !important;
  border: 0.1rem solid rgba(255, 255, 255, 0.18) !important;
  border-radius: 0.8rem !important;
  color: #fff !important;
  backdrop-filter: blur(8px);
  transition: background 0.2s, transform 0.2s, border-color 0.2s;
}

.intro-home__list li {
  flex: 0 1 auto;
}

.intro-home__list a:hover,
.intro-home__list a:focus {
  background: rgba(255, 255, 255, 0.22) !important;
  border-color: rgba(255, 255, 255, 0.35) !important;
  transform: translateY(-0.15rem);
}

.intro-home__list svg {
  fill: var(--fresh-gold) !important;
}

.intro-home__list svg path,
.intro-home__list svg g {
  stroke: var(--fresh-gold) !important;
}

@media (max-width: 991px) {
  .intro-home__list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: flex-start;
  }

  .intro-home__list li {
    flex: 1 1 calc(50% - 0.5rem);
    min-width: 0;
  }

  .intro-home__list a {
    font-size: 1.05rem !important;
    padding: 0.7rem 0.4rem !important;
  }
}

/* ── Content area ── */
.content {
  background: var(--fresh-surface);
}

.content .container > .heading {
  position: relative;
  margin-top: 3.5rem;
  margin-bottom: 1.2rem;
  padding-bottom: 0.8rem;
  color: var(--fresh-navy) !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em;
}

.content .container > .heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 4.5rem;
  height: 0.35rem;
  border-radius: 0.2rem;
  background: linear-gradient(90deg, #e51a38, var(--fresh-gold));
}

.content .container > .heading:first-of-type {
  margin-top: 0;
}

.content .container > h3.heading {
  color: #1e293b !important;
  font-weight: 700 !important;
}

/* ── Criteria cards (Merila) ── */
.criteria-section {
  margin: 3rem 0;
}

.criteria-section > .heading {
  margin-top: 0 !important;
}

.criteria-section__intro {
  margin: 0 0 2rem;
  color: #475569;
  font-size: 1.45rem;
  line-height: 1.7;
}

.criteria-grid {
  display: grid;
  gap: 1rem;
  counter-reset: criteria-chip;
}

@media (min-width: 768px) {
  .criteria-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
  }
}

.criteria-card {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  padding: 1.4rem 1.5rem;
  background: var(--fresh-card);
  border: 0.1rem solid var(--fresh-border);
  border-radius: var(--fresh-radius);
  box-shadow: var(--fresh-shadow);
  counter-increment: criteria-chip;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.criteria-card:hover {
  transform: translateY(-0.15rem);
  border-color: rgba(13, 148, 136, 0.22);
  box-shadow: 0 0.6rem 2rem rgba(15, 39, 68, 0.1);
}

.criteria-card__icon {
  position: relative;
  flex-shrink: 0;
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--fresh-navy) 0%, #1a3a5c 45%, var(--fresh-teal) 100%);
  box-shadow:
    0 0.25rem 0.9rem rgba(15, 39, 68, 0.22),
    inset 0 0.15rem 0 rgba(255, 255, 255, 0.12);
}

.criteria-card__icon::before {
  content: '';
  position: absolute;
  inset: 0.5rem;
  border: 0.2rem solid var(--fresh-gold);
  border-radius: 50%;
  box-shadow: inset 0 0 0 0.12rem rgba(255, 255, 255, 0.18);
}

.criteria-card__icon::after {
  content: counter(criteria-chip);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1;
  text-shadow: 0 0.1rem 0.25rem rgba(0, 0, 0, 0.25);
}

.criteria-card__body {
  min-width: 0;
}

.criteria-card__title {
  margin: 0 0 0.6rem;
  padding: 0;
  color: var(--fresh-navy) !important;
  font-size: 1.65rem;
  font-weight: 700;
  line-height: 1.3;
}

.criteria-card__title::after {
  display: none;
}

.criteria-card__body p {
  margin: 0;
  color: #475569;
  font-size: 1.42rem;
  line-height: 1.65;
}

@media (max-width: 767px) {
  .criteria-card {
    padding: 1.2rem 1.25rem;
  }

  .criteria-card__icon {
    width: 4.2rem;
    height: 4.2rem;
  }

  .criteria-card__icon::after {
    font-size: 1.2rem;
  }

  .criteria-card__title {
    font-size: 1.5rem;
  }
}

.games-detail-grid {
  margin: 2rem 0 3rem;
}

/* ── Games guide (grouped panels) ── */
.games-guide {
  display: grid;
  gap: 1.5rem;
  margin: 2rem 0 3rem;
}

@media (min-width: 992px) {
  .games-guide {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
    gap: 1.25rem;
  }
}

.games-panel {
  overflow: hidden;
  background: var(--fresh-card);
  border: 0.1rem solid var(--fresh-border);
  border-radius: var(--fresh-radius);
  box-shadow: var(--fresh-shadow);
}

.games-panel__head {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.35rem;
  color: #fff;
  background: linear-gradient(135deg, var(--fresh-navy) 0%, var(--fresh-teal) 100%);
}

.games-panel--slots .games-panel__head {
  background: linear-gradient(135deg, #0f2744 0%, #1a5f7a 100%);
}

.games-panel--table .games-panel__head {
  background: linear-gradient(135deg, #1a3a5c 0%, #0d9488 100%);
}

.games-panel--live .games-panel__head {
  background: linear-gradient(135deg, #0f2744 0%, #7c2d12 55%, #c41230 100%);
}

.games-panel__icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 4.2rem;
  height: 4.2rem;
  background: rgba(255, 255, 255, 0.12);
  border: 0.15rem solid rgba(245, 158, 11, 0.55);
  border-radius: 50%;
}

.games-panel__icon svg {
  display: block;
  fill: #fff;
}

.games-panel__icon svg [fill="#484040"],
.games-panel__icon svg [stroke="#484040"] {
  fill: #fff;
  stroke: #fff;
}

.games-panel__title {
  margin: 0;
  padding: 0;
  color: #fff !important;
  font-size: 1.65rem;
  font-weight: 700;
  line-height: 1.25;
}

.games-panel__title::after {
  display: none;
}

.games-panel__lead {
  margin: 0;
  padding: 1.15rem 1.35rem;
  color: #334155;
  font-size: 1.42rem;
  line-height: 1.65;
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
  border-bottom: 0.1rem solid var(--fresh-border);
}

.games-panel__items {
  display: grid;
  gap: 0;
}

.games-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.1rem 1.25rem;
  border-bottom: 0.1rem solid var(--fresh-border);
}

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

.games-item__chip {
  position: relative;
  flex-shrink: 0;
  width: 2.6rem;
  height: 2.6rem;
  margin-top: 0.15rem;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--fresh-navy) 0%, var(--fresh-teal) 100%);
  box-shadow: 0 0.15rem 0.5rem rgba(15, 39, 68, 0.18);
}

.games-item__chip::before {
  content: '';
  position: absolute;
  inset: 0.32rem;
  border: 0.14rem solid var(--fresh-gold);
  border-radius: 50%;
}

.games-panel--slots .games-item__chip {
  background: linear-gradient(145deg, #0f2744 0%, #2563eb 100%);
}

.games-panel--table .games-item__chip {
  background: linear-gradient(145deg, #0f2744 0%, #0d9488 100%);
}

.games-panel--live .games-item__chip {
  background: linear-gradient(145deg, #7c2d12 0%, #c41230 100%);
}

.games-item__body {
  min-width: 0;
}

.games-item__title {
  margin: 0 0 0.35rem;
  color: var(--fresh-navy);
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.3;
}

.games-item__body p {
  margin: 0;
  color: #64748b;
  font-size: 1.38rem;
  line-height: 1.6;
}

@media (max-width: 991px) {
  .games-panel__head {
    padding: 1rem 1.15rem;
  }

  .games-panel__lead {
    padding: 1rem 1.15rem;
  }

  .games-item {
    padding: 1rem 1.15rem;
  }
}

/* ── Top widget section ── */
.section-top-list {
  margin-bottom: 1rem;
  padding: 2rem;
  background: var(--fresh-card);
  border: 0.1rem solid var(--fresh-border);
  border-radius: var(--fresh-radius);
  box-shadow: var(--fresh-shadow);
}

.section-top-list .heading {
  margin-top: 0 !important;
}

.section-top-list iframe {
  border-radius: 0.8rem;
  background: #fff;
}

/* ── Comparison table ── */
.section-compare {
  margin: 3rem 0;
  padding: 2rem;
  background: var(--fresh-card);
  border: 0.1rem solid var(--fresh-border);
  border-radius: var(--fresh-radius);
  box-shadow: var(--fresh-shadow);
}

.section-compare__header {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .section-compare__header {
    grid-template-columns: 1fr auto;
  }
}

.section-compare__intro {
  margin: 0;
  color: #64748b;
  font-size: 1.35rem;
  line-height: 1.6;
}

.section-compare__illustration {
  display: none;
  width: 10rem;
  height: auto;
  border-radius: 0.8rem;
}

@media (min-width: 768px) {
  .section-compare__illustration {
    display: block;
  }
}

.compare-table-wrap {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  margin: 0 -2rem;
  padding: 0 2rem 0.5rem;
  scrollbar-width: thin;
}

.compare-table {
  width: 100%;
  min-width: 72rem;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 1.25rem;
}

.compare-table thead th {
  position: sticky;
  top: 0;
  z-index: 2;
  padding: 1rem 1.1rem;
  color: #fff;
  font-weight: 700;
  text-align: left;
  white-space: nowrap;
  background: linear-gradient(135deg, var(--fresh-navy), #1a3a5c);
  border-bottom: 0.2rem solid #e51a38;
}

.compare-table thead th:first-child {
  border-radius: 0.8rem 0 0 0;
}

.compare-table thead th:last-child {
  border-radius: 0 0.8rem 0 0;
}

.compare-table tbody tr {
  transition: background 0.15s;
}

.compare-table tbody tr:nth-child(even) {
  background: #f1f5f9;
}

.compare-table tbody tr:hover {
  background: #e0f2fe;
}

.compare-table td {
  padding: 0.95rem 1.1rem;
  vertical-align: middle;
  border-bottom: 0.1rem solid var(--fresh-border);
  line-height: 1.45;
}

.compare-table td:first-child {
  font-weight: 700;
  color: var(--fresh-navy);
  white-space: nowrap;
}

.compare-table .rating-badge {
  display: inline-block;
  padding: 0.25rem 0.65rem;
  color: #065f46;
  font-weight: 700;
  font-size: 1.15rem;
  background: #d1fae5;
  border-radius: 2rem;
}

.compare-table .rating-badge--high {
  color: #92400e;
  background: #fef3c7;
}

.compare-table .sports-yes {
  color: #059669;
  font-weight: 600;
}

.compare-table .sports-no {
  color: #94a3b8;
}

/* ── Content blocks ── */
.content .container > p {
  color: #475569;
  line-height: 1.7;
}

.content .table {
  border-radius: 0.8rem;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  box-shadow: var(--fresh-shadow);
  scrollbar-width: thin;
}

.content .table table {
  border-radius: 0.8rem;
}

.mini-review__table.table table {
  min-width: 36rem;
}

.faq {
  margin-top: 3rem;
  padding: 2rem;
  background: var(--fresh-card);
  border: 0.1rem solid var(--fresh-border);
  border-radius: var(--fresh-radius);
  box-shadow: var(--fresh-shadow);
}

.faq .heading {
  color: var(--fresh-navy) !important;
}

.steps-list {
  list-style: none;
  counter-reset: steps;
  margin: 0 0 2.5rem;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.steps-list li {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  margin: 0;
  padding: 1.15rem 1.35rem 1.15rem 1.15rem;
  color: #334155;
  font-size: 1.45rem;
  line-height: 1.6;
  background: var(--fresh-card);
  border: 0.1rem solid var(--fresh-border);
  border-radius: var(--fresh-radius);
  box-shadow: var(--fresh-shadow);
  counter-increment: steps;
}

.steps-list li::before {
  content: counter(steps);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.4rem;
  height: 3.4rem;
  margin-top: 0.05rem;
  color: #fff;
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, var(--fresh-navy) 0%, var(--fresh-teal) 100%);
  border-radius: 50%;
  box-shadow: 0 0.2rem 0.8rem rgba(15, 39, 68, 0.18);
}

.steps-list li:last-child {
  border-color: rgba(229, 26, 56, 0.18);
  background: linear-gradient(135deg, #fff 0%, #fff8f9 100%);
}

.steps-list li:last-child::before {
  background: linear-gradient(135deg, #e51a38 0%, #c41230 100%);
}

@media (min-width: 768px) {
  .steps-list {
    gap: 1rem;
  }

  .steps-list li {
    padding: 1.25rem 1.5rem 1.25rem 1.25rem;
    font-size: 1.5rem;
  }
}

.games-list li,
.tips-list li {
  color: #475569;
}

.content-illustration {
  display: block;
  width: 100%;
  max-width: 56rem;
  margin: 2rem auto;
  border-radius: var(--fresh-radius);
  box-shadow: var(--fresh-shadow);
}

/* ── Author card ── */
.author-card {
  display: flex;
  gap: 1.35rem;
  align-items: flex-start;
  margin: 3rem 0;
  padding: 1.5rem 1.6rem;
  background: var(--fresh-card);
  border: 0.1rem solid var(--fresh-border);
  border-radius: var(--fresh-radius);
  box-shadow: var(--fresh-shadow);
}

.author-card__photo {
  flex-shrink: 0;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  object-fit: cover;
  border: 0.25rem solid rgba(245, 158, 11, 0.35);
  box-shadow: 0 0.25rem 1rem rgba(15, 39, 68, 0.12);
}

.author-card__body {
  min-width: 0;
}

.author-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  align-items: center;
  margin: 0 0 0.55rem;
  color: #64748b;
  font-size: 1.3rem;
  line-height: 1.4;
}

.author-card__meta time {
  color: var(--fresh-teal);
  font-weight: 600;
}

.author-card__meta-sep {
  color: #cbd5e1;
}

.author-card__name {
  margin: 0 0 0.35rem;
  padding: 0;
  color: var(--fresh-navy) !important;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.2;
}

.author-card__name::after {
  display: none;
}

.author-card__role {
  margin: 0 0 0.85rem;
  color: #64748b;
  font-size: 1.42rem;
  line-height: 1.45;
}

.author-card__bio {
  margin: 0 0 1rem;
  color: #475569;
  font-size: 1.42rem;
  line-height: 1.65;
}

.author-card__link {
  display: inline-flex;
  align-items: center;
  color: var(--fresh-teal);
  font-size: 1.38rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}

.author-card__link:hover {
  color: var(--fresh-navy);
  text-decoration: underline;
}

@media (max-width: 767px) {
  .author-card {
    flex-direction: column;
    align-items: center;
    padding: 1.35rem 1.25rem;
    text-align: center;
  }

  .author-card__photo {
    width: 9rem;
    height: 9rem;
  }

  .author-card__meta {
    justify-content: center;
  }

  .author-card__name {
    font-size: 1.75rem;
  }
}

@media (min-width: 992px) {
  .intro-home {
    background-color: var(--fresh-navy) !important;
    background-image: linear-gradient(135deg, var(--fresh-navy) 0%, #1a3a5c 45%, #0d9488 100%) !important;
  }
}

@media (min-width: 768px) {
  .intro-home {
    background-color: var(--fresh-navy) !important;
    background-image: linear-gradient(135deg, var(--fresh-navy) 0%, #1a3a5c 45%, #0d9488 100%) !important;
  }
}

@media (min-width: 1200px) {
  .intro-home {
    background-color: var(--fresh-navy) !important;
    background-image: linear-gradient(135deg, var(--fresh-navy) 0%, #1a3a5c 45%, #0d9488 100%) !important;
  }
}

/* ── Casino review visual block (esal.si style) ── */
.mini-review {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.2rem 2.4rem;
  align-items: start;
  margin: 2.5rem 0;
  padding: 2.2rem 2.4rem;
  background: var(--fresh-card);
  border: 0.1rem solid var(--fresh-border);
  border-radius: var(--fresh-radius);
  box-shadow: var(--fresh-shadow);
}

.mini-review__logo-text {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 12rem;
  min-height: 5.6rem;
  padding: 0.8rem 1rem;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #1a1a2e, #2d1b69);
  border-radius: 0.8rem;
}

.mini-review__logo-text span {
  color: #e51a38;
}

.mini-review--pistolo .mini-review__logo-text {
  background: linear-gradient(135deg, #0f1f4d, #1a3a8a);
  color: #ffd100;
  font-size: 1.55rem;
  letter-spacing: 0.06em;
}

.mini-review--pistolo .mini-review__logo-text span {
  color: #e51a38;
}

.mini-review--kinbet .mini-review__logo-text {
  background: linear-gradient(135deg, #0a0a0a, #1a3320);
  color: #ffd100;
  font-size: 1.55rem;
  letter-spacing: 0.06em;
}

.mini-review--kinbet .mini-review__logo-text span {
  color: #ffd100;
}

.mini-review--slotsgem .mini-review__logo-text {
  background: linear-gradient(135deg, #1a0f2e, #2d1b69);
  color: #fff;
  font-size: 1.35rem;
  letter-spacing: 0.04em;
}

.mini-review--slotsgem .mini-review__logo-text span {
  color: #22c55e;
}

.mini-review--bassbet .mini-review__logo-text {
  background: linear-gradient(135deg, #0a1f3d, #1a4a7a);
  color: #fff;
  font-size: 1.45rem;
  font-style: italic;
  letter-spacing: 0.03em;
}

.mini-review--bassbet .mini-review__logo-text span {
  font-style: normal;
  color: #38bdf8;
}

.mini-review__head {
  grid-column: 2;
  min-width: 0;
}

.mini-review__title {
  margin: 0 0 0.4rem;
  padding: 0;
  color: var(--fresh-navy) !important;
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.25;
}

.mini-review__title::after {
  display: none;
}

.mini-review__meta {
  margin: 0 0 1rem;
  color: #e51a38;
  font-size: 1.45rem;
  font-weight: 600;
  line-height: 1.5;
}

.mini-review__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin: 0 0 1.2rem;
  grid-column: 1 / -1;
  padding: 1rem 1.2rem;
  background: #f8fafc;
  border: 0.1rem solid var(--fresh-border);
  border-radius: 1rem;
}

.mini-review__fact {
  margin: 0;
  min-width: 0;
}

.mini-review__fact-label {
  display: block;
  margin: 0 0 0.25rem;
  color: #94a3b8;
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.mini-review__fact-value {
  display: block;
  margin: 0;
  color: var(--fresh-navy);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.35;
}

.mini-review__intro,
.mini-review__text {
  grid-column: 1 / -1;
  margin: 0 0 1rem;
  color: #475569;
  font-size: 1.45rem;
  line-height: 1.7;
}

.mini-review__table {
  grid-column: 1 / -1;
  margin: 0 0 1rem;
  min-width: 0;
  width: 100%;
}

.mini-review__shots {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin: 1.6rem 0 0;
  grid-column: 1 / -1;
}

.mini-review__shot {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0.1rem solid #ebebeb;
  border-radius: 0.8rem;
  overflow: hidden;
  cursor: pointer;
  background: #1a1a1a;
  aspect-ratio: 9 / 16;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.mini-review__shot:hover,
.mini-review__shot:focus-visible {
  transform: translateY(-0.2rem);
  box-shadow: 0 0.6rem 1.6rem rgba(0, 0, 0, 0.14);
  border-color: #d8d8d8;
}

.mini-review__shot:focus-visible {
  outline: 0.2rem solid #e51a38;
  outline-offset: 0.2rem;
}

.mini-review__shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.mini-review__shot picture {
  display: block;
  width: 100%;
  height: 100%;
}

.mini-review__shot-zoom {
  position: absolute;
  right: 0.6rem;
  bottom: 0.6rem;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.mini-review__shot-zoom svg {
  width: 1.4rem;
  height: 1.4rem;
}

.mini-review__shots-label {
  grid-column: 1 / -1;
  margin: 1.2rem 0 0;
  color: #64748b;
  font-size: 1.3rem;
  font-weight: 600;
}

/* ── Screenshot lightbox ── */
.shot-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.6rem;
  background: rgba(0, 0, 0, 0.9);
}

.shot-lightbox.is-open {
  display: flex;
}

.shot-lightbox__backdrop {
  position: absolute;
  inset: 0;
  cursor: pointer;
}

.shot-lightbox__dialog {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: min(120rem, 96vw);
  max-height: 92vh;
  width: 100%;
}

.shot-lightbox__img {
  max-width: 100%;
  max-height: calc(92vh - 4rem);
  width: auto;
  height: auto;
  border-radius: 0.8rem;
  box-shadow: 0 1rem 4rem rgba(0, 0, 0, 0.45);
}

.shot-lightbox__caption {
  margin: 1rem 0 0;
  color: #f0f0f0;
  font-size: 1.5rem;
  line-height: 1.4;
  text-align: center;
}

.shot-lightbox__close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  z-index: 2;
  width: 4rem;
  height: 4rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 2.8rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s;
}

.shot-lightbox__close:hover,
.shot-lightbox__close:focus-visible {
  background: rgba(255, 255, 255, 0.22);
}

.shot-lightbox__close:focus-visible {
  outline: 0.2rem solid #fff;
  outline-offset: 0.2rem;
}

.shot-lightbox__nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 4.4rem;
  height: 4.4rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 0.2s;
}

.shot-lightbox__nav:hover,
.shot-lightbox__nav:focus-visible {
  background: rgba(255, 255, 255, 0.22);
}

.shot-lightbox__nav:focus-visible {
  outline: 0.2rem solid #fff;
  outline-offset: 0.2rem;
}

.shot-lightbox__nav--prev {
  left: 1.2rem;
}

.shot-lightbox__nav--next {
  right: 1.2rem;
}

.shot-lightbox__nav svg {
  width: 2rem;
  height: 2rem;
}

body.shot-lightbox-open {
  overflow: hidden;
}

@media (max-width: 767px) {
  .compare-table-wrap {
    margin-left: -1.6rem;
    margin-right: -1.6rem;
    padding-left: 1.6rem;
    padding-right: 1.6rem;
  }

  .mini-review {
    grid-template-columns: 1fr;
    padding: 1.6rem;
  }

  .mini-review__logo-text {
    width: 100%;
    max-width: 14rem;
  }

  .mini-review__head {
    grid-column: 1;
  }

  .mini-review__facts {
    grid-template-columns: 1fr;
  }

  .mini-review__shots {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }

  .shot-lightbox {
    padding: 1rem;
  }

  .shot-lightbox__nav {
    width: 3.6rem;
    height: 3.6rem;
  }

  .shot-lightbox__nav--prev {
    left: 0.4rem;
  }

  .shot-lightbox__nav--next {
    right: 0.4rem;
  }
}
