/*
 * Partner Section Module
 * ========================================================================
 * Styles for the partner section with title and bullet points
 * Figma Design: Blue background with white and yellow text
 */

.partner-section {
  padding: 3.75rem 0;

  color: var(--bs-white);

  @media (max-width: 61.99875rem) {
    padding: 3.125rem 0;
  }
}

.partner-header {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.partner-title {
  font-size: 2.5rem;
  line-height: 3.4375rem;
  font-weight: 400;

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-size: 2.5rem;
    line-height: 3.4375rem;
    font-weight: 400;
    margin-bottom: 0;
  }

  p {
    margin-bottom: 0;
  }

  span {
    color: var(--bs-secondary);
  }

  .font-serif {
    font-size: 3.4375rem;
    line-height: 3.4375rem;
    font-weight: 400;
  }

  @media (max-width: 61.99875rem) {
    font-size: 2.125rem;
    line-height: 2.75rem;

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
      font-size: 2.125rem;
      line-height: 2.75rem;
    }

    .font-serif {
      font-size: 2.875rem;
      line-height: 2.75rem;
    }
  }
}

.partner-subtitle {
  font-size: 1.5rem;
  line-height: 2.125rem;
  font-weight: 400;
  margin-bottom: 0;
  color: var(--bs-white);
  p {
    margin-bottom: 0;
  }

  @media (max-width: 61.99875rem) {
    font-size: 1.25rem;
    line-height: 1.875rem;
  }
}

.partner-bullets {
  @media (max-width: 61.99875rem) {
    margin-top: 2.875rem;
  }
  ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    @media (max-width: 61.99875rem) {
      grid-template-columns: repeat(1, 1fr);
      gap: 2.5rem;
    }

    @media (max-width: 61.99875rem) {
      flex-direction: column;
      gap: 2.5rem;
    }

    li {
      flex: 1;
      font-size: 0.875rem;
      line-height: 1.5rem;
      font-weight: 400;
      color: var(--bs-white);
      margin: 0;
      padding: 0;
    }
  }
}
