  .bewertung-wrap {
    background: none;
    border-radius: 12px;
    font-family: 'Georgia', serif;
  }

  .bewertung-eyebrow {
    font-family: sans-serif;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #d4a949;
    font-weight: 600;
    margin-bottom: 10px;
  }

  .bewertung-title {
    font-size: 28px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 6px;
    line-height: 1.1;
  }

  .bewertung-title em {
    font-style: italic;
    color: #d4a949;
  }

  .tp-score-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
    margin-top: 4px;
  }

  .tp-logo {
    display: flex;
    align-items: center;
    font-family: sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.03em;
  }

  .tp-logo span {
    color: #00b67a;
  }

  .tp-stars-total {
    display: flex;
    gap: 3px;
  }

  .tp-star {
    width: 18px;
    height: 18px;
    background: #00b67a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
  }

  .tp-star svg {
    width: 12px;
    height: 12px;
    fill: white;
  }

  .tp-score-num {
    font-family: sans-serif;
    font-size: 13px;
    color: rgba(255,255,255,0.45);
  }

  .bewertung-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }

  .review-card {
	display:flex;
    flex-direction:column;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(212,169,73,0.18);
    border-radius: 10px;
    padding: 22px 20px 12px 20px;
    position: relative;
    overflow: hidden;
  }

  .review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, #f5d97b, #a87f2c);
  }

  .review-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 12px;
  }

  .r-star {
    width: 14px;
    height: 14px;
    background: #00b67a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
  }

  .r-star svg {
    width: 9px;
    height: 9px;
    fill: white;
  }

  .review-text {
    font-size: 13.5px;
    color: rgba(255,255,255,0.75);
    line-height: 1.65;
    font-family: sans-serif;
    margin-bottom: 14px;
  }

  .review-author {
    font-family: sans-serif;
    font-size: 11.5px;
    color: rgba(255,255,255,0.35);
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .review-date {
    font-family: sans-serif;
    font-size: 11px;
    color: rgba(255,255,255,0.22);
    margin-top: 2px;
  }

  .review-verified {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: sans-serif;
    font-size: 10px;
    color: #00b67a;
    margin-top: 6px;
  }

  .review-verified svg {
    width: 10px;
    height: 10px;
    fill: #00b67a;
  }
  
  .review-link {
    color: var(--gold);
	opacity: 0.7;
}

.review-link:hover {
    opacity: 1;
}

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

  /* Tablet */
  @media (max-width: 900px) {
    .bewertung-grid {
      grid-template-columns: 1fr 1fr;
    }
  }

  /* Mobile */
  @media (max-width: 600px) {

    .bewertung-grid {
      grid-template-columns: 1fr;
      gap: 16px;
    }

    .tp-score-row {
      flex-direction: column;
      align-items: flex-start;
      gap: 10px;
    }

    .bewertung-title {
      font-size: 22px;
    }

    .review-card {
      padding: 18px;
    }

    .review-text {
      font-size: 14px;
      line-height: 1.6;
    }
  }