/* Font */
/* Images */
/* stylelint-disable-next-line wrap-rem-on-px/wrap-rem-on-px */
/* stylelint-disable wrap-rem-on-px/wrap-rem-on-px */
/* stylelint-enable wrap-rem-on-px/wrap-rem-on-px */
/*
USAGE:
font-size: fluid(12, 62); : from rem(12)@380px to  rem(62)@1440px
gap: fluid(10, 33, 992);  : from rem(10)@991px to  rem(33)@1440px
margin-right: fluid(32, 65, 320, 2560);  : from rem(32)@320px to  rem(65)@2560px
*/
/*
AUTOFILL

USAGE:
@include mixin.autofill(background-color, text-color);
@include mixin.autofill;

Note: Call this mixin in the wrapper or container to where you intend to manipulate the
      default chrome autofill styles for input, textarea and select elements.
*/
/* stylelint-disable */
/* stylelint-enable */
.section--ptk {
  background: var(--dark-beige);
  padding-bottom: 2.5rem;
}
.section--ptk .wrapper {
  width: 100%;
}
.section--ptk .container .cjp {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
@media screen and (min-width:768px) {
  .section--ptk .container .cjp {
    gap: 5rem;
  }
}
.section--ptk .container .cjp > header {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  padding: 2.5rem 1.5rem;
  text-align: center;
  background-color: var(--dark-blue);
  background-image: linear-gradient(0deg, var(--dark-blue-88), var(--dark-blue-88)), url(../../../assets/images/design/bg-blue.webp);
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
}
@media screen and (min-width:768px) {
  .section--ptk .container .cjp > header {
    gap: 0;
    padding: 4.4375rem 1.25rem;
  }
}
.section--ptk .container .cjp > header h1 {
  margin: 0;
  color: var(--white);
  font-family: "Adelle", serif;
  font-style: normal;
  font-weight: 700;
  line-height: 1.1;
  font-size: 2.5rem;
}
@media screen and (min-width:768px) {
  .section--ptk .container .cjp > header h1 {
    font-size: 4.6875rem;
  }
}
.section--ptk .container .cjp > header p {
  color: var(--white);
  text-align: center;
  font-family: "Adelle", serif;
  font-style: normal;
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.2;
  letter-spacing: normal;
}
@media screen and (min-width:768px) {
  .section--ptk .container .cjp > header p {
    font-size: 1.75rem;
  }
}
.section--ptk .container .cjp .wrapper .ptk__sections {
  display: flex;
  flex-direction: column;
  gap: 3.75rem;
}
.section--ptk .container .cjp .wrapper .ptk__sections .ptk__section {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}
@media screen and (min-width:991px) {
  .section--ptk .container .cjp .wrapper .ptk__sections .ptk__section {
    grid-template-columns: minmax(10rem, 17.5rem) 1fr;
    gap: 2rem 1.5rem;
  }
}
.section--ptk .container .cjp .wrapper .ptk__sections .ptk__section > header {
  margin: 0;
}
.section--ptk .container .cjp .wrapper .ptk__sections .ptk__section > header h2 {
  margin: 0;
  color: var(--dark-blue);
  font-family: "Adelle", serif;
  font-style: normal;
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.2;
}
@media screen and (min-width:991px) {
  .section--ptk .container .cjp .wrapper .ptk__sections .ptk__section > header h2 {
    font-size: 2.5rem;
  }
}
.section--ptk .container .cjp .wrapper .ptk__sections .ptk__section > header p {
  margin: 0.25rem 0 0;
  color: var(--dark-blue);
  font-family: "Adelle", serif;
  font-style: normal;
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.2;
}
@media screen and (min-width:991px) {
  .section--ptk .container .cjp .wrapper .ptk__sections .ptk__section > header p {
    font-size: 1.25rem;
  }
}
.section--ptk .container .cjp .wrapper .ptk__sections .ptk__section .ptk__accordions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media screen and (min-width:991px) {
  .section--ptk .container .cjp .wrapper .ptk__sections {
    gap: 5rem;
  }
  .section--ptk .container .cjp .wrapper .ptk__sections > .ptk__section > .ptk__accordions {
    gap: 1rem;
  }
}

/* Accordion rows (.tk-acc) — Figma: 12px radius, 20/24 padding. */
/* Default: CSS grid 0fr → 1fr (no JS / reduced motion). Enhanced: jQuery slide 300ms (same as tab-accordion inner). */
.tk-acc {
  display: grid;
  grid-template-rows: auto 0fr;
  row-gap: 0;
  margin: 0;
  border: 1px solid var(--white);
  padding: var(--space-20) var(--space-24);
  border-radius: 12px;
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 1px 3px var(--black-06);
  transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1), row-gap 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.4s ease, box-shadow 0.4s ease;
}
@media (prefers-reduced-motion: reduce) {
  .tk-acc {
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }
}
.tk-acc:hover {
  border-color: var(--orange-300);
}
.tk-acc[open] {
  row-gap: var(--space-20);
  border-color: var(--orange-300);
  box-shadow: none;
}
.tk-acc.tk-acc--enhanced {
  display: flex;
  flex-direction: column;
  /* Durations match js/toolkit-accordion.js SLIDE_MS (300ms). */
  transition: row-gap 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
@media (prefers-reduced-motion: reduce) {
  .tk-acc.tk-acc--enhanced {
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }
}
.tk-acc {
  /*
   * Closing: match fully-closed chrome immediately so removing [open] does not snap
   * border/shadow; row-gap animates to 0 in sync with jQuery slideUp (was instant before).
   */
}
.tk-acc.tk-acc--enhanced.tk-acc--closing {
  row-gap: 0;
  border-color: var(--white);
  box-shadow: 0 1px 3px var(--black-06);
}
.tk-acc > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-16);
  padding: 0;
  cursor: pointer;
  list-style: none;
}
.tk-acc > summary::-webkit-details-marker {
  display: none;
}
.tk-acc > summary .tk-acc__summary-heading {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.25rem 0.35rem;
  flex: 1;
  min-width: 0;
  margin: 0;
  font: inherit;
  font-weight: inherit;
  text-align: left;
}
.tk-acc > summary .tk-acc__summary-heading [lang=en] {
  font-family: "Adelle", serif;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--orange);
}
@media screen and (min-width:991px) {
  .tk-acc > summary .tk-acc__summary-heading [lang=en] {
    font-weight: 400;
    font-size: 1.5rem;
  }
}
.tk-acc > summary .tk-acc__summary-heading [lang=es] {
  font-family: "Adelle", serif;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--gray-40);
}
@media screen and (min-width:991px) {
  .tk-acc > summary .tk-acc__summary-heading [lang=es] {
    font-weight: 400;
    font-size: 1rem;
  }
}
.tk-acc > summary .tk-acc__summary-heading > span[aria-hidden=true] {
  font-family: "Adelle", serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.2;
  color: var(--orange);
}
.tk-acc > summary > span:last-of-type {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--orange);
  transition: transform 0.25s ease;
}
.tk-acc {
  /* Chevron follows intent: while closing, [open] is still true until JS finishes — exclude .tk-acc--closing */
}
.tk-acc[open]:not(.tk-acc--closing) > summary > span:last-of-type {
  transform: rotate(180deg);
}
@media screen and (max-width:767px) {
  .tk-acc > summary .tk-acc__summary-heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.125rem;
  }
  .tk-acc > summary .tk-acc__summary-heading > span[aria-hidden=true] {
    display: none;
  }
}
.tk-acc .tk-acc__panel {
  min-height: 0;
  overflow: hidden;
}
.tk-acc .tk-acc__panel .tk-acc__inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: var(--space-20);
}
@media screen and (min-width:768px) {
  .tk-acc .tk-acc__panel .tk-acc__inner:has(> :nth-child(2)) {
    flex-direction: row;
    align-items: flex-start;
    gap: var(--space-24);
  }
}
.tk-acc .tk-acc__panel .tk-acc__inner > .generic-minimal {
  flex: 1 1 auto;
  min-width: 0;
  font-family: "Roboto", sans-serif, "Open Sans", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--dark-gray);
}
.tk-acc .tk-acc__panel .tk-acc__inner .tk-acc__resources .tk-acc__resource-groups {
  display: flex;
  flex-direction: column;
  gap: var(--space-20);
}
.tk-acc .tk-acc__panel .tk-acc__inner .tk-acc__resources .tk-acc__resource-section {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: var(--space-16);
}
@media screen and (min-width:768px) {
  .tk-acc .tk-acc__panel .tk-acc__inner .tk-acc__resources .tk-acc__resource-section {
    flex-direction: row;
    align-items: flex-start;
    gap: var(--space-24);
  }
}
.tk-acc .tk-acc__panel .tk-acc__inner .tk-acc__resources .tk-acc__resource-section-main {
  flex: 1 1 auto;
  min-width: 0;
}
.tk-acc .tk-acc__panel .tk-acc__inner .tk-acc__resources .tk-acc__resource-section-media {
  flex-shrink: 0;
  align-self: flex-start;
}
.tk-acc .tk-acc__panel .tk-acc__inner .tk-acc__resources .tk-acc__resource-group-title {
  font-family: "Roboto", sans-serif, "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.4;
  color: var(--dark-blue);
  margin: 0 0 var(--space-16);
}
.tk-acc .tk-acc__panel .tk-acc__inner .tk-acc__resources .tk-acc__resource-group-title:not(:first-child) {
  margin-top: var(--space-20);
}
.tk-acc .tk-acc__panel .tk-acc__inner .tk-acc__resources .tk-acc__resource-list {
  list-style: disc outside;
  margin: 0;
  padding-left: var(--space-24);
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}
.tk-acc .tk-acc__panel .tk-acc__inner .tk-acc__resources .tk-acc__resource-item::marker {
  color: var(--dark-gray);
}
.tk-acc .tk-acc__panel .tk-acc__inner .tk-acc__resources .tk-acc__resource-link {
  font-family: "Roboto", sans-serif, "Open Sans", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--dark-gray);
  text-decoration: underline;
  font-weight: 400;
}
.tk-acc .tk-acc__panel .tk-acc__inner .tk-acc__resources .tk-acc__resource-link:hover, .tk-acc .tk-acc__panel .tk-acc__inner .tk-acc__resources .tk-acc__resource-link:focus-visible {
  text-decoration: none;
  color: var(--dark-blue);
}
.tk-acc .tk-acc__panel .tk-acc__inner .tk-acc__media {
  flex-shrink: 0;
  width: 100%;
  max-width: 180px;
  border-radius: 4px;
  overflow: hidden;
  align-self: flex-start;
}
.tk-acc .tk-acc__panel .tk-acc__inner .tk-acc__media:has(iframe) {
  position: relative;
  width: 180px;
  max-width: 180px;
  aspect-ratio: 16/9;
  background: var(--near-black);
}
.tk-acc .tk-acc__panel .tk-acc__inner .tk-acc__media iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.tk-acc .tk-acc__panel .tk-acc__inner .tk-acc__media--video {
  width: 180px;
  max-width: 180px;
  background: var(--near-black);
}
.tk-acc .tk-acc__panel .tk-acc__inner .tk-acc__media video {
  display: block;
  width: 100%;
  height: auto;
}
.tk-acc .tk-acc__panel .tk-acc__inner .tk-acc__media--image img {
  display: block;
  width: 180px;
  height: 180px;
  max-width: 100%;
  object-fit: cover;
  border-radius: 4px;
}
@media screen and (max-width:767px) {
  .tk-acc .tk-acc__panel .tk-acc__inner .tk-acc__media {
    max-width: 100%;
  }
  .tk-acc .tk-acc__panel .tk-acc__inner .tk-acc__media:has(iframe) {
    width: 100%;
    max-width: 180px;
  }
  .tk-acc .tk-acc__panel .tk-acc__inner .tk-acc__media--image img {
    width: 100%;
    max-width: 180px;
    height: auto;
    aspect-ratio: 1;
    min-height: unset;
  }
}

