
.ma-wc-section,
.ma-wc-section * {
  box-sizing: border-box;
}

.ma-wc-section {
  position: relative;
  overflow: hidden;
  background-color: #071f34;
  border-top: 1px solid rgba(255,255,255,.08);
}

.ma-wc-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 45%, rgba(22,67,103,.45), transparent 34%);
  pointer-events: none;
}

.ma-wc-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.025) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, rgba(255,255,255,.018) 0 1px, transparent 1px 100%);
  background-size: 36px 36px;
  opacity: .16;
  pointer-events: none;
}

.ma-wc-container {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.ma-wc-grid {
  display: grid;
  grid-template-columns: 410px minmax(0, 1fr);
  align-items: center;
  gap: 84px;
}

.ma-wc-left {
  color: #fff;
}

.ma-wc-label {
  color: #c79945;
  font-family: Inter, Arial, sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.2px;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.ma-wc-heading {
  color: #fff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 42px;
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -.6px;
  margin: 0 0 24px;
}

.ma-wc-heading span {
  color: #e2ba62;
  display: inline;
}

.ma-wc-description {
  color: rgba(255,255,255,.82);
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75;
  max-width: 410px;
  margin: 0 0 34px;
}

.ma-wc-features {
  display: grid;
  gap: 25px;
}

.ma-wc-feature {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  align-items: start;
  gap: 17px;
}

.ma-wc-feature-icon {
  color: #c79945;
  font-size: 28px;
  line-height: 1;
  width: 40px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 2px;
}

.ma-wc-feature-icon svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.ma-wc-feature-title {
  color: #fff;
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 5px;
}

.ma-wc-feature-text {
  color: rgba(255,255,255,.78);
  font-family: Inter, Arial, sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.55;
}

.ma-wc-right {
  position: relative;
  padding-top: 0;
}

.ma-wc-image-wrap {
  height: 370px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
}

.ma-wc-image-wrap img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.ma-wc-testimonial-card {
  position: relative;
  width: 520px;
  margin-top: -104px;
  margin-left: 64px;
  background: #fff;
  border-radius: 9px;
  padding: 48px 58px 34px;
  box-shadow: 0 20px 46px rgba(0,0,0,.20);
  border: 1px solid rgba(7,31,52,.08);
  z-index: 3;
}

.ma-wc-testimonial-text {
  color: #1c2e40;
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.72;
  margin: 0 0 17px;
}

.ma-wc-testimonial-author {
  color: #102131;
  font-family: Inter, Arial, sans-serif;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 24px;
}

.ma-wc-dots {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ma-wc-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #d9d9d9;
  display: inline-block;
}

.ma-wc-dot.is-active {
  background: #c79945;
}

@media (max-width: 1024px) {
  .ma-wc-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }
  .ma-wc-left,
  .ma-wc-description {
    max-width: 100%;
  }
  .ma-wc-testimonial-card {
    margin-left: auto;
    margin-right: auto;
    width: min(520px, calc(100% - 32px));
  }
}

@media (max-width: 767px) {
  .ma-wc-container {
    width: min(100% - 30px, 1180px);
  }
  .ma-wc-heading {
    font-size: 35px;
  }
  .ma-wc-description {
    font-size: 15px;
  }
  .ma-wc-feature {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 13px;
  }
  .ma-wc-feature-icon {
    font-size: 24px;
    width: 34px;
  }
  .ma-wc-feature-icon svg {
    width: 24px;
    height: 24px;
  }
  .ma-wc-image-wrap {
    height: 275px;
  }
  .ma-wc-testimonial-card {
    margin-top: -56px;
    padding: 30px 26px 26px;
  }
}
