    :root {
      --bg: #ffffff;
      --card: #ffffff;
      --text: #111827;
      --muted: #6b7280;
      --line: #e5e7eb;
      --soft: #f8fafc;
      --primary: #4f46e5;
      --primary-soft: #eef2ff;
      --star: #f59e0b;
      --shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
      --radius: 20px;
    }

    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      background: var(--bg);
      color: var(--text);
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Pretendard, system-ui, sans-serif;
      overflow-x: hidden;
    }

    button {
      font-family: inherit;
    }

    .oneframe-review-section {
      width: 100%;
      padding: 40px 0;
      background: #ffffff;
      overflow: hidden;
    }

    .oneframe-review-slider {
      width: 100%;
      overflow: hidden;
      position: relative;
      user-select: none;
      touch-action: pan-y;
      cursor: grab;
    }

    .oneframe-review-slider.is-dragging {
      cursor: grabbing;
    }

    .review-track {
      display: flex;
      align-items: stretch;
      transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
      will-change: transform;
    }

    .review-slide {
      flex: 0 0 33.333333%;
      padding: 14px;
      min-width: 0;
    }

    .review-card {
      height: 100%;
      min-height: 390px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: 28px 26px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--card);
      box-shadow: var(--shadow);
      transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    }

    .review-card:hover {
      transform: translateY(-5px);
      border-color: rgba(79, 70, 229, 0.28);
      box-shadow: 0 24px 55px rgba(15, 23, 42, 0.12);
    }

    .review-top {
      margin-bottom: 18px;
    }

    .review-logo-wrap {
      text-align: center;
      margin-bottom: 22px;
    }

    .review-logo {
      width: 142px;
      max-width: 62%;
      height: auto;
      display: inline-block;
      user-select: none;
      pointer-events: none;
    }

    .review-rating {
      display: block;
      margin-bottom: 22px;
      color: var(--star);
      font-size: 30px;
      line-height: 1;
      font-weight: 800;
      white-space: nowrap;
      letter-spacing: -0.04em;
    }

    .review-rating span {
      margin-left: 4px;
      color: var(--muted);
      font-size: 25px;
      font-weight: 700;
      letter-spacing: -0.03em;
    }

    .review-meta {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 16px;
    }

    .review-title {
      flex: 1 1 auto;
      min-width: 0;
      margin: 0;
      color: var(--text);
      font-size: 22px;
      line-height: 1.38;
      font-weight: 850;
      letter-spacing: -0.045em;
      word-break: keep-all;
    }

    .review-category {
      flex: 0 0 auto;
      display: inline-flex;
      align-items: center;
      max-width: 42%;
      padding: 7px 12px;
      border-radius: 999px;
      background: var(--primary-soft);
      color: var(--primary);
      font-size: 13px;
      font-weight: 800;
      letter-spacing: -0.02em;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .review-body {
      margin: 0;
      color: #4b5563;
      font-size: 16px;
      line-height: 1.82;
      font-weight: 400;
      letter-spacing: -0.025em;
      word-break: keep-all;
    }

    .review-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 7px;
      margin-top: 22px;
      padding-top: 18px;
      border-top: 1px solid var(--line);
    }

    .review-tag {
      display: inline-flex;
      align-items: center;
      padding: 6px 10px;
      border-radius: 999px;
      background: var(--soft);
      color: #374151;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: -0.02em;
    }

    @media (max-width: 991px) {
      .review-slide {
        flex-basis: 50%;
      }

      .oneframe-review-section {
        padding: 32px 0;
      }
    }

    @media (max-width: 640px) {
      .review-slide {
        flex-basis: 100%;
        padding: 10px 16px;
      }

      .review-card {
        min-height: 360px;
        padding: 24px 22px;
        border-radius: 18px;
      }

      .review-logo {
        width: 128px;
      }

      .review-rating {
        margin-bottom: 20px;
        font-size: 26px;
      }

      .review-rating span {
        font-size: 21px;
      }

      .review-meta {
        flex-direction: column;
        gap: 10px;
      }

      .review-category {
        max-width: 100%;
        font-size: 12px;
      }

      .review-title {
        font-size: 20px;
      }

      .review-body {
        font-size: 15px;
        line-height: 1.78;
      }
    }