
:root {
  --bg:#070714;
  --bg2:#11092a;
  --panel:#15122a;
  --panel2:#21173f;
  --text:#f8f7ff;
  --muted:#c8c1df;
  --soft:#f2edff;
  --gold:#ffc94a;
  --gold2:#ff8f2f;
  --pink:#ff3f91;
  --green:#35e6a4;
  --blue:#70d7ff;
  --danger:#ff6b6b;
  --line:rgba(255,255,255,.13);
  --shadow:0 22px 70px rgba(0,0,0,.38);
  --radius:24px;
  --max:1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  overflow-x: hidden;
}

body {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 0;
  overflow-x: hidden;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  line-height: 1.65;
  background:
    radial-gradient(circle at 12% -10%, rgba(255,63,145,.38), transparent 30%),
    radial-gradient(circle at 88% 0%, rgba(255,201,74,.32), transparent 26%),
    radial-gradient(circle at 50% 40%, rgba(112,215,255,.16), transparent 34%),
    linear-gradient(135deg,#060512 0%,#120a2b 45%,#070714 100%);
}

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

img,
svg,
video,
iframe {
  display: block;
  max-width: 100%;
  height: auto;
}

p,
li,
td,
th,
a,
span,
strong,
b,
h1,
h2,
h3,
summary {
  overflow-wrap: anywhere;
  word-break: normal;
}

.container {
  width: min(var(--max), calc(100% - 32px));
  margin-inline: auto;
  min-width: 0;
}

.skip {
  position: absolute;
  left: -999px;
  top: auto;
}

.skip:focus {
  left: 16px;
  top: 16px;
  z-index: 999;
  background: #fff;
  color: #000;
  padding: 10px 14px;
  border-radius: 10px;
}

/* Header */
.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(7,7,20,.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-width: 0;
  padding: 12px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-weight: 1000;
  letter-spacing: .2px;
}

.brand-mark {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg,var(--gold),var(--pink));
  box-shadow: 0 10px 30px rgba(255,63,145,.25);
}

.navlinks {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
  color: var(--muted);
  font-size: 14px;
}

.navlinks a:hover {
  color: #fff;
}

.nav-cta {
  flex: 0 0 auto;
  padding: 10px 14px;
  border-radius: 999px;
  color: #191006;
  font-weight: 900;
  background: linear-gradient(135deg,var(--gold),var(--gold2));
}

/* Typography */
h1,
h2,
h3 {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(38px, 6vw, 76px);
  line-height: .96;
  letter-spacing: -2.4px;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: -1.4px;
}

h3 {
  margin-bottom: 10px;
  line-height: 1.2;
}

.gradient-text {
  color: transparent;
  background: linear-gradient(90deg,#fff,var(--gold),var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
}

.lead {
  max-width: 800px;
  margin: 0 0 18px;
  color: var(--soft);
  font-size: clamp(17px, 2vw, 21px);
}

.sub,
.muted {
  color: var(--muted);
}

.kicker {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}

section {
  padding: 42px 0;
  min-width: 0;
}

.section-head {
  max-width: 930px;
  margin-bottom: 20px;
}

/* Hero */
.hero {
  padding: 58px 0 34px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0,1.12fr) minmax(320px,.88fr);
  gap: 28px;
  align-items: center;
  min-width: 0;
}

.eyebrow {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.pill {
  display: inline-flex;
  max-width: 100%;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--soft);
  background: rgba(255,255,255,.07);
  font-size: 13px;
  white-space: normal;
}

.pill.green {
  border-color: rgba(53,230,164,.35);
  color: var(--green);
  background: rgba(53,230,164,.10);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  max-width: 100%;
  gap: 8px;
  padding: 13px 20px;
  border: 0;
  border-radius: 16px;
  cursor: pointer;
  font-weight: 900;
  text-align: center;
  transition: .2s transform ease, .2s filter ease;
}

.btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.btn-primary {
  color: #1d1200;
  background: linear-gradient(135deg,var(--gold),var(--gold2));
  box-shadow: 0 16px 40px rgba(255,143,47,.28);
}

.btn-secondary {
  color: #fff;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.08);
}

.hero-card,
.panel,
.card,
.bonus-card,
.review-card,
.step,
.pros,
.cons,
.faq-item {
  min-width: 0;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.045));
}

.hero-card,
.panel,
.card {
  padding: 22px;
  border-radius: var(--radius);
}

