.resources-hero {
  background: rgb(35, 6, 83);
  background: linear-gradient(154deg, rgb(45, 71, 160) 0%, rgb(84, 17, 132) 40%, rgb(35, 6, 83) 60%);
  display: flex;
  align-items: stretch;
  overflow: hidden;
  max-height: none;
}

.resources-hero__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 1.75rem;
  padding-right: 2.5rem;
  padding-bottom: 1.75rem;
  padding-left: max(1.25rem, (100vw - 1183px) / 2);
}
.resources-hero__text h1 {
  color: #F68D2D;
  margin-bottom: 0.5rem;
  margin-top: 0.3125rem;
  line-height: 1;
  letter-spacing: -0.019375rem;
  font-stretch: condensed;
  font-size: 52px;
}
@media (max-width: 600px) {
  .resources-hero__text h1 {
    font-size: 44px;
  }
}
.resources-hero__text h1::after {
  display: none;
}
.resources-hero__text p {
  color: #fff;
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
}

.resources-hero__img-wrap {
  flex: 0 0 40%;
  position: relative;
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
}
.resources-hero__img-wrap .resources-hero__img {
  display: block !important;
  position: static !important;
  top: auto !important;
  left: auto !important;
  width: 100% !important;
  height: 100% !important;
  transform: none !important;
  z-index: auto !important;
  max-width: none !important;
  object-fit: cover;
  object-position: right center;
}

.resources-hero__img-wrap .actor-pill {
  font-family: "Fira Sans", sans-serif;
  position: absolute;
  bottom: 14px;
  left: 26px;
  background-color: rgba(255, 255, 255, 0.85);
  color: black;
  font-size: 12px;
  font-style: italic;
  padding: 2px 10px;
  border-radius: 12px;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .resources-hero {
    flex-direction: column;
  }
  .resources-hero__text {
    padding: 1.5rem 1.25rem 3rem;
  }
  .resources-hero__img-wrap {
    flex: 0 0 auto;
  }
  .resources-hero__img-wrap .resources-hero__img {
    width: 100% !important;
    height: auto !important;
    max-height: 200px;
    object-position: center top;
  }
}
.resource-section {
  padding: 2.5rem 0 4rem;
}
@media (max-width: 600px) {
  .resource-section {
    font-size: 44px;
    padding: 4rem 0;
  }
}
.resource-section .max-content-width {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 639px) {
  .resource-section .max-content-width {
    padding: 0 1.25rem;
  }
}

.resource-list {
  display: flex;
  flex-direction: column;
  background-color: #FEFAEE;
}
.resource-list.top {
  border-radius: 32px 0 0 0;
}
.resource-list.bottom {
  border-radius: 32px 0;
}

.resource-item {
  display: flex;
  align-items: center;
  gap: 84px;
  padding: 60px 0;
  margin: 0 104px;
  border-bottom: 1px solid #ddd;
}
.resource-item.last {
  border-bottom: none;
}
@media (max-width: 900px) {
  .resource-item {
    flex-direction: column;
    gap: 42px;
    padding: 1.5rem 0;
    margin: 0 32px;
  }
}

.resource-item__img-wrap {
  flex: 0 0 330px;
  position: relative;
}
@media (max-width: 900px) {
  .resource-item__img-wrap {
    flex: 0 0 auto;
    width: 100%;
    max-width: 330px;
  }
}
.resource-item__img-wrap--video {
  cursor: pointer;
}
.resource-item__img-wrap--narrow {
  display: flex;
  justify-content: center;
}
.resource-item__img-wrap--narrow .resource-item__img {
  width: 200px;
}

.resource-item__img {
  display: block;
  width: 100%;
  filter: drop-shadow(0 0px 8px rgba(0, 0, 0, 0.25));
}
.resource-item__img.zig-zag {
  border-radius: 32px 0;
  padding: 0;
}

.resource-item__play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  pointer-events: none;
}

.resource-item__caption {
  display: block;
  font-size: 12px;
  font-style: italic;
  color: #555;
  margin-top: 5px;
}

.resource-item__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
}
@media (max-width: 900px) {
  .resource-item__content {
    align-items: center;
    text-align: center;
  }
}

.resource-item__title {
  color: #330072;
  font-family: "Fira Sans", sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
  margin: 0 0 0.25rem;
}
.resource-item__title::after {
  display: none !important;
}

.resource-item__desc {
  color: #333;
  font-size: 16px;
  line-height: 1.5;
  margin: 0 0 0.5rem;
}

.resource-item__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #330072;
  font-family: "Fira Sans", sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  margin-bottom: 0.4rem;
}
.resource-item__cta:hover, .resource-item__cta:visited {
  color: #330072;
}
.resource-item__cta .resource-item__cta-text {
  border-bottom: 2px solid #F68D2D;
  padding-bottom: 2px;
}

.hang-footnotes .footnote {
  position: relative;
  display: block;
  font-size: 13px;
  color: #333;
  line-height: 1.45;
  max-width: 44ch;
  margin: 0.75rem 0 0;
  text-align: left;
}
.hang-footnotes .symbol {
  position: absolute;
  right: calc(100% + 1px);
}

.resource-divider {
  border: none;
  border-top: 1px solid #ddd;
  margin: 0;
}

[role=dialog]:has(.resource-video-modal) > div {
  max-width: 860px !important;
  width: 92% !important;
}

.resource-video-modal {
  background: #000 !important;
  padding: 0 !important;
  border-radius: 4px !important;
  position: relative;
}
.resource-video-modal.modal button.modal-close {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(50%, -50%);
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #F68D2D;
  background-image: none !important;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.resource-video-modal.modal button.modal-close span[aria-hidden] {
  display: block;
  position: relative;
  width: 18px;
  height: 18px;
}
.resource-video-modal.modal button.modal-close span[aria-hidden]::before, .resource-video-modal.modal button.modal-close span[aria-hidden]::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: #330072;
}
.resource-video-modal.modal button.modal-close span[aria-hidden]::before {
  transform: translateY(-50%) rotate(45deg);
}
.resource-video-modal.modal button.modal-close span[aria-hidden]::after {
  transform: translateY(-50%) rotate(-45deg);
}

.resource-video-modal__ratio {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: 4px;
  overflow: hidden;
}
.resource-video-modal__ratio iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}