/* ============================================================================
   Reviews v2 — EMPLOYEE page styles (reviews_employee_v2 + reviews_employee_hero).
   Two-card hero: profile card (left) + about card w/ review banner + trust bar.
   Loads ALONGSIDE reviews-v2.css, which provides the .reviews-v2 design tokens
   (--pg-*, --rv2-cw, --rv2-gutter) and the shared card/masonry/pagination/CTA.
   Decoratives are inline SVG; no new image assets.
   ========================================================================== */

.reviews-v2 .rv2-emp-hero__inner {
  align-items: stretch;
  gap: 24px;
  padding-top: 8px;
  padding-bottom: 28px;
}
/* breadcrumb sits above the two cards, at container width.
   display:flex (not the base inline-flex) so margin auto centers it and it
   left-aligns with the cards' container gutter. */
.reviews-v2 .rv2-emp-breadcrumb {
  display: flex;
  justify-content: flex-start;
  max-width: var(--rv2-cw);
  margin: 0 auto;
  padding: 18px var(--rv2-gutter) 0;
}

/* ---- LEFT: profile card ---- */
.reviews-v2 .rv2-emp-card {
  flex: 0 0 360px;
  max-width: 360px;
  position: relative;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 18px 44px rgba(0,0,0,0.10);
  padding: 28px;
  overflow: hidden;
}
.reviews-v2 .rv2-emp-card > * { position: relative; z-index: 1; }

.reviews-v2 .rv2-emp-card__header { text-align: center; }
.reviews-v2 .rv2-emp-card__name {
  margin: 0;
  font-weight: 800;
  font-size: 34px;
  line-height: 1.1;
  color: var(--pg-green);
}
.reviews-v2 .rv2-emp-card__role {
  margin: 4px 0 0;
  font-weight: 400;
  font-size: 18px;
  color: var(--pg-green);
}

.reviews-v2 .rv2-emp-card__photo-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  margin: 20px 0 24px;
}
/* dotted grid to the left of the photo */
.reviews-v2 .rv2-emp-card__dots {
  position: absolute;
  left: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 90px;
  background-image: radial-gradient(var(--pg-green) 1.6px, transparent 1.7px);
  background-size: 12px 12px;
  opacity: 0.30;
}
.reviews-v2 .rv2-emp-card__photo {
  width: 184px;
  height: 184px;
  border-radius: 50%;
  padding: 6px;
  background: #fff;
  border: 2px solid rgba(19,76,62,0.25);
  box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}
.reviews-v2 .rv2-emp-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  background: #f0f4f3;
}

/* stat rows: 2 per line (icon spans label/value) to keep the card compact */
.reviews-v2 .rv2-emp-card__stats {
  list-style: none;
  margin: auto 0 0; /* pin to card bottom so the stretched card stays balanced */
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 14px;
}
.reviews-v2 .rv2-emp-card__stat {
  display: grid;
  grid-template-columns: 34px 1fr;
  column-gap: 10px;
  align-items: center;
  padding: 6px 2px;
}
.reviews-v2 .rv2-emp-card__stat-ico {
  grid-row: 1 / span 2;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--pg-green);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.reviews-v2 .rv2-emp-card__stat-ico svg { width: 19px; height: 19px; }
.reviews-v2 .rv2-emp-card__stat-label {
  font-size: 13px;
  line-height: 1.2;
  color: var(--pg-muted);
}
.reviews-v2 .rv2-emp-card__stat-value {
  font-weight: 700;
  font-size: 15px;
  line-height: 1.25;
  color: var(--pg-green);
}
.reviews-v2 .rv2-emp-card__stat-value a { color: var(--pg-green); text-decoration: none; }
.reviews-v2 .rv2-emp-card__stat-value a:hover { text-decoration: underline; }

/* ---- RIGHT: about card ---- */
.reviews-v2 .rv2-emp-about {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid #eef1f0;
  border-radius: 24px;
  box-shadow: 0 18px 44px rgba(0,0,0,0.08);
  overflow: hidden;
}

