  .video-reviews {
    padding: 20px 20px;
    background: #fff;
    font-family: Arial, sans-serif;
  }

  .video-reviews__container {
    max-width: 1180px;
    margin: 0 auto;
  }

  .video-reviews__title {
    margin: 0 0 40px;
    font-size: 36px;
    line-height: 1.2;
    text-align: center;
    color: #222;
  }

  .video-reviews__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .video-review-card {
    background: #fff;
    border-radius: 0px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }

  .video-review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.14);
  }

  .video-review-card__preview {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #ddd;
  }

  .video-review-card__preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .video-review-card__preview::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
  }

  .video-review-card__play {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    transform: translate(-50%, -50%);
    width: 74px;
    height: 74px;
    border: none;
    border-radius: 50%;
    background: #ffffff;
    color: #ec008c;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    transition: transform 0.25s ease, background 0.25s ease;
  }

  .video-review-card:hover .video-review-card__play {
    transform: translate(-50%, -50%) scale(1.08);
    background: #f2f2f2;
  }

  .video-review-card__content {
    padding: 24px;
  }

  .video-review-card__content h3 {
    margin: 0 0 10px;
    font-size: 22px;
    line-height: 1.3;
    color: #222;
  }

  .video-review-card__content p {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
    color: #555;
  }

  .video-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
  }

  .video-modal.is-open {
    display: flex;
  }

  .video-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
  }

  .video-modal__content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 900px;
    background: #000;
    border-radius: 16px;
    overflow: hidden;
  }

  .video-modal__video {
    width: 100%;
    max-height: 80vh;
    display: block;
    background: #000;
  }

  .video-modal__close {
    position: absolute;
    right: 12px;
    top: 10px;
    z-index: 3;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: #111;
    font-size: 32px;
    line-height: 38px;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease;
  }

  .video-modal__close:hover {
    background: #fff;
    transform: scale(1.05);
  }

  body.video-modal-open {
    overflow: hidden;
  }

  @media (max-width: 768px) {
    .video-reviews {
      padding: 50px 15px;
    }

    .video-reviews__title {
      font-size: 28px;
      margin-bottom: 28px;
    }

    .video-reviews__grid {
      grid-template-columns: 1fr;
      gap: 22px;
    }

    .video-review-card__content {
      padding: 20px;
    }

    .video-review-card__content h3 {
      font-size: 20px;
    }

    .video-review-card__play {
      width: 62px;
      height: 62px;
      font-size: 28px;
    }

    .video-modal__content {
      border-radius: 12px;
    }
  }