/* ===========================
   REVIEWS.CSS — Kteam Architects
   =========================== */

/* ============================================================
   REVIEWS LIST
   ============================================================ */
.rv__main {
  gap: 48px;
}

.rv__header {
  width: 100%;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 24px;
}

.rv__h1 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(40px, 4.23vw, 64px);
  font-weight: 400;
  line-height: 1.1;
  color: #000;
  text-transform: uppercase;
}

.rv__list {
  width: 100%;
}

.rv__list .glsr {
  width: 100%;
}

.rv__list .glsr-reviews {
  column-count: 2;
  column-gap: 48px;
}

.rv__list .glsr-review {
  break-inside: avoid;
  display: block;
  border-top: 1px solid var(--color-border);
  padding: 24px 0;
  margin: 0;
}

.rv__list .glsr-review-rating {
  color: var(--color-gold);
  margin-bottom: 16px;
}

.rv__list .glsr-review-title {
  display: none;
}

.rv__list .glsr-review-content {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--color-gray);
  margin-bottom: 16px;
}

.rv__list .glsr-review-content p {
  margin: 0;
}

.rv__list .glsr-review-author {
  font-family: var(--font-sans);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.3;
  color: #000;
}

.rv__list .glsr-review-date,
.rv__list .glsr-review-assigned_to {
  display: none;
}

.rv__list .glsr-pagination {
  margin-top: 24px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.rv__list .glsr-pagination .page-numbers {
  min-width: 32px;
  height: 32px;
  padding: 4px 8px;
  border: 1px solid var(--color-border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--color-gray);
}

.rv__list .glsr-pagination .current {
  color: #000;
  border-color: #000;
}

/* ============================================================
   SHARE FORM
   ============================================================ */
.rv-share {
  position: relative;
  overflow: hidden;
  background: #1f1f1f;
}

.rv-share__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.rv-share__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.rv-share__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rv-share__inner {
  position: relative;
  z-index: 1;
  align-items: stretch;
  min-height: clamp(520px, 52vw, 760px);
}

.rv-share__rail {
  border-right-color: rgba(255, 255, 255, 0.2);
  align-items: center;
}

.rv-share__label {
  color: rgba(255, 255, 255, 0.58);
}

.rv-share__content {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 48px;
  padding: clamp(48px, 6.35vw, 96px) clamp(16px, 3.17vw, 48px) clamp(48px, 6.35vw, 96px) 24px;
}

.rv-share__left {
  max-width: 560px;
  display: flex;
  flex-direction: column;
  gap: clamp(48px, 8vw, 120px);
	height: 100%;
}

.rv-share__h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(40px, 3.7vw, 56px);
  font-weight: 400;
  line-height: 1.1;
  color: #fff;
  text-transform: uppercase;
}

.rv-share__text {
	margin: 0;
	margin-top: auto;
  max-width: 560px;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
}

.rv-share__form {
  width: 100%;
  max-width: 588px;
  background: #fff;
  padding: 24px;
}

.rv-share__form form,
.rv-share__form .glsr {
  width: 100%;
}

.rv-share__form .glsr-form-wrap,
.rv-share__form .glsr-form,
.rv-share__form .glsr-field {
  width: 100%;
}

.rv-share__form .glsr-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.rv-share__form .glsr-field {
  margin: 0;
}

.rv-share__form label {
  display: block;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  color: #292929;
  margin-bottom: 6px;
}

.rv-share__form input[type="text"],
.rv-share__form input[type="email"],
.rv-share__form input[type="url"],
.rv-share__form textarea,
.rv-share__form select {
  width: 100%;
  border: 1px solid var(--color-border);
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.65;
  color: #292929;
  padding: 12px;
}

.rv-share__form textarea {
  min-height: 100px;
  resize: vertical;
}

.rv-share__form .glsr-star-rating {
  margin-bottom: 8px;
}

.rv-share__form .glsr-star {
  color: var(--color-gold);
}

.rv-share__form .glsr-checkbox label {
  font-size: 16px;
  font-weight: 300;
  color: var(--color-gray);
}

.rv-share__form button[type="submit"],
.rv-share__form input[type="submit"],
.rv-share__form .glsr-button {
  width: 100%;
  border: none;
  background: #000;
  color: #fff;
  border-radius: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  padding: 12px 16px;
  cursor: pointer;
  transition: opacity 0.2s;
	text-align: center;
	justify-content: center;

}
.wp-block-button{
	width: 100%;
}
.rv-share__form button[type="submit"]:hover,
.rv-share__form input[type="submit"]:hover,
.rv-share__form .glsr-button:hover {
  opacity: 0.85;
}

/* ============================================================
   MOBILE
   ============================================================ */
@media (max-width: 767px) {
  .rv__main {
    gap: 24px;
  }

  .rv__header {
    padding-bottom: 16px;
  }

  .rv__h1 {
    font-size: 40px;
  }

  .rv__list .glsr-reviews {
    column-count: 1;
    column-gap: 0;
  }

  .rv__list .glsr-review {
    padding: 20px 0;
  }

  .rv__list .glsr-review-author {
    font-size: 24px;
  }

  .rv-share__inner {
    flex-direction: column;
    min-height: unset;
  }

  .rv-share__rail {
    width: 100%;
    border-right: none;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 48px 16px 0;
  }

  .rv-share__label {
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    padding: 0;
  }

  .rv-share__content {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
    padding: 16px 16px 48px;
  }

  .rv-share__left {
    gap: 16px;
  }

  .rv-share__h2 {
    font-size: 36px;
  }

  .rv-share__form {
    max-width: 100%;
    padding: 16px;
  }
}

.rv__list{
	font-family: 'Poppins';
font-weight: 300;
color:  rgba(80, 80, 80, 1);
}