/* ============================================================
   PAGES-CONTENT.CSS — WordPress Page Content, Dropdowns
   ============================================================ */

/* ============================================
   PAGE-WP (WordPress-migrated content)
   ============================================ */
.page-wp {
  color: var(--color-text);
  font-size: 2.8rem;
}

.page-wp h1,
.page-wp h2,
.page-wp h3,
.page-wp h4,
.page-wp h5,
.page-wp h6 {
  margin-bottom: 55px;
  font-weight: 700;
  letter-spacing: -0.56px;
  padding-left: 4rem;
}

.page-wp h1 {
  font-size: 6.9rem;
}

.page-wp h1:not(:first-of-type) {
  margin-top: 50px;
}

.page-wp h2 {
  font-size: 5.3rem;
  margin-top: 30px;
  margin-bottom: 30px;
}

.page-wp h3 {
  font-size: 4.2rem;
  margin-top: 20px;
  margin-bottom: 20px;
}

.page-wp h4 {
  font-size: 3.3rem;
  margin-top: 10px;
  margin-bottom: 10px;
}

.page-wp h5 {
  font-size: 2.4rem;
  margin-top: 10px;
  margin-bottom: 10px;
}

.page-wp h6 {
  font-size: 1.5rem;
  margin-top: 10px;
  margin-bottom: 10px;
}

.page-wp .page-wp__pd {
  display: inline-block;
  width: 100%;
  padding-left: 4rem;
  line-height: 150%;
}

.page-wp ul {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin: 28px 0;
  padding-left: 4rem;
}

.page-wp ul li {
  list-style-type: disc;
}

.page-wp a {
  display: inline-block;
}

.page-wp a:visited,
.page-wp a,
.page-wp a:link {
  text-decoration: underline;
}

.page-wp:not(.page-180) a:visited,
.page-wp:not(.page-180) a,
.page-wp:not(.page-180) a:link {
  color: var(--color-accent);
}

div.page-180 a {
  text-decoration: none !important;
}


/* ============================================
   DROPDOWN / ACCORDION (Used in page-wp)
   ============================================ */
.dropdown-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: fit-content;
  cursor: pointer;
}

.dropdown-title::after {
  content: "";
  background-image: url(../img/icon-all/arrow-gray.svg);
  width: 32px;
  height: 32px;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  transform: rotate(180deg);
  transition: transform 300ms;
  margin-left: 20px;
}

.dropdown-list {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
  flex-direction: column;
  gap: 2.5rem 0;
}

.dropdown-list.active {
  max-height: 1000px;
  transition: max-height 0.5s ease;
}

.dropdown-item.active .dropdown-title::after {
  transform: rotate(0deg);
}


/* ============================================
   SECTION TITLE (shared)
   ============================================ */
.section__title {
  line-height: 100%;
}


/* ============================================
   WORDPRESS ALIGNMENT HELPERS
   ============================================ */
.alignleft {
  float: left;
  margin-right: 10px;
}

.alignright {
  float: right;
  margin-left: 10px;
}

.aligncenter {
  margin-left: auto;
  margin-right: auto;
  display: block;
}


/* ============================================
   UTILITY FONT SIZE CLASSES
   ============================================ */
.f16p {
  font-size: 16px;
}

.f18p {
  font-size: 18px;
}

.f20p {
  font-size: 20px;
}


/* ============================================
   PAGE-SPECIFIC OVERRIDES
   ============================================ */
.page-2287 .amoforms_iframe {
  float: right !important;
}