.hero-card {
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -80px -80px auto auto;
  width: 180px;
  height: 180px;
  opacity: .32;
  background: radial-gradient(circle,var(--gold),transparent 65%);
}

.score-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 10px;
  margin: 18px 0;
}

.score {
  min-width: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(0,0,0,.18);
}

.score b {
  display: block;
  color: var(--gold);
  font-size: 24px;
}

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

/* TOC */
.toc {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 10px;
}

.toc a {
  min-width: 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--soft);
  background: rgba(255,255,255,.055);
  font-size: 14px;
}

.toc a:hover {
  color: #fff;
  background: rgba(255,255,255,.1);
}

/* Generic grids */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 18px;
}

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

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 14px;
}

.card b,
.accent {
  color: var(--gold);
}

.list {
  margin: 0;
  padding-left: 20px;
  color: var(--soft);
}

.list li {
  margin: 8px 0;
}

.warning,
.danger,
.notice {
  padding: 14px 16px;
  border-radius: 16px;
  color: #fff;
  font-size: 14px;
}

.warning {
  border-left: 4px solid var(--gold);
  background: rgba(255,201,74,.09);
}

.danger {
  border-left: 4px solid var(--danger);
  background: rgba(255,107,107,.10);
}

.notice {
  border-left: 4px solid var(--blue);
  background: rgba(112,215,255,.09);
}

/* Bonus cards */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 16px;
}

.bonus-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(170px,.9fr) minmax(0,1.35fr);
  gap: 16px;
  align-items: start;
  padding: 16px;
  border-radius: 22px;
  overflow: hidden;
}

.bonus-card.featured {
  border-color: rgba(255,201,74,.7);
  box-shadow: 0 24px 80px rgba(255,201,74,.18);
}

.rank {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  max-width: calc(100% - 24px);
  padding: 5px 9px;
  border: 1px solid rgba(255,201,74,.36);
  border-radius: 999px;
  color: var(--gold);
  background: rgba(255,201,74,.16);
  font-size: 12px;
  font-weight: 900;
}

.brand-block {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding-right: 54px;
}

.logo {
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 18px;
  color: var(--gold);
  background: linear-gradient(135deg,var(--panel2),#3a245e);
  font-weight: 900;
}

.brand-block h3 {
  margin: 0 0 4px;
  font-size: 19px;
}

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

.rating span {
  color: var(--gold);
}

.bonus-copy {
  min-width: 0;
}

.label {
  display: block;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.bonus-copy strong {
  display: block;
  font-size: 17px;
  line-height: 1.25;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.tag {
  max-width: 100%;
  padding: 4px 7px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--soft);
  background: rgba(255,255,255,.06);
  font-size: 11px;
}

.mini-facts {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 8px;
  width: 100%;
  margin: 0;
  padding: 0;
  color: var(--muted);
  font-size: 13px;
  list-style: none;
}

.mini-facts li {
  min-width: 0;
  margin: 0;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(0,0,0,.16);
}

.cta,
.table-cta {
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 46px;
  padding: 12px 16px;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg,var(--pink),var(--gold2));
  box-shadow: 0 14px 34px rgba(255,63,145,.24);
  font-weight: 900;
  text-align: center;
}

/* Tables */
.table-wrap {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255,255,255,.05);
}

table {
  width: 100%;
  min-width: 900px;
  border-collapse: collapse;
}

th,
td {
  padding: 14px 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: middle;
}

th {
  color: #fff;
  background: rgba(255,255,255,.08);
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

td {
  color: var(--soft);
  font-size: 14px;
}

tr:last-child td {
  border-bottom: 0;
}

.ok-pill,
.risk-pill,
.code-pill {
  display: inline-flex;
  max-width: 100%;
  padding: 5px 8px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  white-space: normal;
}

.ok-pill,
.code-pill {
  border: 1px solid rgba(53,230,164,.28);
  color: var(--green);
  background: rgba(53,230,164,.12);
}

.risk-pill {
  border: 1px solid rgba(255,107,107,.28);
  color: #ffb1b1;
  background: rgba(255,107,107,.12);
}

/* Pros/Cons */
.split-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 16px;
}

.pros,
.cons {
  padding: 18px;
  border-radius: 18px;
  background: rgba(0,0,0,.16);
}

.pros h3 {
  color: var(--green);
}

.cons h3 {
  color: #ffb1b1;
}

/* Reviews */
.review-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 18px;
}

.review-card {
  padding: 20px;
  border-radius: 22px;
  background: rgba(255,255,255,.06);
}

