.gbr-block {
  --gbr-bg: linear-gradient(180deg, #fffaf4 0%, #fff4ec 100%);
  --gbr-surface: rgba(255, 255, 255, 0.92);
  --gbr-border: rgba(115, 76, 54, 0.14);
  --gbr-text: #2f241f;
  --gbr-muted: #6f5e55;
  --gbr-accent: #bf5b2c;
  --gbr-accent-soft: rgba(191, 91, 44, 0.12);
  --gbr-shadow: 0 24px 48px rgba(62, 40, 28, 0.1);
  --gbr-shell-width: 1180px;
  --gbr-display-font: "Bahnschrift", "Aptos Display", "Trebuchet MS", sans-serif;
  --gbr-body-font: "Aptos", "Segoe UI", "Trebuchet MS", sans-serif;
  font-family: var(--gbr-body-font);
  position: relative;
  overflow: clip;
  padding: 88px 0;
  background: var(--gbr-bg);
  color: var(--gbr-text);
}

.gbr-block,
.gbr-block *,
.gbr-block *::before,
.gbr-block *::after {
  box-sizing: border-box;
}

.gbr-block::before,
.gbr-block::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.gbr-block::before {
  width: 420px;
  height: 420px;
  top: -180px;
  right: -80px;
  background: radial-gradient(circle, rgba(191, 91, 44, 0.16) 0%, rgba(191, 91, 44, 0) 70%);
}

.gbr-block::after {
  width: 320px;
  height: 320px;
  bottom: -140px;
  left: -90px;
  background: radial-gradient(circle, rgba(58, 118, 103, 0.12) 0%, rgba(58, 118, 103, 0) 70%);
}

.gbr-shell {
  width: min(var(--gbr-shell-width), calc(100% - 32px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.gbr-header {
  display: grid;
  gap: 14px;
  max-width: 760px;
  margin-bottom: 28px;
}

.gbr-kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--gbr-accent);
}

.gbr-header h2 {
  margin: 0;
  font-family: var(--gbr-display-font);
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  line-height: 0.96;
  letter-spacing: -0.03em;
}

.gbr-intro {
  margin: 0;
  max-width: 62ch;
  color: var(--gbr-muted);
  line-height: 1.75;
  font-size: 1.04rem;
}

.gbr-summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.gbr-summary-pill,
.gbr-summary-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--gbr-border);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 34px rgba(62, 40, 28, 0.06);
}

.gbr-summary-pill {
  gap: 10px;
}

.gbr-summary-pill strong {
  font-family: var(--gbr-display-font);
  font-size: 1rem;
}

.gbr-summary-link {
  text-decoration: none;
  font-weight: 700;
  background: var(--gbr-accent);
  color: #ffffff;
  border-color: transparent;
}

.gbr-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.gbr-card,
.gbr-state {
  position: relative;
  display: grid;
  gap: 16px;
  min-height: 100%;
  padding: 22px;
  border-radius: 26px;
  background: var(--gbr-surface);
  border: 1px solid var(--gbr-border);
  box-shadow: var(--gbr-shadow);
  backdrop-filter: blur(14px);
}

.gbr-card::before {
  content: "";
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gbr-accent-soft), rgba(255, 255, 255, 0.2));
}

.gbr-card-head,
.gbr-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.gbr-stars {
  display: inline-flex;
  gap: 3px;
}

.gbr-star {
  color: rgba(191, 91, 44, 0.24);
  font-size: 0.95rem;
  line-height: 1;
}

.gbr-star.is-filled {
  color: var(--gbr-accent);
}

.gbr-date {
  font-size: 0.82rem;
  color: var(--gbr-muted);
}

.gbr-quote {
  margin: 0;
  font-size: 1rem;
  line-height: 1.72;
  color: var(--gbr-text);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 7;
  overflow: hidden;
}

.gbr-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.gbr-avatar,
.gbr-avatar img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex: 0 0 auto;
}

.gbr-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(191, 91, 44, 0.18), rgba(58, 118, 103, 0.16));
  color: var(--gbr-text);
  font-family: var(--gbr-display-font);
  font-size: 0.92rem;
  font-weight: 700;
  overflow: hidden;
}

.gbr-author-meta {
  display: grid;
  gap: 2px;
}

.gbr-author-name {
  font-weight: 800;
  line-height: 1.2;
}

.gbr-author-role {
  font-size: 0.84rem;
  color: var(--gbr-muted);
}

.gbr-reply {
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(191, 91, 44, 0.06);
  border: 1px solid rgba(191, 91, 44, 0.08);
}

.gbr-reply-label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gbr-accent);
}

.gbr-reply p {
  margin: 0;
  color: var(--gbr-muted);
  line-height: 1.6;
  font-size: 0.92rem;
}

.gbr-feedback {
  margin: 20px 0 0;
  min-height: 1.4em;
  color: var(--gbr-muted);
  font-size: 0.92rem;
}

.gbr-feedback.is-warning {
  color: #9a3f1f;
}

.gbr-state {
  grid-column: 1 / -1;
  place-items: center;
  min-height: 180px;
  text-align: center;
  color: var(--gbr-muted);
}

.gbr-state-spinner {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 3px solid rgba(191, 91, 44, 0.12);
  border-top-color: var(--gbr-accent);
  animation: gbr-spin 0.9s linear infinite;
}

@keyframes gbr-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1180px) {
  .gbr-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .gbr-block {
    padding: 64px 0;
  }

  .gbr-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .gbr-shell {
    width: min(var(--gbr-shell-width), calc(100% - 20px));
  }

  .gbr-grid {
    grid-template-columns: 1fr;
  }

  .gbr-card,
  .gbr-state {
    border-radius: 22px;
    padding: 18px;
  }
}
