/* ============================================================
   HERO
   ------------------------------------------------------------
   Uma só medida, `--pd-hero-h`, manda na altura. Espaçamentos,
   tipografia e a frase de fundo derivam dela ou do tamanho do
   ecrã, por isso não há um ponto onde a composição parta.

   As duas regras `.pd-hero-motto` que existiam (uma a meio do
   ficheiro, outra no fim) foram fundidas numa só — antes a frase
   recebia `top: 90%` e `bottom: 4px` ao mesmo tempo.
   ============================================================ */

.pd-hero {
  /* A ALTURA, num sítio só.
     • calc(100svh - altura da barra) → a hero preenche exactamente o
       que sobra do ecrã. O --pd-header-h é publicado pelo header.js
       com a altura real medida; o 99px é a reserva se o JS não correr.
     • svh e não vh: no telemóvel o vh conta com a barra do browser
       escondida, e a hero ficava maior do que o ecrã.
     • O clamp põe chão e tecto: nunca esmagada num portátil baixo,
       nunca desmesurada num monitor alto. */
  --pd-hero-h: clamp(520px, calc(100svh - var(--pd-header-h, 99px)), 960px);

  position: relative;
  width: 100%;
  min-height: var(--pd-hero-h);
  overflow: hidden;
  background: #edf4e9;
}

.pd-hero * {
  box-sizing: border-box;
}

.pd-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.pd-hero-bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.pd-hero-content {
  position: relative;
  z-index: 3;
  min-height: var(--pd-hero-h);
  display: flex;
  align-items: center;

  /* Sem o padding-top de 96px. Aquele valor era exactamente a altura
     da barra antiga, que ficava por cima da hero — servia para o texto
     não passar por baixo dela. Agora a barra ocupa espaço próprio, e
     aquele padding só empurrava o conteúdo 48px abaixo do centro. */
  padding-top: clamp(24px, 4vh, 56px);
  padding-bottom: clamp(24px, 4vh, 56px);
}

.pd-hero-text {
  /* Largura em três andares: nunca abaixo de 320px (ilegível), nunca
     acima de 560px (linha longa de mais), e 48% no meio. */
  width: clamp(320px, 48%, 560px);
  max-width: 100%;
  padding-top: 0;
}

.pd-hero-text h1 {
  margin: 0 0 clamp(12px, 1.8vh, 20px);
  color: #ffffff;
  /* Cresce com a largura E com a altura: numa janela baixa e larga o
     título encolhe também, senão come o espaço dos botões. */
  font-size: clamp(32px, 2vw + 1.4vh + 0.6rem, 58px);
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: -1px;
}

.pd-divider {
  display: flex;
  width: 210px;
  max-width: 100%;
  align-items: center;
  gap: 12px;
  margin: clamp(16px, 2.4vh, 24px) 0 clamp(14px, 2.2vh, 22px);
  color: #ffffff;
}

.pd-divider span {
  flex: 1;
  height: 1px;
  background: #ffffff;
}

.pd-divider i {
  font-style: normal;
  font-size: 20px;
  line-height: 1;
}

.pd-hero-text p {
  margin: 0;
  max-width: 465px;
  color: #ffffff;
  font-size: clamp(15px, 0.6vw + 0.6rem, 18px);
  line-height: 1.6;
  font-weight: 400;
}

.pd-hero-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: clamp(18px, 3vh, 30px);
}

.pd-btn {
  min-width: 165px;
  height: 48px;
  padding: 0 21px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.25s ease;
}

.pd-btn-primary {
  background: #ffffff;
  color: #345b41;
  border: 1px solid #ffffff;
}

.pd-btn-outline {
  background: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
}

.pd-btn-primary:hover,
.pd-btn-primary:focus {
  background: #345b41;
  color: #ffffff;
  border-color: #ffffff;
}

.pd-btn-outline:hover,
.pd-btn-outline:focus {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  border-color: #ffffff;
}

.pd-btn:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 3px;
}