.review-card:first-child {
  grid-column: 1 / -1;
}

.review-head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  min-width: 0;
  margin-bottom: 10px;
}

.review-num {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg,var(--gold),var(--pink));
  font-weight: 1000;
}

.text-link {
  color: var(--gold);
  border-bottom: 1px solid rgba(255,201,74,.4);
  font-weight: 900;
}

/* Steps */
.steps {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 16px;
}

.step {
  padding: 20px;
  border-radius: 22px;
  background: rgba(255,255,255,.06);
}

.step::before {
  counter-increment: step;
  content: counter(step);
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 12px;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg,var(--gold),var(--pink));
  font-weight: 1000;
}

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px;
}

.faq-item {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,.06);
}

.faq-item summary {
  cursor: pointer;
  color: #fff;
  font-weight: 900;
}

.faq-item p {
  margin-bottom: 0;
  color: var(--muted);
}

/* Forms and placeholders */
form {
  display: grid;
  gap: 14px;
}

.field {
  display: grid;
  gap: 7px;
}

label {
  color: var(--soft);
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  max-width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  outline: none;
  color: var(--text);
  background: rgba(0,0,0,.22);
  font: inherit;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(255,201,74,.75);
  box-shadow: 0 0 0 4px rgba(255,201,74,.11);
}

select option {
  color: #fff;
  background: #15122a;
}

.check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
}

.check input {
  width: auto;
  margin-top: 6px;
}

.placeholder {
  display: inline-block;
  max-width: 100%;
  padding: 2px 7px;
  border: 1px dashed rgba(255,201,74,.55);
  border-radius: 10px;
  color: #ffe39b;
  background: rgba(255,201,74,.08);
  font-weight: 800;
}

/* Footer */
footer {
  padding: 32px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: rgba(0,0,0,.22);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 20px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
  font-size: 14px;
}

.footer-links a {
  color: var(--soft);
  border-bottom: 1px solid rgba(255,255,255,.18);
}

/* Tablet */
@media (max-width: 980px) {
  .container {
    width: min(var(--max), calc(100% - 28px));
  }

  .navlinks {
    display: none;
  }

  .hero-grid,
  .grid-2,
  .split-card,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .grid-3,
  .grid-4,
  .review-grid,
  .steps {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }

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

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

  .hero-grid {
    gap: 20px;
  }
}

/* Phone */
@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  .container {
    width: calc(100% - 22px);
  }

  section {
    padding: 32px 0;
  }

  .hero {
    padding: 34px 0 24px;
  }

  .nav {
    gap: 10px;
  }

  .brand {
    max-width: 100%;
    font-size: 15px;
  }

  .brand-mark {
    flex-basis: 36px;
    width: 36px;
    height: 36px;
    border-radius: 12px;
  }

  h1 {
    font-size: clamp(34px, 11vw, 48px);
    line-height: 1.02;
    letter-spacing: -1.2px;
  }

  h2 {
    font-size: clamp(25px, 8vw, 34px);
    letter-spacing: -0.8px;
  }

  .lead {
    font-size: 16.5px;
  }

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

  .btn,
  .hero-actions .btn,
  .cta,
  .table-cta {
    width: 100%;
  }

  .hero-card,
  .panel,
  .card,
  .review-card,
  .step {
    padding: 17px;
    border-radius: 20px;
  }

  .score-row,
  .grid-3,
  .grid-4,
  .toc,
  .review-grid,
  .steps,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .score {
    padding: 12px;
  }

  .bonus-card {
    grid-template-columns: 1fr;
    gap: 13px;
    padding: 15px;
    border-radius: 20px;
  }

  .rank {
    position: static;
    width: fit-content;
    max-width: 100%;
    margin-bottom: 0;
  }

  .brand-block {
    width: 100%;
    padding-right: 0;
  }

  .logo {
    flex-basis: 52px;
    width: 52px;
    height: 52px;
  }

  .brand-block h3 {
    font-size: 18px;
  }

  .rating {
    font-size: 12.5px;
  }

  .bonus-copy strong {
    font-size: 16px;
  }

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

  /* Mobile tables become stacked cards */
  .table-wrap {
    overflow-x: hidden;
    border-radius: 18px;
  }

  .table-wrap table,
  .table-wrap thead,
  .table-wrap tbody,
  .table-wrap th,
  .table-wrap td,
  .table-wrap tr {
    display: block;
    width: 100%;
    min-width: 0;
  }

  .table-wrap table {
    min-width: 0 !important;
  }

  .table-wrap thead {
    display: none;
  }

  .table-wrap tr {
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
  }

  .table-wrap tr:last-child {
    border-bottom: 0;
  }

  .table-wrap td {
    display: grid;
    grid-template-columns: minmax(112px, 38%) minmax(0,1fr);
    gap: 10px;
    align-items: start;
    padding: 7px 12px;
    border-bottom: 0;
    text-align: left;
  }

  .table-wrap td::before {
    content: attr(data-label);
    min-width: 0;
    color: var(--muted);
    font-weight: 900;
  }

  .review-head {
    gap: 12px;
  }

  .footer-grid {
    gap: 8px;
  }
}