/* review banner strip */
.reviews-v2 .rv2-emp-about__banner {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 28px;
  background: #f4f8f6;
  border-bottom: 1px solid #e6efe9;
}
.reviews-v2 .rv2-emp-about__banner-seal {
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--pg-green);
  border: 3px solid #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.reviews-v2 .rv2-emp-about__banner-seal svg { width: 26px; height: 26px; }
.reviews-v2 .rv2-emp-about__banner-text {
  flex: 1 1 auto;
  margin: 0;
  font-size: 19px;
  line-height: 1.3;
  color: var(--pg-black);
}
.reviews-v2 .rv2-emp-about__banner-text strong { color: var(--pg-green); font-weight: 800; }
.reviews-v2 .rv2-emp-about__banner-stars { flex: 0 0 auto; display: inline-flex; gap: 3px; }
.reviews-v2 .rv2-emp-about__banner-stars svg { width: 26px; height: 26px; }
.reviews-v2 .rv2-gold path { fill: #FFB900; }
.reviews-v2 .rv2-gold--off path { fill: #e2e2e2; }

/* body: heading + bio + scene illustration */
.reviews-v2 .rv2-emp-about__body {
  position: relative;
  flex: 1 1 auto;
  padding: 24px 28px 28px;
  overflow: hidden;
}
.reviews-v2 .rv2-emp-about__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.reviews-v2 .rv2-emp-about__head-ico {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--pg-green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.reviews-v2 .rv2-emp-about__head-ico svg { width: 22px; height: 22px; }
.reviews-v2 .rv2-emp-about__title {
  margin: 0;
  font-weight: 800;
  font-size: 24px;
  line-height: 1.2;
  color: var(--pg-green);
  white-space: nowrap;
}
.reviews-v2 .rv2-emp-about__rule { flex: 1 1 auto; height: 1px; background: #e6efe9; }
.reviews-v2 .rv2-emp-about__dots-h svg { display: block; width: 24px; height: 6px; fill: #c7d8d0; }

.reviews-v2 .rv2-emp-about__bio {
  position: relative;
  z-index: 1;
  font-size: 16px;
  line-height: 1.7;
  color: var(--pg-black);
  max-width: 100%;
}
.reviews-v2 .rv2-emp-about__scene {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 260px;
  max-width: 42%;
  height: auto;
  z-index: 0;
  pointer-events: none;
}

/* trust bar footer */
.reviews-v2 .rv2-emp-about__trust {
  display: flex;
  align-items: stretch;
  background: var(--pg-green);
  padding: 18px 20px;
  margin: 0 12px 12px;
  border-radius: 16px;
}
.reviews-v2 .rv2-emp-trust {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 8px;
  color: #fff;
}
.reviews-v2 .rv2-emp-trust + .rv2-emp-trust { border-left: 1px solid rgba(255,255,255,0.22); }
.reviews-v2 .rv2-emp-trust__ico { flex: 0 0 30px; width: 30px; height: 30px; }
.reviews-v2 .rv2-emp-trust__label { font-size: 15px; line-height: 1.25; font-weight: 500; }

/* ---- responsive ---- */
@media (max-width: 992px) {
  .reviews-v2 .rv2-emp-hero__inner { flex-direction: column; align-items: stretch; }
  .reviews-v2 .rv2-emp-card { flex: none; max-width: none; align-self: center; width: 100%; max-width: 420px; }
}
@media (max-width: 768px) {
  .reviews-v2 .rv2-emp-about__banner { flex-wrap: wrap; }
  .reviews-v2 .rv2-emp-about__banner-stars { width: 100%; justify-content: center; }
  .reviews-v2 .rv2-emp-about__bio { max-width: 100%; }
  .reviews-v2 .rv2-emp-about__scene { display: none; }
  .reviews-v2 .rv2-emp-about__trust { flex-wrap: wrap; gap: 14px 0; }
  .reviews-v2 .rv2-emp-trust { flex: 1 1 50%; }
  .reviews-v2 .rv2-emp-trust:nth-child(3) { border-left: 0; }
}
@media (max-width: 480px) {
  .reviews-v2 .rv2-emp-about__title { white-space: normal; }
  .reviews-v2 .rv2-emp-trust { flex: 1 1 100%; border-left: 0; justify-content: flex-start; }
}
