/* PB About Philosophy Block */

section.pb-about-philosophy {
  background-color: var(--color-dark-blue);
  background-image: var(--pb-about-philosophy-bg);
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  padding-block: 7.5rem;
  position: relative;
}

section.pb-about-philosophy .pb-about-philosophy-overlay {
  background:
    repeating-linear-gradient(0deg, transparent, transparent 29px, rgba(255, 255, 255, 0.025) 29px, rgba(255, 255, 255, 0.025) 30px),
    repeating-linear-gradient(90deg, transparent, transparent 29px, rgba(255, 255, 255, 0.025) 29px, rgba(255, 255, 255, 0.025) 30px),
    radial-gradient(ellipse at 0% 0%, rgba(235, 32, 76, 0.12) 0%, transparent 45%),
    radial-gradient(ellipse at 95% 90%, rgba(210, 192, 179, 0.1) 0%, transparent 38%),
    rgba(26, 27, 42, var(--pb-about-philosophy-overlay, 0.9));
  inset: 0;
  position: absolute;
}

section.pb-about-philosophy .pb-about-philosophy-inner {
  margin-inline: auto;
  max-width: 1400px;
  padding-inline: 1.25rem;
  position: relative;
  z-index: 1;
}

section.pb-about-philosophy .pb-about-philosophy-title {
  color: var(--color-white);
  font-family: var(--font-head);
  font-size: var(--typography-size-h1);
  font-weight: var(--typography-weight-bold);
  margin-block: 0 4rem;
  text-align: center;
  text-transform: uppercase;
}

section.pb-about-philosophy .pb-about-philosophy-quotes {
  align-items: start;
  display: grid;
  gap: 4rem;
  grid-template-columns: 1fr 1fr;
}

section.pb-about-philosophy .pb-about-quote {
  margin: 0;
  padding: 0;
}

section.pb-about-philosophy .pb-about-quote-mark {
  color: var(--color-beige);
  display: block;
  font-family: var(--font-head);
  font-size: 6rem;
  font-weight: var(--typography-weight-bold);
  line-height: 0.8;
  opacity: 0.4;
}

section.pb-about-philosophy .pb-about-quote-text {
  color: var(--color-beige);
  font-family: var(--font-head);
  font-size: var(--typography-size-h2);
  font-style: italic;
  font-weight: var(--typography-weight-semibold);
  line-height: 1.35;
  margin-block: 0 1rem;
}

section.pb-about-philosophy .pb-about-quote-body {
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font-body);
  font-size: var(--typography-size-h4);
  font-style: normal;
  font-weight: var(--typography-weight-regular);
  line-height: 1.75;
  margin-block: 0;
}

section.pb-about-philosophy .pb-about-quote-body p {
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font-body);
  font-size: var(--typography-size-h4);
  font-weight: var(--typography-weight-regular);
  line-height: 1.75;
  margin-block: 0 0.75rem;
}

section.pb-about-philosophy .pb-about-quote-body p:last-child {
  margin-block-end: 0;
}

section.pb-about-philosophy .pb-about-quote-body strong {
  color: rgba(255, 255, 255, 0.85);
  font-weight: var(--typography-weight-semibold);
}

section.pb-about-philosophy .pb-about-quote-body ul,
section.pb-about-philosophy .pb-about-quote-body ol {
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font-body);
  font-size: var(--typography-size-h4);
  font-weight: var(--typography-weight-regular);
  line-height: 1.75;
  margin-block: 0 0.75rem;
  padding-left: 1.25rem;
}

section.pb-about-philosophy .pb-about-quote-body li {
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font-body);
  font-size: var(--typography-size-h4);
  font-weight: var(--typography-weight-regular);
  line-height: 1.75;
  margin-block-end: 0;
}

section.pb-about-philosophy .pb-about-quote-body ul {
  list-style: none;
  padding-left: 1rem;
}

section.pb-about-philosophy .pb-about-quote-body ul li {
  padding-left: 1rem;
  position: relative;
}

section.pb-about-philosophy .pb-about-quote-body ul li::before {
  background-color: var(--color-red);
  content: '';
  height: 1.5px;
  left: 0;
  position: absolute;
  top: 0.65em;
  width: 0.6rem;
}

section.pb-about-philosophy .pb-about-quote-body ol {
  list-style: decimal;
}


@media (max-width: 768px) {
  section.pb-about-philosophy {
    background-attachment: scroll;
    padding-block: 5rem;
  }

  section.pb-about-philosophy .pb-about-philosophy-quotes {
    gap: 3rem;
    grid-template-columns: 1fr;
  }
}