/* A frase de fundo — uma regra só, ancorada em baixo. */
.pd-hero-motto {
  position: absolute;
  right: 0;
  bottom: clamp(10px, 3.5vh, 44px);
  left: 0;
  top: auto;
  z-index: 4;
  margin: 0;
  padding: 0 clamp(20px, 4vw, 40px);
  color: rgba(255, 255, 255, 0.3);
  font-family: var(--pd-font-serif);
  font-size: clamp(34px, 5.2vw, 92px);
  font-style: italic;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 1px;
  text-align: center;
  white-space: nowrap;
  transform: none;
  pointer-events: none;
  user-select: none;
}

/* Ecrãs baixos (portátil pequeno, janela encolhida): abaixo dos 620px
   de altura o chão de 520px já não cabe, por isso tira-se. */
@media (min-width: 901px) and (max-height: 620px) {
  .pd-hero {
    --pd-hero-h: calc(100svh - var(--pd-header-h, 99px));
  }

  .pd-hero-motto {
    font-size: clamp(28px, 4vw, 54px);
  }
}

/* Tablet e telemóvel: faixa decorativa com imagem e frase, sem texto
   nem botões. A altura acompanha a largura em vez dos 330px fixos, para
   a imagem não ficar cortada de forma estranha entre um telemóvel
   estreito e um tablet largo. */
