
  .review-widget {
    max-width: 90%;
    margin: auto;
    border-radius: 16px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    align-items: start;
  }

  .review {
    display: flex;
    flex-direction: column;
    gap: 12px;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 10px 16px;
    background: white;
  }

  .avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #4f46e5;
    color: white;
    font-weight: bold;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .g-icon {
    width: 12px;
    height: 12px;
  }

  .review-content {
    flex: 1;
  }

  .reviewer-name {
    font-weight: bold;
    text-decoration: none;
    color: rgb(95, 95, 95);
  }

  .reviewer-name:hover {
    font-weight: bold;
    text-decoration: block;
    color: rgb(45, 45, 45);
  }


  .stars {
    color: #ffd429;
    font-size: 1.2rem;
    line-height: 1;
  }

  .text {
    color: #333;
    font-size: 0.95rem;
  }

  .review-date {
    color: #888;
    font-size: 0.85rem;
  }

  .show-more-wrapper {
    text-align: center;
    margin-top: 2rem;
  }

    .show-more-btn {
        background-color: #ff6b81;
        color: white;
        padding: 10px 20px;
        border-radius: 8px;
        border: none;
        font-weight: bold;
        cursor: pointer;
        transition: background-color 0.2s ease-in-out;
    }

    .show-more-btn:hover {
        background-color: #e55b71;
    }

  .see-more {
    color: darkgrey;
    font-weight: 600;
    cursor: pointer;
    display: inline-block;
    margin-top: 4px;
    text-decoration: underline;
    text-decoration-color: lightgray;
    text-underline-offset: 2px;
    transition: color 0.2s ease, text-decoration-color 0.2s ease;
  }

  .see-more:hover {
    color: #4f46e5; /* soft indigo */
    text-decoration-color: #4f46e5;
  }
