.flex-container:has(> .review-explorer) {
  max-width: 1180px;
  gap: 32px;
  margin-right: auto;
  margin-left: auto;
}

.review-explorer {
  width: 100%;
  max-width: 620px;
  margin-right: auto !important;
  margin-left: auto !important;
}

.review-explorer > p:first-child {
  margin-bottom: 18px;
  color: #0a2245;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}

.review-explorer .tab {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  width: 100%;
  max-width: 620px;
  margin-right: auto;
  margin-left: auto;
  overflow: visible;
}

.review-explorer .tab .button {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: center;
  border: 1px solid #c9d9e8;
  border-radius: 6px;
  background: #f7fbff;
  color: #0a2245;
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease,
    box-shadow 180ms ease, transform 180ms ease;
}

.review-explorer .tab .button:hover {
  border-color: #1d60f7;
  box-shadow: none;
  transform: translateY(-2px);
}

.review-explorer .tab .button.active,
.review-explorer .tab .button:focus-visible {
  border-color: #0a2245;
  background: #0a2245;
  box-shadow: 0 5px 12px rgba(10, 34, 69, 0.22);
}

.review-explorer .tab .button:focus-visible {
  outline: 3px solid #f4b400;
  outline-offset: 2px;
}

.review-explorer .avatar {
  width: 42px;
  height: 42px;
  border: 2px solid #0a2245;
  border-radius: 50%;
  object-fit: cover;
}

.review-explorer .tab .button.active .avatar,
.review-explorer .tab .button:focus-visible .avatar {
  border-color: #fff;
}

.review-explorer > div[align="center"] {
  display: flex;
  width: 100%;
  max-width: 620px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  margin: 16px auto 0;
  padding: 8px 14px;
  border: 1px solid #c9d9e8;
  border-radius: 6px;
  background: #fff;
}

.review-explorer > div[align="center"] img {
  width: 120px;
  height: 30px;
  object-fit: contain;
}

.review-explorer .tabcontent {
  width: 100%;
  max-width: 620px;
  min-height: 245px;
  margin: 14px auto 0;
  padding: 22px 24px;
  border: 1px solid #c9d9e8;
  border-left: 4px solid #00aa6c;
  border-radius: 6px;
  background: #fff;
  color: #0a2245;
  font-size: 16px;
  line-height: 1.55;
}

.review-explorer .tabcontent > strong:first-child {
  display: block;
  margin-bottom: 10px;
  font-size: 18px;
}

.review-explorer .tabcontent div[align="center"] {
  display: block;
  min-height: 0;
  margin-top: 16px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #17642a;
  font-size: 14px;
}

.review-explorer .tabcontent + br + p,
.review-explorer > br + p {
  margin-top: 18px;
  text-align: center;
}

@media (max-width: 560px) {
  .review-explorer .tab {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .review-explorer .tabcontent {
    min-height: 0;
    padding: 18px;
  }
}