@media (max-width: 900px) {
  .pd-hero {
    --pd-hero-h: clamp(210px, 34vw + 60px, 400px);
    height: var(--pd-hero-h);
    min-height: 0;
  }

  .pd-hero-content {
    height: 100%;
    min-height: 0;
    padding: 0;
    align-items: center;
    justify-content: center;
  }

  .pd-hero-bg {
    background: #345b41;
  }

  .pd-hero-bg img {
    object-position: center center;
  }

  .pd-hero-text {
    width: 100%;
    max-width: none;
  }

  .pd-hero-text h1,
  .pd-hero-text p,
  .pd-divider,
  .pd-hero-buttons {
    display: none;
  }

  .pd-hero-motto {
    top: 50%;
    right: 0;
    bottom: auto;
    left: 0;
    padding: 0 20px;
    font-size: clamp(22px, 5.4vw, 44px);
    transform: translateY(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .pd-btn {
    transition: none;
  }
}

/* ============================================================
   A PARTIR DAQUI NADA FOI ALTERADO
   ============================================================ */

.pd-pregnancy {
  width: 100%;
  padding: 92px 0 96px;
  background: #fbfaf4;
  font-family: var(--pd-font-sans);
}

.pd-pregnancy *,
.pd-pregnancy *::before,
.pd-pregnancy *::after {
  box-sizing: border-box;
}

.pd-section-head {
  max-width: 650px;
  margin: 0 auto 50px;
  text-align: center;
}

.pd-section-head h2 {
  margin: 0;
  color: #263b31;
  font-family: var(--pd-font-serif);
  font-size: clamp(34px, 3.6vw, 48px);
  font-weight: 700;
  line-height: 1.1;
}

.pd-section-divider {
  display: flex;
  width: 190px;
  margin: 20px auto 18px;
  align-items: center;
  gap: 10px;
  color: #8c9f91;
}

.pd-section-divider span {
  flex: 1;
  height: 1px;
  background: #bfccb8;
}

.pd-section-divider i {
  font-size: 18px;
  font-style: normal;
  line-height: 1;
}

.pd-section-head p {
  max-width: 510px;
  margin: 0 auto;
  color: #5d6d62;
  font-size: 16px;
  line-height: 1.65;
}

.pd-pregnancy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pd-pregnancy-card {
  display: flex;
  min-height: 342px;
  padding: 36px 30px 32px;
  flex-direction: column;
  align-items: center;
  border: 1px solid #dde7d7;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(67, 86, 69, 0.06);
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pd-pregnancy-card:hover {
  box-shadow: 0 20px 40px rgba(67, 86, 69, 0.1);
  transform: translateY(-4px);
}

.pd-card-icon {
  display: flex;
  width: 110px;
  height: 110px;
  margin: 0 auto 24px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #eef4ea;
}

.pd-card-icon img {
  display: block;
  width: 68px;
  height: 68px;
  object-fit: contain;
}

.pd-pregnancy-card span {
  display: block;
  margin-bottom: 8px;
  color: #8a9c88;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.pd-pregnancy-card h3 {
  margin: 0 0 12px;
  color: #263b31;
  font-family: var(--pd-font-serif);
  font-size: 26px;
  font-weight: 500;
  line-height: 1.2;
}

.pd-pregnancy-card p {
  max-width: 275px;
  margin: 0;
  color: #617065;
  font-size: 15px;
  line-height: 1.65;
}

.pd-pregnancy-card a {
  margin-top: auto;
  padding-top: 22px;
  color: #2f4a3d;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.pd-pregnancy-card a:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .pd-pregnancy {
    padding: 74px 0 80px;
  }

  .pd-section-head {
    margin-bottom: 42px;
  }

  .pd-pregnancy-grid {
    grid-template-columns: 1fr;
  }

  .pd-pregnancy-card {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
  }
}

@media (max-width: 560px) {
  .pd-pregnancy {
    padding: 60px 0 64px;
  }

  .pd-section-head h2 {
    font-size: 34px;
  }

  .pd-section-head p {
    font-size: 16px;
  }

  .pd-section-divider {
    width: 180px;
  }

  .pd-pregnancy-card {
    min-height: 320px;
    padding: 32px 24px 28px;
  }
}

.pd-birth-plan {
  width: 100%;
  padding: 36px 0 70px;
  background: #fbfaf4;
  font-family: var(--pd-font-sans);
}

.pd-birth-plan * {
  box-sizing: border-box;
}

.pd-birth-plan-box {
  width: min(1220px, calc(100% - 80px));
  min-height: 350px;
  margin: 0 auto;
  padding: 50px 58px 42px;
  background: #efefe6;
  border-radius: 18px;
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 54px;
  align-items: center;
}

.pd-birth-left {
  padding-top: 8px;
}

.pd-birth-left h2 {
  margin: 0;
  font-family: var(--pd-font-serif);
  font-size: 30px;
  line-height: 1.1;
  font-weight: 600;
  color: var(--pd-color-green);
}

.pd-birth-divider {
  width: 178px;
  margin: 16px 0 22px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--pd-color-green);
}

.pd-birth-divider span {
  flex: 1;
  height: 1px;
  background: #7b918b;
}

.pd-birth-divider i {
  font-style: normal;
  font-size: 17px;
}

.pd-birth-left p {
  margin: 0 0 28px;
  max-width: 230px;
  color: var(--pd-color-green);
  font-size: 14px;
  line-height: 1.55;
  font-weight: 600;
}

.pd-birth-btn {
  width: 205px;
  height: 50px;
  border-radius: 7px;
  background: var(--pd-color-action);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 700;
}

.pd-birth-right {
  position: relative;
  min-width: 0;
}

.pd-help-card {
  width: 420px;
  min-height: 64px;
  margin: 0 auto 24px;
  padding: 13px 22px 13px 16px;
  border: 1px solid rgba(6, 73, 63, 0.09);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.22);
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: center;
}

.pd-help-icon {
  width: 34px;
  height: 34px;
  border: 2px solid var(--pd-color-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pd-color-green);
  font-size: 20px;
  line-height: 1;
}

.pd-help-icon img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  display: block;
}

.pd-help-card p {
  margin: 0;
  color: var(--pd-color-green);
  font-size: 12px;
  line-height: 1.45;
  font-weight: 700;
}

.pd-steps-row {
  display: grid;
  grid-template-columns: 1fr 58px 1fr 58px 1fr 58px 1fr;
  align-items: start;
}

.pd-step-item {
  position: relative;
  text-align: center;
  min-width: 0;
}

.pd-step-number {
  width: 28px;
  height: 28px;
  margin: 0 auto 23px;
  border-radius: 50%;
  background: var(--pd-color-action);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}

.pd-step-top {
  height: 51px;
  margin-left: 95px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
}