.section--ptk .tk-acc .tk-acc__inner > .generic-minimal h3,
.section--ptk .tk-acc .tk-acc__inner > .generic-minimal p strong {
  font-family: "Roboto", sans-serif, "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.4;
  color: var(--dark-blue);
  margin: 0 0 var(--space-16);
}
.section--ptk .tk-acc .tk-acc__inner > .generic-minimal h3:not(:first-child),
.section--ptk .tk-acc .tk-acc__inner > .generic-minimal p strong:not(:first-child) {
  margin-top: var(--space-20);
}
.section--ptk .tk-acc .tk-acc__inner > .generic-minimal p {
  margin: 0 0 var(--space-16);
}
.section--ptk .tk-acc .tk-acc__inner > .generic-minimal a,
.section--ptk .tk-acc .tk-acc__inner > .generic-minimal li,
.section--ptk .tk-acc .tk-acc__inner > .generic-minimal p,
.section--ptk .tk-acc .tk-acc__inner > .generic-minimal .tk-acc__resource-link {
  color: var(--dark-gray);
  font-family: "Roboto", sans-serif, "Open Sans", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
.section--ptk .tk-acc .tk-acc__inner > .generic-minimal a:hover,
.section--ptk .tk-acc .tk-acc__inner > .generic-minimal li:hover,
.section--ptk .tk-acc .tk-acc__inner > .generic-minimal p:hover,
.section--ptk .tk-acc .tk-acc__inner > .generic-minimal .tk-acc__resource-link:hover {
  color: var(--dark-blue);
}
.section--ptk .tk-acc .tk-acc__inner > .generic-minimal a {
  text-decoration: underline;
  cursor: pointer;
}
.section--ptk .tk-acc .tk-acc__inner > .generic-minimal:not(.tk-acc__resources) ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: var(--space-24);
}
.section--ptk .tk-acc .tk-acc__inner > .generic-minimal:not(.tk-acc__resources) ul:not(:last-child) {
  margin-bottom: var(--space-16);
}
.section--ptk .tk-acc .tk-acc__inner > .generic-minimal:not(.tk-acc__resources) li {
  list-style: disc outside;
}
.section--ptk .tk-acc .tk-acc__inner > .generic-minimal:not(.tk-acc__resources) li::marker {
  color: var(--dark-gray);
  width: 0.3125rem;
  font-size: 0.6875rem;
}

/*# sourceMappingURL=promotional-toolkit.css.map */
