* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  border: none;
  cursor: pointer;
  background: transparent;
}

html,
body,
a,
button,
input {
  font-family: "Inter", sans-serif;
}

body {
  overflow-x: hidden;
  overflow-y: hidden;
}

input {
  outline: none;
}

.main {
  width: 100vw;
  height: 100vh;
  padding: 110px 87px;
  display: flex;
  gap: 90px;
}

.left {
  width: max-content;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.logo {
  width: 302px;
  height: 158px;
  background: url("../../static/images/logo.png") center/cover no-repeat;
  margin-bottom: 50px;
}

.logo-title {
  font-size: 32px;
  font-weight: 600;
  color: #2e1f85;
  text-align: center;
}

.qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.qr-title {
  font-size: 32px;
  font-weight: 600;
  text-align: center;
}

.qr-image {
  width: 302px;
  height: 302px;
  background: url("../../static/images/qr-code.png") center/cover no-repeat;
}

.right {
  display: flex;
  gap: 63px;
}

.reviews {
  display: flex;
  flex-direction: column;
  gap: 45px;
}

.review {
  width: 661px;
  padding: 42px 52px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fff;
  border-radius: 47.65px;
  box-shadow:
    0 14px 23px rgba(0, 0, 0, 0.1),
    0 4px 25px rgba(0, 0, 40, 0.1);
}

.review-container {
  flex: 1;
  overflow: hidden;
}

.top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.user {
  display: flex;
  align-items: center;
  gap: 14.29px;
}

.user-logo {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  background: #eee;

  display: flex;
  align-items: center;
  justify-content: center;
}

.user-avatar {
  background-image: url("../../static/images/user-avatar.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 15px;
  height: 16px;
}

.user-name {
  font-size: 19px;
  font-weight: 400;
}

.stars {
  display: flex;
  gap: 5px;
}

.stars svg {
  width: 28px;
  height: 26px;
}

.star.active path {
  fill: #ffac33;
}

.star.inactive path {
  fill: #cccccc;
}

.review-text {
  font-size: 19px;
  font-weight: 500;
  margin-top: 12.24px;
  white-space: pre-line;
}

.review-date {
  font-size: 13.55px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.4);
  margin-top: 30px;

  display: flex;
  align-items: center;
}

.review-source {
  display: flex;
  align-items: center;
}

.review-source img {
  width: 10px;
  margin-right: 4px;
}

@media (max-width: 1000px) {
  .main {
    padding: 44px 31.55px;
    gap: 40.5px;
  }

  .left {
    width: 156.97px;
  }

  .logo {
    width: 156.97px;
    height: 82.12px;
    margin-bottom: 0;
  }

  .logo-title {
    font-size: 18px;
    font-weight: 500;
    margin-top: 15px;
  }

  .qr {
    gap: 15px;
  }

  .qr-title {
    font-size: 15px;
    font-weight: 500;
  }

  .qr-image {
    width: 156.97px;
    height: 156.97px;
    background: url("../../static/images/qr-code.png") center/cover no-repeat;
  }

  .right {
    gap: 20px;
  }

  .reviews {
    gap: 20px;
  }

  .review {
    width: 343px;
    padding: 12px 17px;
    border-radius: 20px;
  }

  .user {
    gap: 10px;
  }

  .user-logo {
    width: 23px;
    height: 23px;
  }

  .user-name {
    font-size: 12px;
    font-weight: 500;
  }

  .review-text {
    font-size: 11px;
    font-weight: 400;
    margin-top: 12.24px;
    max-height: 156px;
  }

  .review-date {
    font-size: 11px;
    font-weight: 400;
    margin-top: 25px;
  }

  .stars svg {
    width: 9.74px;
    height: 9.74px;
  }

  .stars {
    gap: 1.86px;
  }
}

.logo-top {
  display: flex;
  flex-direction: column;
  align-items: center;
}