.pd-step-top .pd-step-number {
  margin: 0;
  flex: 0 0 28px;
}

.pd-step-top .pd-step-exclusive {
  margin-top: 2px;
  margin-left: 2px;
  padding: 6px 13px 5px;
  background: #f39b24;
  border-radius: 12px;
  color: #fff;
  font-size: 10px;
  line-height: 1;
  font-weight: 800;
  text-decoration: none;
}

.pd-step-circle {
  width: 92px;
  height: 92px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.34);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pd-step-circle img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  display: block;
}

.pd-step-item h3 {
  margin: 0 0 12px;
  color: var(--pd-color-green);
  font-family: var(--pd-font-serif);
  font-size: 19px;
  line-height: 1.1;
  font-weight: 700;
}

.pd-step-item p {
  margin: 0 auto;
  max-width: 138px;
  color: var(--pd-color-green);
  font-size: 11.5px;
  line-height: 1.55;
  font-weight: 600;
}

.pd-step-arrow {
  position: relative;
  height: 2px;
  margin-top: 105px;
  background-image: linear-gradient(to right, #54786f 45%, transparent 0%);
  background-size: 8px 2px;
  background-repeat: repeat-x;
}

.pd-step-arrow::after {
  content: "";
  position: absolute;
  right: -7px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid #54786f;
  border-right: 2px solid #54786f;
  transform: translateY(-50%) rotate(45deg);
}

/* Evita que o selo de apoio invada o passo seguinte em ecrãs médios. */
@media (min-width: 1051px) and (max-width: 1320px) {
  .pd-step-top {
    margin-left: 0;
  }
}

@media (max-width: 1050px) {
  .pd-birth-plan-box {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .pd-birth-left {
    text-align: center;
  }

  .pd-birth-divider {
    margin-left: auto;
    margin-right: auto;
  }

  .pd-birth-left p {
    margin-left: auto;
    margin-right: auto;
  }

  .pd-steps-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .pd-step-arrow {
    display: none;
  }
}

@media (max-width: 640px) {
  .pd-birth-plan {
    padding: 30px 0 56px;
  }

  .pd-birth-plan-box {
    width: calc(100% - 32px);
    padding: 38px 24px;
  }

  .pd-help-card {
    width: 100%;
  }
}

.pd-info-section {
  width: 100%;
  padding: 12px 0 58px;
  background: #fbfaf4;
  font-family: var(--pd-font-sans);
}

.pd-info-section * {
  box-sizing: border-box;
}

.pd-info-container {
  width: min(1180px, calc(100% - 80px));
  margin: 0 auto;
}

.pd-info-title {
  margin: 0 0 12px;
  text-align: center;
  font-family: var(--pd-font-serif);
  font-size: 30px;
  line-height: 1.1;
  font-weight: 700;
  color: var(--pd-color-green);
}

.pd-info-filters {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  margin-bottom: 26px;
}

.pd-info-filter {
  height: 27px;
  padding: 0 18px;
  border: 1px solid var(--pd-color-action);
  border-radius: 999px;
  background: transparent;
  color: var(--pd-color-action);
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
}

.pd-info-filter.pd-active,
.pd-info-filter:hover,
.pd-info-filter:focus,
.pd-info-filter:focus-visible,
.pd-info-filter:active {
  background: var(--pd-color-action);
  color: #ffffff;
  outline: none !important;
  box-shadow: none !important;
  border-color: var(--pd-color-action);
  appearance: none;
  -webkit-appearance: none;
}

.pd-info-carousel-wrap {
  position: relative;
  width: 100%;
}

.pd-info-carousel {
  overflow: hidden;
  width: calc(100% - 86px);
  margin: 0 auto;
}

.pd-info-track {
  display: flex;
  gap: 30px;
  transition: transform 0.45s ease;
}

.pd-info-card {
  flex: 0 0 calc((100% - 120px) / 5);
  background: #ffffff;
  border: 1px solid rgba(6, 73, 63, 0.12);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(6, 73, 63, 0.05);
}

.pd-info-card img {
  width: 100%;
  height: 96px;
  display: block;
  object-fit: cover;
}

.pd-info-card-body {
  min-height: 150px;
  padding: 13px 15px 16px;
  display: flex;
  flex-direction: column;
}

.pd-info-card-body span {
  display: block;
  margin-bottom: 9px;
  color: var(--pd-color-action);
  font-size: 9px;
  line-height: 1;
  font-weight: 800;
}

.pd-info-card-body h3 {
  margin: 0 0 15px;
  min-height: 58px;
  color: var(--pd-color-green);
  font-family: var(--pd-font-serif);
  font-size: 15px;
  line-height: 1.28;
  font-weight: 800;
}

.pd-info-card-body a {
  margin-top: auto;
  color: var(--pd-color-action);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.pd-info-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 42px;
  border: 0 !important;
  background: transparent !important;
  color: #7b918b !important;
  font-size: 42px;
  line-height: 1;
  font-weight: 300;
  cursor: pointer;
  z-index: 3;
  padding: 0;
  outline: none !important;
  box-shadow: none !important;
  appearance: none;
  -webkit-appearance: none;
}

.pd-info-arrow:hover,
.pd-info-arrow:focus,
.pd-info-arrow:focus-visible,
.pd-info-arrow:active {
  background: transparent !important;
  color: #7b918b !important;
  border: 0 !important;
  outline: none !important;
  box-shadow: none !important;
}

.pd-info-prev {
  left: 0;
}

.pd-info-next {
  right: 0;
}

.pd-info-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 13px;
  margin-top: 23px;
}

.pd-info-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  background: #d9d9d2;
  cursor: pointer;
  padding: 0;
}

