/* =============================================
   SECTION 1 — Review Cards (testimonials)
   ============================================= */
      .review-card {
        background: #fff;
        border: 1px solid #e8e8e8;
        border-radius: 8px;
        margin-bottom: 20px;
        overflow: hidden;
        box-shadow: 0 1px 4px rgba(0, 0, 0, .06);
        transition: box-shadow .15s ease;
      }

      .review-card:hover {
        box-shadow: 0 3px 10px rgba(0, 0, 0, .1);
      }

      .review-card__link {
        display: block;
        text-decoration: none !important;
        color: inherit;
        padding: 18px 20px 14px;
      }

      .review-card__header {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 12px;
      }

      .review-card__avatar-wrap {
        flex-shrink: 0;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        overflow: hidden;
        border: 2px solid #f0f0f0;
      }

      .review-card__avatar {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        margin: 0 !important;
      }

      .review-card__meta {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 2px;
      }

      .review-card__author {
        font-weight: 700;
        font-size: 15px;
        color: #1a1a1a;
      }

      .review-card__date {
        font-size: 12px;
        color: #888;
      }

      .review-card__verified {
        font-size: 11px;
        font-weight: 600;
        color: #2a7d4f;
        background: #edf7f1;
        padding: 3px 8px;
        border-radius: 4px;
        white-space: nowrap;
      }

      .review-card__stars {
        color: #f5a623;
        font-size: 15px;
        letter-spacing: 1px;
        margin-bottom: 6px;
      }

      .review-card__text {
        font-size: 15px !important;
        line-height: 1.55 !important;
        color: #333 !important;
        margin-bottom: 10px !important;
      }

      .review-card__photo {
        width: 100%;
        max-width: 480px;
        border-radius: 6px;
        margin: 8px 0 10px !important;
        display: block;
      }

      .review-card__footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-top: 10px;
        border-top: 1px solid #f0f0f0;
        font-size: 13px;
        color: #777;
      }

      .review-card__helpful {
        display: flex;
        align-items: center;
        gap: 5px;
      }

      .review-card__helpful svg {
        color: #aaa;
      }

      .review-card__comment-count {
        font-size: 12px;
        color: #999;
      }

      /* Replies inside review cards */
      .review-replies {
        border-top: 1px solid #f0f0f0;
        background: #fafafa;
        padding: 12px 20px;
      }

      .review-reply {
        display: flex;
        gap: 10px;
        margin-top: 10px;
      }

      .review-reply:first-child {
        margin-top: 0;
      }

      .review-reply__avatar {
        width: 32px !important;
        height: 32px !important;
        border-radius: 50%;
        object-fit: cover;
        flex-shrink: 0;
        margin: 0 !important;
      }

      .review-reply__body {
        background: #fff;
        border-radius: 8px;
        padding: 8px 12px;
        border: 1px solid #ebebeb;
        flex: 1;
      }

      .review-reply__author {
        font-weight: 700;
        font-size: 13px;
        color: #1a1a1a;
        display: block;
        margin-bottom: 3px;
      }

      .review-reply__text {
        font-size: 13px !important;
        color: #444 !important;
        margin-bottom: 4px !important;
        line-height: 1.45 !important;
      }

      .review-reply__time {
        font-size: 11px;
        color: #aaa;
      }

      /* =============================================
   SECTION 2 — Reader Comments (article bottom)
   ============================================= */
      .reader-comment {
        display: flex;
        gap: 14px;
        padding: 16px 0;
        border-bottom: 1px solid #f0f0f0;
      }

      .reader-comment:last-of-type {
        border-bottom: none;
      }

      .reader-comment__avatar-col {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 6px;
        flex-shrink: 0;
      }

      .reader-comment__avatar {
        width: 46px !important;
        height: 46px !important;
        border-radius: 50%;
        object-fit: cover;
        border: 2px solid #ececec;
        margin: 0 !important;
        display: block !important;
      }

      .reader-comment__vote-col {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2px;
        color: #bbb;
        cursor: pointer;
        user-select: none;
      }

      .reader-comment__vote-col:hover {
        color: #555;
      }

      .reader-comment__vote-count {
        font-size: 12px;
        font-weight: 600;
        color: #999;
      }

      .reader-comment__content {
        flex: 1;
      }

      .reader-comment__header {
        display: flex;
        flex-wrap: wrap;
        align-items: baseline;
        gap: 6px;
        margin-bottom: 6px;
      }

      .reader-comment__name {
        font-weight: 700;
        font-size: 14px;
        color: #1a1a1a;
      }

      .reader-comment__location {
        font-size: 12px;
        color: #888;
        background: #f5f5f5;
        padding: 1px 6px;
        border-radius: 3px;
      }

      .reader-comment__date {
        font-size: 12px;
        color: #aaa;
        margin-left: auto;
      }

      .reader-comment__text {
        font-size: 15px !important;
        line-height: 1.55 !important;
        color: #333 !important;
        margin: 0 !important;
      }

      @media (max-width: 640px) {
        .review-card__verified {
          display: none;
        }

        .reader-comment__date {
          margin-left: 0;
          width: 100%;
        }
      }