/* Very small phones */
@media (max-width: 390px) {
  .container {
    width: calc(100% - 18px);
  }

  h1 {
    font-size: 32px;
  }

  .brand {
    font-size: 14px;
  }

  .table-wrap td {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .table-wrap td::before {
    font-size: 12px;
    letter-spacing: .04em;
    text-transform: uppercase;
  }
}


/* === KURZCHECK ROW FINAL FIX START === */

/*
  FINAL FIX для блоку "Alle Anbieter im Kurzcheck"

  Desktop / laptop:
  - 2 картки в ряд.
  - Перша картка НЕ розтягується на всю ширину.

  Mobile:
  - кожен Anbieter = окремий компактний рядок-картка на всю ширину.
  - всередині картки немає кривого 2-column/grid розтягування.
*/

#reviews .review-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 18px !important;
  align-items: stretch !important;
}

#reviews .review-card,
#reviews .review-card:first-child {
  grid-column: auto !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
}

#reviews .review-card {
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
}

#reviews .review-head {
  display: flex !important;
  align-items: flex-start !important;
  gap: 12px !important;
  min-width: 0 !important;
  margin-bottom: 0 !important;
}

#reviews .review-head > div {
  min-width: 0 !important;
}

#reviews .review-head h3,
#reviews .review-head p {
  max-width: 100% !important;
  overflow-wrap: anywhere !important;
}

#reviews .review-num {
  flex: 0 0 42px !important;
}

#reviews .review-card > p {
  margin: 0 !important;
}

#reviews .review-card > p:last-child {
  margin-top: auto !important;
}

/* Планшет: теж 2 в ряд, якщо є місце */
@media (max-width: 980px) and (min-width: 641px) {
  #reviews .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

/* Мобільний: 1 Anbieter = 1 нормальний рядок/картка */
@media (max-width: 640px) {
  #reviews .review-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  #reviews .review-card,
  #reviews .review-card:first-child {
    grid-column: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 14px !important;
    border-radius: 18px !important;
  }

  #reviews .review-card {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 9px !important;
  }

  #reviews .review-head {
    display: grid !important;
    grid-template-columns: 38px minmax(0, 1fr) !important;
    gap: 10px !important;
    align-items: start !important;
  }

  #reviews .review-num {
    width: 38px !important;
    height: 38px !important;
    flex: 0 0 38px !important;
    border-radius: 12px !important;
    font-size: 14px !important;
  }

  #reviews .review-head h3 {
    margin: 0 0 4px !important;
    font-size: 17px !important;
    line-height: 1.15 !important;
  }

  #reviews .review-head p {
    margin: 0 !important;
    font-size: 13px !important;
    line-height: 1.35 !important;
    color: var(--muted) !important;
  }

  #reviews .review-card > p {
    font-size: 14px !important;
    line-height: 1.5 !important;
  }

  #reviews .tag-row {
    margin-top: 0 !important;
  }

  #reviews .tag {
    font-size: 11px !important;
    padding: 4px 7px !important;
  }

  #reviews .text-link {
    display: inline-flex !important;
    width: 100% !important;
    justify-content: center !important;
    padding: 10px 12px !important;
    border: 1px solid rgba(255,201,74,.35) !important;
    border-radius: 12px !important;
    background: rgba(255,201,74,.08) !important;
    text-align: center !important;
  }
}

/* Дуже вузькі мобільні */
@media (max-width: 390px) {
  #reviews .review-head {
    grid-template-columns: 34px minmax(0, 1fr) !important;
  }

  #reviews .review-num {
    width: 34px !important;
    height: 34px !important;
  }

  #reviews .review-head h3 {
    font-size: 16px !important;
  }
}

/* === KURZCHECK ROW FINAL FIX END === */

