/* Her Voice Section Styles - Updated to match Figma design */
/* CSS Variables for colors and backgrounds */
:root {
  /* Primary colors */
  --v4g-primary-purple: #702c91;
  --v4g-primary-yellow: #ffcd41;
  /* Background colors */
  --v4g-bg-light-yellow: #fff2cf;
  --v4g-bg-cream: #fff8e4;
  --v4g-bg-medium-yellow: #ffe8a9;
  --v4g-bg-bright-yellow: #ffdd7c;
  --v4g-bg-light-purple: #f2e6f7;
  /* Text colors */
  --v4g-text-dark: #333;
  --v4g-text-purple: var(--v4g-primary-purple);
  /* Border colors */
  --v4g-border-yellow: #ffd663;
  /* Stats circle colors */
  --v4g-stats-circle: rgba(255, 221, 124, 0.64);
  --primary-text-color: var(--primary-text-color, var(--v4g-text-purple));
}

.her-voice-section {
  position: relative;
  overflow: hidden;
  /* Header section */
  /* Image wrapper */
  /* Statistics section */
  /* Styles for the Success Stories Section */
}
.her-voice-section .her-voice-section-wrapper {
  background-color: var(--bg-color, var(--v4g-bg-light-yellow));
  position: relative;
  overflow: hidden;
  padding: 2rem 3rem 0;
}
@media (max-width: 900px) {
  .her-voice-section .her-voice-section-wrapper {
    padding: 2rem 1rem 0;
  }
}
.her-voice-section .container {
  position: relative;
  z-index: 2;
}
.her-voice-section .her-voice-content {
  display: grid;
  grid-template-columns: 35% 1fr;
  align-items: center;
}
@media (max-width: 900px) {
  .her-voice-section .her-voice-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.her-voice-section .her-voice-header {
  max-width: 771px; /* From Figma */
}
.her-voice-section .her-voice-header .title {
  font-family: "Majoris", "Rubik", sans-serif;
  font-weight: 600;
  font-size: 1.75rem; /* 28px */
  line-height: 1.596em; /* From Figma */
  color: var(--primary-text-color, var(--v4g-text-purple));
  margin-bottom: 1.3rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.her-voice-section .her-voice-header .description {
  font-family: "Rubik", sans-serif;
  font-weight: 400;
  font-size: 1.5rem; /* 24px */
  line-height: 1.417em; /* From Figma 34/24 */
  color: var(--primary-text-color, var(--v4g-text-purple));
  margin-bottom: 0;
}
.her-voice-section .beneficiary {
  color: var(--primary-text-color, var(--v4g-text-purple));
}
.her-voice-section .her-voice-image-wrapper {
  position: relative;
}
.her-voice-section .her-voice-image-wrapper .main-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.her-voice-section .her-voice-image-wrapper .circle-image-container {
  position: absolute;
  right: -4rem;
  top: -5rem;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  background-color: var(--v4g-bg-cream);
  border: 14px solid var(--v4g-bg-cream);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.her-voice-section .her-voice-image-wrapper .circle-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.her-voice-section .her-voice-image-wrapper .path-stroke {
  position: absolute;
  bottom: -2rem;
  left: 10%;
  opacity: 0.11;
  z-index: 1;
}
.her-voice-section .statistics-section {
  margin-top: 2.5rem; /* Reach box */
  margin-bottom: 2.5rem; /* Reach box */
  /* Modules section */
  /* Impact section */
}
.her-voice-section .statistics-section .reach-box {
  background-color: transparent;
  text-align: center;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 60% 40%;
}
.her-voice-section .statistics-section .reach-box > div:nth-child(2) {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  flex-direction: column;
  background: var(--stats-bg, #ffe8a9);
}
@media (max-width: 900px) {
  .her-voice-section .statistics-section .reach-box {
    grid-template-columns: 1fr;
  }
  .her-voice-section .statistics-section .reach-box > div:nth-child(2) {
    order: -1;
  }
}
.her-voice-section .statistics-section .reach-box .reach-icon {
  width: auto;
  height: auto;
}
.her-voice-section .statistics-section .reach-box .reach-title {
  font-family: "Rubik", sans-serif;
  font-weight: 700;
  font-size: 1.125rem; /* 18px */
  line-height: 1.185em; /* From Figma */
  text-align: center;
  color: var(--primary-text-color, var(--v4g-text-purple));
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}
.her-voice-section .statistics-section .reach-box .reach-number {
  font-family: "Rubik", sans-serif;
  font-weight: 600;
  font-size: 4.161rem; /* 34.575px from Figma */
  line-height: 1.62em;
  text-align: center;
  color: var(--primary-text-color, var(--v4g-text-purple));
}
.her-voice-section .statistics-section .modules-section {
  margin-top: 6.5rem;
}
.her-voice-section .statistics-section .modules-section .modules-title {
  font-family: "Rubik", sans-serif;
  font-weight: 700;
  font-size: 1.23rem; /* 19.7px from Figma */
  line-height: 1.18em;
  color: var(--primary-text-color, var(--v4g-text-purple));
  margin-bottom: 2.625rem; /* 42px */
}
.her-voice-section .statistics-section .modules-section .modules-content {
  background-color: var(--modules-bg-color, #fff2cf);
  display: grid;
  grid-template-columns: repeat(var(--modules-count, 3), 1fr);
  align-items: center;
  padding-block: 2rem;
  grid-template-rows: 1fr auto;
}
@media (max-width: 900px) {
  .her-voice-section .statistics-section .modules-section .modules-content {
    display: flex;
    flex-direction: column;
    padding-block: 0rem;
  }
}
.her-voice-section .statistics-section .modules-section .modules-content .module-item {
  padding: 1rem 2.5rem;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: 1/-1;
}
.her-voice-section .statistics-section .modules-section .modules-content .module-item:last-child {
  margin-bottom: 0;
}
.her-voice-section .statistics-section .modules-section .modules-content .module-item:nth-child(2) {
  border-left: 2px solid var(--stats-bg, rgba(255, 242, 207, 0.57));
}
@media (max-width: 900px) {
  .her-voice-section .statistics-section .modules-section .modules-content .module-item {
    padding: 2rem 2rem;
    border-left: none !important;
  }
  .her-voice-section .statistics-section .modules-section .modules-content .module-item:nth-child(2) {
    border-top: 1px solid var(--stats-bg, rgba(255, 242, 207, 0.57));
  }
}
.her-voice-section .statistics-section .modules-section .modules-content .module-item .module-header .module-title {
  font-family: "Majoris", sans-serif;
  font-weight: 400;
  font-size: 1.75rem; /* 28px */
  line-height: 1.002em; /* From Figma */
  text-transform: uppercase;
  color: var(--module-color, #702c91);
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}
.her-voice-section .statistics-section .modules-section .modules-content .module-item .module-header .module-subtitle {
  display: inline-block;
}
.her-voice-section .statistics-section .modules-section .modules-content .module-item .module-header .module-subtitle span {
  font-family: "Rubik", sans-serif;
  font-weight: 600;
  font-size: 1.25rem; /* 20px */
  line-height: 1.185em; /* From Figma */
  color: var(--primary-text-color, var(--v4g-text-purple));
}
.her-voice-section .statistics-section .modules-section .modules-content .module-item .module-description {
  font-family: "Rubik", sans-serif;
  font-weight: 400;
  font-size: 1.375rem; /* 22px */
  line-height: 1.355em; /* From Figma */
  color: var(--module-color, #702c91);
  max-width: 95%;
}
.her-voice-section .statistics-section .modules-section .modules-content .module-divider {
  height: 2px;
  background-color: rgba(255, 242, 207, 0.55);
  margin: 2rem 0;
}
.her-voice-section .statistics-section .impact-section {
  margin-top: 3.5rem;
  margin-bottom: 3.5rem;
}
.her-voice-section .statistics-section .impact-section .impact-container {
  background-color: var(--v4g-bg-cream);
  padding: 0.5rem 2.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 0;
  column-gap: 5rem;
}
.her-voice-section .statistics-section .impact-section .impact-container > div:nth-child(1), .her-voice-section .statistics-section .impact-section .impact-container > div:nth-child(2) {
  border-bottom: 1px solid var(--divider-bg, #ffd663);
}
@media (max-width: 900px) {
  .her-voice-section .statistics-section .impact-section .impact-container {
    grid-template-columns: 1fr;
  }
  .her-voice-section .statistics-section .impact-section .impact-container > div:nth-child(3) {
    border-bottom: 1px solid var(--divider-bg, #ffd663);
  }
}
.her-voice-section .statistics-section .impact-section .impact-container .impact-row {
  align-items: center;
}
.her-voice-section .statistics-section .impact-section .impact-container .impact-row:last-child {
  margin-bottom: 0;
}
.her-voice-section .statistics-section .impact-section .impact-container .impact-row .impact-stat {
  position: relative;
  width: 100%;
  text-align: center;
  padding: 1rem 0rem;
}
.her-voice-section .statistics-section .impact-section .impact-container .impact-row .impact-stat > div:nth-child(1) {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  align-items: center;
  justify-items: center;
  width: 12.5rem;
  flex-shrink: 0;
}
.her-voice-section .statistics-section .impact-section .impact-container .impact-row .impact-stat > div:nth-child(1) > * {
  grid-column: 1/-1;
  grid-row: 1/-1;
}
.her-voice-section .statistics-section .impact-section .impact-container .impact-row .impact-stat .stat-circle {
  width: 9rem;
  height: 9rem;
  border-radius: 50%;
  background-color: var(--v4g-stats-circle);
  z-index: 1;
}
.her-voice-section .statistics-section .impact-section .impact-container .impact-row .impact-stat .stat-number {
  position: relative;
  font-family: "Rubik", sans-serif;
  font-weight: 500;
  font-size: 3.66rem; /* 58.5px from Figma */
  color: var(--primary-text-color, var(--v4g-text-purple));
  z-index: 2;
}
@media (max-width: 900px) {
  .her-voice-section .statistics-section .impact-section .impact-container .impact-row .impact-stat .stat-number {
    font-size: 2.5rem;
  }
}
.her-voice-section .statistics-section .impact-section .impact-container .impact-row .impact-stat .stat-description {
  position: relative;
  font-family: "Rubik", sans-serif;
  font-weight: 400;
  font-size: 1.1rem; /* 20px */
  line-height: 1.29em;
  text-transform: uppercase;
  color: var(--primary-text-color, var(--v4g-text-purple));
  z-index: 2;
  max-width: 300px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .her-voice-section .statistics-section .impact-section .impact-container .impact-row .impact-stat .stat-description {
    max-width: initial;
    margin: 0;
  }
}
.her-voice-section .statistics-section .impact-section .impact-container .impact-row .impact-stat .stat-vector {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 8rem;
  height: 8rem;
  z-index: 1;
}
.her-voice-section .stories-section {
  padding: 0;
}
.her-voice-section .story-card {
  display: flex;
  overflow: hidden;
  position: relative;
  background-color: var(--story-bg-color, #ffdd7c); /* Default to bright yellow if not set */
}
@media (max-width: 900px) {
  .her-voice-section .story-card {
    flex-direction: column !important;
    display: flex !important;
  }
}
.her-voice-section .story-separator {
  height: 2rem;
}
.her-voice-section .story-content {
  flex: 1;
  padding: 3rem;
  display: flex;
  justify-content: flex-start;
  gap: 0.5rem;
  align-self: center;
}
@media (max-width: 900px) {
  .her-voice-section .story-content {
    padding: 4rem 1rem;
  }
}
.her-voice-section .hand-icon {
  margin-bottom: 1rem;
}
.her-voice-section .story-title {
  color: var(--primary-text-color, var(--v4g-text-purple));
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.her-voice-section .story-text {
  color: var(--v4g-text-dark);
  font-size: 1.125rem;
  line-height: 1.6;
  max-width: 90%;
}
.her-voice-section .story-text p {
  margin-bottom: 0;
}
.her-voice-section .story-text .highlight {
  color: var(--primary-text-color, var(--v4g-text-purple));
  font-weight: 500;
}
.her-voice-section .story-text .bg-highlight {
  background-color: var(--highlight-color, #ffe8a9);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}
.her-voice-section .story-image {
  flex: 1;
  position: relative;
  min-height: 25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 900px) {
  .her-voice-section .story-image {
    min-height: 100%;
  }
}
.her-voice-section .story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.her-voice-section .circular-image {
  position: absolute;
  top: 50%;
  left: -55px;
  border-radius: 50%;
  border: 4px solid var(--v4g-bg-cream);
  z-index: 1;
  transform: translateY(-50%);
  width: 110px;
  height: 110px;
  overflow: hidden;
}
.her-voice-section .circular-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 900px) {
  .her-voice-section .circular-image {
    left: 50%;
    top: -55px;
    transform: translate(-50%, 0);
    width: 4rem;
    height: 4rem;
    top: -2rem;
  }
}

.programme-tab-content {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.programme-tab-content > div {
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}
.page-id-61 .program-circles > a:not(.circle-active) {
  opacity: 0.6;
}

/*# sourceMappingURL=her-voice.css.map */