.pd-info-dot.pd-active {
  background: var(--pd-color-action);
}

.pd-info-filter,
.pd-info-arrow,
.pd-info-dot {
  outline: none !important;
  box-shadow: none !important;
  -webkit-tap-highlight-color: transparent;
}

.pd-info-filter:hover,
.pd-info-filter:focus,
.pd-info-filter:focus-visible,
.pd-info-filter:active,
.pd-info-arrow:hover,
.pd-info-arrow:focus,
.pd-info-arrow:focus-visible,
.pd-info-arrow:active,
.pd-info-dot:hover,
.pd-info-dot:focus,
.pd-info-dot:focus-visible,
.pd-info-dot:active {
  outline: none !important;
  box-shadow: none !important;
}

@media (max-width: 1024px) {
  .pd-info-card {
    flex-basis: calc((100% - 60px) / 3);
  }
}

@media (max-width: 720px) {
  .pd-info-container {
    width: calc(100% - 34px);
  }

  .pd-info-carousel {
    width: calc(100% - 58px);
  }

  .pd-info-track {
    gap: 18px;
  }

  .pd-info-card {
    flex-basis: 100%;
  }

  .pd-info-arrow {
    font-size: 36px;
  }

  .pd-info-filters {
    flex-wrap: wrap;
  }
}

body.home {
  background: #fbfaf4;
}

.pd-inspire-section,
.pd-inspire-section *,
.pd-inspire-section *::before,
.pd-inspire-section *::after {
  box-sizing: border-box;
}

.pd-inspire-section {
  display: block;
  width: 100%;
  margin: 0;
  padding: 2px 0 42px;
  background: #fbfaf4;
  color: var(--pd-color-green);
  font-family: var(--pd-font-sans);
}

.pd-inspire-container {
  width: min(1050px, calc(100% - 80px));
  margin: 0 auto;
}

.pd-inspire-title {
  margin: 0 0 17px;
  color: var(--pd-color-green);
  font-family: var(--pd-font-serif);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
}

.pd-inspire-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.pd-inspire-card {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  min-width: 0;
  min-height: 108px;
  padding: 18px 22px 17px;
  align-items: center;
  gap: 18px;
  border: 1px solid rgba(6, 73, 63, 0.12);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 8px 20px rgba(6, 73, 63, 0.035);
}

.pd-inspire-icon {
  display: flex;
  width: 70px;
  height: 70px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #eeeade;
}

