/* Public resource library. Kept page-specific to avoid stale shared CSS caches. */
.page-resources {
  background: #f6faf7;
}

.page-resources .public-page-hero {
  position: relative;
  min-height: 0;
  overflow: hidden;
  padding: 8.5rem 0 4.75rem;
  color: #fff;
  background:
    radial-gradient(circle at 82% 25%, rgba(246, 190, 72, 0.24), transparent 22rem),
    linear-gradient(125deg, #05351f 0%, #08743f 57%, #119054 100%);
}

.page-resources .public-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image:
    linear-gradient(30deg, transparent 49%, #fff 50%, transparent 51%),
    linear-gradient(150deg, transparent 49%, #fff 50%, transparent 51%);
  background-size: 70px 70px;
  pointer-events: none;
}

.resources-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
}

.resources-hero__copy {
  max-width: 780px;
}

.resources-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.2rem;
  padding: 0.55rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.page-resources .resources-hero__badge svg,
.page-resources .resources-list__download svg {
  display: block;
  width: 18px;
  height: 18px;
  min-width: 18px;
  min-height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.page-resources .public-page-hero__title {
  max-width: 780px;
  margin: 0 0 1rem;
  color: #fff;
  font-size: clamp(2.1rem, 4.2vw, 3.8rem);
  line-height: 1.1;
}

.page-resources .public-page-hero__title span {
  color: #ffd779;
}

.page-resources .public-page-hero__lead {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  line-height: 1.75;
}

.resources-hero__visual {
  position: relative;
  display: grid;
  place-items: center;
  width: 210px;
  height: 210px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.18);
}

.resources-hero__seal {
  display: grid;
  place-items: center;
  width: 126px;
  height: 126px;
  border-radius: 29px;
  color: #08743f;
  background: #fff;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.2);
  transform: rotate(-5deg);
}

.page-resources .resources-hero__seal svg {
  display: block;
  width: 62px;
  height: 62px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.resources-hero__check {
  position: absolute;
  right: 10px;
  bottom: 17px;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border: 5px solid #08743f;
  border-radius: 50%;
  color: #17301f;
  background: #f2b93b;
}

.page-resources .resources-hero__check svg {
  display: block;
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.page-resources .public-page-content {
  padding-top: 3.25rem;
  padding-bottom: 5rem;
}

.resources-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 1.75rem;
}

.resources-intro__eyebrow {
  margin: 0 0 0.35rem;
  color: #08743f;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.resources-intro__title {
  margin: 0;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
}

.resources-intro__text {
  margin: 0.45rem 0 0;
  color: #68736d;
}

.resources-summary {
  display: flex;
  flex-shrink: 0;
  gap: 0.6rem;
}

.resources-summary span {
  padding: 0.6rem 0.85rem;
  border: 1px solid #c7ded2;
  border-radius: 999px;
  color: #68736d;
  background: #fff;
  font-size: 0.78rem;
}

.resources-summary strong {
  color: #08743f;
}

.page-resources .resources-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.page-resources .resources-list__item {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  min-height: 112px;
  padding: 1.15rem;
  border: 1px solid #d5e5dc;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 5px 20px rgba(0, 58, 32, 0.04);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.page-resources .resources-list__item:hover {
  transform: translateY(-3px);
  border-color: #91c5aa;
  box-shadow: 0 16px 34px rgba(0, 58, 32, 0.1);
}

.resources-list__icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 15px;
  color: #08743f;
  background: #ecf8f1;
}

.page-resources .resources-list__icon svg {
  display: block;
  width: 27px;
  height: 27px;
  max-width: 27px;
  max-height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.resources-list__body {
  min-width: 0;
}

.page-resources .resources-list__title {
  margin: 0 0 0.45rem;
  overflow-wrap: anywhere;
  font-size: 0.98rem;
  line-height: 1.35;
}

.page-resources .resources-list__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.45rem;
  color: #748078;
  font-size: 0.72rem;
}

.page-resources .resources-list__type {
  color: #08743f;
  font-weight: 700;
}

.page-resources .resources-list__meta span + span::before {
  content: "\2022";
  margin-right: 0.45rem;
  color: #a7b3ac;
}

.page-resources .resources-list__download {
  min-width: 0;
  padding: 10px 13px;
  gap: 0.4rem;
  font-size: 0.76rem;
  box-shadow: 0 7px 16px rgba(8, 116, 63, 0.16);
}

@media (max-width: 1120px) {
  .page-resources .resources-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-resources .public-page-hero {
    padding: 7rem 0 3.5rem;
  }

  .resources-hero__inner {
    grid-template-columns: 1fr;
  }

  .resources-hero__visual {
    display: none;
  }

  .page-resources .public-page-hero__title br {
    display: none;
  }

  .resources-intro {
    align-items: flex-start;
    flex-direction: column;
    gap: 1.1rem;
  }
}

@media (max-width: 560px) {
  .page-resources .public-page-hero {
    padding-bottom: 3rem;
  }

  .page-resources .public-page-hero__title {
    font-size: 2rem;
  }

  .resources-summary {
    width: 100%;
  }

  .resources-summary span {
    flex: 1;
    text-align: center;
  }

  .page-resources .resources-list__item {
    grid-template-columns: 46px minmax(0, 1fr);
    min-height: 0;
  }

  .resources-list__icon {
    width: 46px;
    height: 46px;
  }

  .page-resources .resources-list__download {
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 0.15rem;
    padding: 11px 16px;
  }
}