.pd-inspire-icon img {
  display: block;
  width: 39px;
  height: 39px;
  object-fit: contain;
}

.pd-inspire-content {
  min-width: 0;
}

.pd-inspire-content h3 {
  margin: 0 0 6px;
  color: var(--pd-color-green);
  font-family: var(--pd-font-serif);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.15;
}

.pd-inspire-content p {
  max-width: 190px;
  margin: 0 0 7px;
  color: var(--pd-color-green);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.45;
}

.pd-inspire-content a {
  color: var(--pd-color-action);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
}

.pd-inspire-content a:hover,
.pd-inspire-content a:focus-visible {
  color: var(--pd-color-green);
}

.pd-inspire-content a:focus-visible {
  outline: 2px solid rgba(6, 73, 63, 0.35);
  outline-offset: 3px;
}

@media (max-width: 900px) {
  .pd-inspire-section {
    margin: 0;
    padding: 2px 0 42px;
  }

  .pd-inspire-container {
    width: calc(100% - 40px);
    margin: 0 auto;
  }

  .pd-inspire-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .pd-inspire-section {
    padding-bottom: 32px;
  }

  .pd-inspire-title {
    font-size: 27px;
  }

  .pd-inspire-card {
    grid-template-columns: 70px minmax(0, 1fr);
    padding: 17px 18px;
    gap: 16px;
  }

  .pd-inspire-icon {
    width: 64px;
    height: 64px;
  }

  .pd-inspire-icon img {
    width: 36px;
    height: 36px;
  }

  .pd-inspire-content p {
    max-width: none;
  }
}

.pd-about-support {
  width: 100%;
  padding: 24px 0 22px;
  background: #f1eee6;
  font-family: var(--pd-font-sans);
}

.pd-about-support * {
  box-sizing: border-box;
}

.pd-about-support-container {
  width: min(1080px, calc(100% - 80px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 74px;
  align-items: center;
}

.pd-about-block {
  display: grid;
  grid-template-columns: 136px 1fr;
  gap: 24px;
  align-items: center;
}

.pd-about-photo {
  width: 136px;
  height: 136px;
  border-radius: 50%;
  overflow: hidden;
  background: #ddd;
  flex-shrink: 0;
}

.pd-about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(100%);
}

.pd-about-content h2 {
  margin: 0 0 11px;
  font-family: var(--pd-font-serif);
  font-size: 24px;
  line-height: 1.1;
  font-weight: 700;
  color: var(--pd-color-green);
}

.pd-about-content p {
  margin: 0 0 10px;
  color: var(--pd-color-green);
  font-size: 11.5px;
  line-height: 1.45;
  font-weight: 700;
}

.pd-about-content a {
  color: var(--pd-color-action);
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  text-decoration: none;
}

.pd-support-card {
  min-height: 132px;
  padding: 22px 22px 18px;
  background: rgba(255, 255, 255, 0.28);
  border: 1px solid rgba(6, 73, 63, 0.12);
  border-radius: 9px;
  box-shadow: 0 8px 20px rgba(6, 73, 63, 0.03);
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 18px;
  align-items: center;
}

.pd-support-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #eeeade;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pd-support-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: block;
}

.pd-support-content h3 {
  margin: 0 0 8px;
  font-family: var(--pd-font-serif);
  color: var(--pd-color-green);
  font-size: 19px;
  line-height: 1.15;
  font-weight: 700;
}

.pd-support-content p {
  margin: 0 0 13px;
  max-width: 340px;
  color: var(--pd-color-green);
  font-size: 11.5px;
  line-height: 1.45;
  font-weight: 700;
}

.pd-support-btn {
  width: 100%;
  height: 32px;
  border-radius: 6px;
  background: var(--pd-color-action);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  font-size: 12.5px;
  font-weight: 700;
}

.pd-support-btn img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  display: block;
}

@media (max-width: 900px) {
  .pd-about-support-container {
    width: calc(100% - 40px);
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 560px) {

  .pd-about-block,
  .pd-support-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .pd-about-photo,
  .pd-support-icon {
    margin: 0 auto;
  }
}