:root {
  --color-bg: #151515;
  --color-surface: #1f1f1f;
  --color-surface-2: #292929;
  --color-light: #151515;
  --color-light-2: #202020;
  --color-card: #262626;
  --color-card-hover: #303030;
  --color-text: #ffffff;
  --color-text-dark: #1b1b1b;
  --color-muted: #d1d1d1;
  --color-gold: #fdbb20;
  --color-gold-dark: #9f7410;
  --color-focus: #ffffff;
  --content-max: 72rem;
  --radius: 0.75rem;
  --shadow: 0 0.5rem 1.5rem rgb(0 0 0 / 0.22);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--color-focus);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.5rem;
  left: 0.5rem;
  transform: translateY(-200%);
  padding: 0.75rem 1rem;
  background: #ffffff;
  color: #000000;
  text-decoration: none;
  border-radius: 0.35rem;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgb(17 17 17 / 0.97);
  border-bottom: 1px solid rgb(255 255 255 / 0.12);
  backdrop-filter: blur(8px);
}

.site-header__inner {
  width: min(calc(100% - 2rem), var(--content-max));
  min-height: 4.25rem;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-brand {
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  letter-spacing: 0.01em;
  white-space: nowrap;
  color: #ffffff;
}

.primary-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.primary-nav a {
  display: block;
  padding: 0.7rem 0.65rem;
  text-decoration: none;
  border-radius: 0.4rem;
  color: #ffffff;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  background: #292929;
  color: var(--color-gold);
}

.menu-toggle {
  display: none;
  min-height: 44px;
  min-width: 44px;
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--color-gold);
  border-radius: 0.4rem;
  color: var(--color-text);
  background: transparent;
  font: inherit;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: clamp(20rem, 44vw, 31rem);
  display: grid;
  align-items: end;
  background:
    linear-gradient(
      to top,
      rgb(0 0 0 / 0.88),
      rgb(0 0 0 / 0.28) 50%,
      rgb(0 0 0 / 0.08) 78%
    ),
    url("images/slide/image037.jpg") center / cover no-repeat;
  border-bottom: 4px solid var(--color-gold);
}

.hero__inner {
  width: min(calc(100% - 2rem), var(--content-max));
  margin-inline: auto;
  padding: 3.25rem 0 2.75rem;
}

.hero h1 {
  max-width: 19ch;
  margin: 0;
  color: #ffffff;
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: clamp(3rem, 7vw, 5.75rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.01em;
  text-shadow:
    0 3px 4px rgb(0 0 0 / 0.85),
    0 5px 14px rgb(0 0 0 / 0.55);
}
.hero p {
  margin: 0.85rem 0 0;
  color: #ffffff;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 600;
  text-shadow: 0 2px 8px rgb(0 0 0 / 0.6);
}

.page-section {
  width: min(calc(100% - 2rem), var(--content-max));
  margin-inline: auto;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
}

.page-section h2 {
  margin-top: 0;
  color: var(--color-gold);
  font-size: clamp(1.75rem, 3vw, 2.4rem);
}

.quick-links {
  background:
    linear-gradient(
      180deg,
      var(--color-light) 0%,
      var(--color-light-2) 100%
    );
  color: var(--color-text);
  border-top: 1px solid rgb(255 255 255 / 0.08);
  border-bottom: 1px solid rgb(255 255 255 / 0.08);
}

.quick-links .page-section {
  padding-top: clamp(2.25rem, 5vw, 4rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

.quick-links h2 {
  position: relative;
  margin-bottom: 1.4rem;
  padding-bottom: 0.55rem;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.quick-links__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.quick-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 5.75rem;
  padding: 1rem;
  border: 1px solid #3b3b3b;
  border-top: 4px solid var(--color-gold);
  border-radius: var(--radius);
  background: var(--color-card);
  color: var(--color-text);
  text-align: center;
  text-decoration: none;
  font-weight: 750;
  box-shadow: 0 0.2rem 0.65rem rgb(0 0 0 / 0.12);
  transition:
    transform 120ms ease,
    box-shadow 120ms ease,
    background 120ms ease;
}

.quick-link:hover,
.quick-link:focus-visible {
  background: var(--color-card-hover);
  border-color: var(--color-gold);
  color: var(--color-gold);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.content-panel {
  background: var(--color-surface);
}

.content-card {
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border-radius: var(--radius);
  background: var(--color-surface-2);
  box-shadow: var(--shadow);
}

.content-card a {
  color: var(--color-gold);
}

.site-footer {
  border-top: 1px solid rgb(255 255 255 / 0.12);
  background: #090909;
}

.site-footer__inner {
  width: min(calc(100% - 2rem), var(--content-max));
  margin-inline: auto;
  padding: 2rem 0;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1rem;
}

.footer-nav a {
  color: var(--color-gold);
}

.site-footer p {
  text-align: center;
}

@media (max-width: 64rem) {
  .primary-nav a {
    padding-inline: 0.5rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 54rem) {
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .primary-nav {
    display: none;
    position: absolute;
    inset: 100% 0 auto;
    background: #111111;
    padding: 0.75rem 1rem 1rem;
    border-bottom: 1px solid rgb(255 255 255 / 0.12);
  }

  .primary-nav[data-open="true"] {
    display: block;
  }

  .primary-nav ul {
    width: min(100%, var(--content-max));
    margin-inline: auto;
    display: grid;
    gap: 0.25rem;
  }

  .primary-nav a {
    min-height: 44px;
    padding: 0.75rem;
  }

  .quick-links__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 36rem) {
  .park-subnav {
    top: 3.75rem;
  }

  .site-header__inner {
    min-height: 3.75rem;
  }

  .site-brand {
    font-size: 1rem;
  }

  .hero {
    min-height: 23rem;
    background-position: 43% center;
  }

  .hero__inner {
    padding: 2.25rem 0 2rem;
  }

  .hero h1 {
    max-width: 12ch;
    font-size: clamp(2.8rem, 13vw, 4rem);
    line-height: 0.95;
  }

  .hero p {
    max-width: 20rem;
    font-size: 1rem;
  }

  .quick-links__grid {
    grid-template-columns: 1fr;
  }

  .quick-link {
    min-height: 4.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .quick-link {
    transition: none;
  }
}
/* -----------------------------------------
   Welcome and county information
   ----------------------------------------- */

.welcome-section {
  background: #101010;
  border-top: 1px solid rgb(255 255 255 / 0.07);
  border-bottom: 1px solid rgb(255 255 255 / 0.07);
}

.welcome-section .page-section {
  padding-top: clamp(2.5rem, 5vw, 4rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

.welcome-section h2,
.county-info h2 {
  position: relative;
  margin-bottom: 1.35rem;
  padding-bottom: 0.55rem;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.welcome-section h2::after,
.county-info h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 3.25rem;
  height: 2px;
  background: var(--color-gold);
}

.welcome-copy {
  max-width: 70rem;
  margin: 0;
  color: #ffffff;
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  line-height: 1.75;
}

.county-info a {
  color: var(--color-gold);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

.county-info a:hover,
.county-info a:focus-visible {
  color: #ffffff;
}

.county-info {
  background: #000000;
}

.county-info__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.35fr) minmax(0, 0.9fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}

.county-info__item {
  min-width: 0;
}

.county-info__item + .county-info__item {
  border-left: 1px solid rgb(253 187 32 / 0.28);
  padding-left: clamp(1.5rem, 3vw, 2.5rem);
}

.county-info h2 {
  font-size: clamp(1.6rem, 2.5vw, 2rem);
}

.county-info h3 {
  margin-top: 1.75rem;
  color: var(--color-gold);
  font-size: 1.05rem;
}

.county-info p,
.county-info li,
.contact-list {
  color: #ffffff;
}

.mission-section ul {
  margin: 1rem 0 0;
  padding-left: 1.25rem;
}

.mission-section li + li {
  margin-top: 0.75rem;
}

.gallery-link {
  display: inline-block;
  margin-bottom: 1rem;
  font-weight: 700;
}

.gallery-preview {
  width: 100%;
  max-width: 19rem;
  height: auto;
  border: 1px solid rgb(253 187 32 / 0.45);
  box-shadow: 0 0.5rem 1.5rem rgb(0 0 0 / 0.4);
}

.contact-list {
  margin: 0;
}

.contact-list > div {
  display: grid;
  grid-template-columns: 6.25rem minmax(0, 1fr);
  gap: 0.75rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgb(255 255 255 / 0.08);
}

.contact-list dt {
  font-weight: 750;
  color: var(--color-gold);
}

.contact-list dd {
  margin: 0;
}

@media (max-width: 54rem) {
  .county-info__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .county-info__item + .county-info__item {
    border-left: 0;
    border-top: 1px solid rgb(253 187 32 / 0.28);
    padding-left: 0;
    padding-top: 2.5rem;
  }

  .gallery-preview {
    max-width: 22rem;
  }
}

@media (max-width: 36rem) {
  .park-subnav {
    top: 3.75rem;
  }

  .welcome-section .page-section,
  .county-info .page-section {
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
  }

  .welcome-copy {
    line-height: 1.65;
  }

  .contact-list > div {
    grid-template-columns: 1fr;
    gap: 0.15rem;
  }

  .gallery-preview {
    max-width: 100%;
  }
}
/* HOMEPAGE NEWS CARDS */

.welcome-section h2::after {
  display: none;
}
.home-news__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.home-news-card {
  padding: 1rem 1.1rem;
  border-top: 2px solid var(--color-gold);
  background: #171717;
}

.home-news-card__title {
  margin: 0 0 0.45rem;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
  line-height: 1.3;
}

.home-news-card__subtitle {
  margin: 0.35rem 0;
  color: var(--color-gold);
  font-weight: 700;
}

.home-news-card__body {
  margin: 0.6rem 0;
  color: #ffffff;
  font-size: 0.95rem;
  line-height: 1.55;
}

.home-news-card__link,
.home-news__all a {
  color: var(--color-gold);
  font-weight: 700;
  text-underline-offset: 0.2em;
}

.home-news-card__link:hover,
.home-news-card__link:focus-visible,
.home-news__all a:hover,
.home-news__all a:focus-visible {
  color: #ffffff;
}

.home-news__all {
  margin: 1rem 0 0;
}

.home-news__empty,
.home-news__error {
  margin: 0;
  color: #ffffff;
}

@media (max-width: 54rem) {
  .home-news__list {
    grid-template-columns: 1fr;
  }
}

/* News matches news.html */

.home-news__list {
  width: min(100%, 56rem);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.home-news-card {
  padding: 0.9rem 1rem;
  background: #282828;
  text-align: center;
  border-radius: 0.75rem;
}

.home-news-card__title {
  margin: 0 0 0.5rem;
  color: #FDBB20;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  font-weight: 700;
  text-align: center;
}

.home-news-card__subtitle {
  margin: 0.35rem 0 0.75rem;
  color: #ffffff;
  font-weight: 700;
  text-align: center;
}

.home-news-card__body {
  color: #ffffff;
  line-height: 1.5;
  text-align: center;
}

.home-news-card__link {
  display: block;
  margin-top: 0.7rem;
  color: #FDBB20;
  font-weight: 700;
}

/* Employment matches employment.html */

.home-employment__list {
  width: min(100%, 52rem);
  margin-inline: auto;
}

.home-employment-card {
  margin-bottom: 1rem;
  padding: 1rem 1.25rem;
  box-sizing: border-box;
  border-radius: 12px;
  background: #282828;
  text-align: center;
}

.home-employment-card__title {
  margin: 0 0 0.5rem;
  color: #FDBB20;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
}

.home-employment-card__department,
.home-employment-card__detail {
  margin: 0.35rem 0;
  color: #ffffff;
}

.home-employment-card__deadline {
  margin: 0.6rem 0;
  color: #FDBB20;
  font-weight: 700;
}

.home-employment-card__link {
  color: #FDBB20;
  font-weight: 700;
}

.home-employment__empty {
  margin: 0;
  padding: 1rem;
  background: #000000;
  color: #FDBB20;
  text-align: center;
}

@media (max-width: 54rem) {
  .home-actions__inner {
    grid-template-columns: 1fr;
  }.home-news__list {
    grid-template-columns: 1fr;
    max-width: 32rem;
  }

  .home-employment__list {
    max-width: 32rem;
  }
}

@media (max-width: 36rem) {
  .park-subnav {
    top: 3.75rem;
  }
.home-action__panel {
    padding: 1rem 0;
  }

  .home-news-card,
  .home-employment-card {
  margin-bottom: 1rem;
  padding: 1rem 1.25rem;
  box-sizing: border-box;
  border-radius: 12px;
  background: #282828;
  text-align: center;
}
}

/* TABBED COUNTY INFO STRIP */

.home-actions__inner {
  width: min(calc(100% - 2rem), var(--content-max));
  margin-inline: auto;
  display: block;
}

.home-actions__tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-left: 1px solid rgb(255 255 255 / 0.12);
}

.home-action__tab {
  min-height: 5rem;
  padding: 0.8rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  border: 0;
  border-right: 1px solid rgb(255 255 255 / 0.12);
  border-bottom: 3px solid transparent;
  background: #000000;
  color: #ffffff;
  text-align: center;
  cursor: pointer;
}

.home-action__tab[aria-expanded="true"] {
  background: #171717;
  border-bottom-color: #FDBB20;
}

.home-action__tab:hover {
  background: #111111;
}

.home-action__tab:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: -3px;
}

.home-action__tab .home-action__label {
  color: #FDBB20;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  font-weight: 700;
}

.home-action__tab .home-action__status {
  color: #ffffff;
  font-size: 0.9rem;
}

.home-actions__panels {
  width: 100%;
}

.home-action__panel {
  width: 100%;
  padding: 1.5rem 1rem;
  background: #000000;
  border-top: 1px solid rgb(255 255 255 / 0.08);
}

.home-agenda__content {
  width: min(100%, 42rem);
  margin-inline: auto;
  text-align: center;
}

.home-agenda__content h2 {
  margin-top: 0;
  color: #FDBB20;
  font-family: Georgia, "Times New Roman", serif;
}

.home-agenda__content p {
  color: #ffffff;
}

.home-agenda__download {
  display: inline-block;
  min-height: 2.75rem;
  padding: 0.7rem 1rem;
  border: 1px solid #FDBB20;
  color: #FDBB20;
  font-weight: 700;
  text-decoration: none;
}

.home-agenda__download:hover,
.home-agenda__download:focus-visible {
  background: #FDBB20;
  color: #000000;
}

@media (max-width: 36rem) {
  .park-subnav {
    top: 3.75rem;
  }

  .home-actions__inner {
    width: 100%;
  }

  .home-action__tab {
    min-height: 5.25rem;
    padding: 0.55rem 0.35rem;
  }

  .home-action__tab .home-action__label {
    font-size: 0.95rem;
  }

  .home-action__tab .home-action__status {
    font-size: 0.75rem;
  }

  .home-action__panel {
    padding-inline: 0.75rem;
  }
}

/* FINAL HOMEPAGE SIMPLIFICATION */

/* Header typography matches the rest of the site */
.site-brand,
.primary-nav a,
.menu-toggle {
  font-family: Georgia, "Times New Roman", serif;
}

.site-brand {
  font-weight: 700;
}

.primary-nav a {
  font-size: 1rem;
  font-weight: 600;
}

/* Mission feature */
.mission-feature {
  background: #000000;
  color: #ffffff;
  border-top: 1px solid rgb(255 255 255 / 0.08);
  padding-block: clamp(2.5rem, 6vw, 5rem);
}

.mission-feature__inner {
  max-width: 70rem;
}

.mission-feature__statement {
  max-width: 54rem;
  margin-inline: auto;
  text-align: center;
}

.mission-feature__statement h2 {
  margin: 0 0 1rem;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 500;
}

.mission-feature__statement h2::after {
  content: "";
  display: block;
  width: min(8rem, 35%);
  height: 2px;
  margin: 0.75rem auto 0;
  background: #FDBB20;
}

.mission-feature__statement p {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.7;
}

.mission-feature__principles {
  margin-top: clamp(2.5rem, 5vw, 4rem);
}

.mission-feature__principles h3 {
  margin: 0 0 1.5rem;
  color: #FDBB20;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 700;
  text-align: center;
}

.mission-feature__principles ul {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 2rem;
  list-style: none;
}

.mission-feature__principles li {
  position: relative;
  padding: 0.9rem 0 0.9rem 1.5rem;
  color: #ffffff;
  line-height: 1.55;
  border-top: 1px solid rgb(255 255 255 / 0.12);
}

.mission-feature__principles li::before {
  content: "\2022";
  position: absolute;
  left: 0;
  color: #FDBB20;
  font-size: 1.35rem;
  line-height: 1.1;
}

/* Footer becomes useful contact information instead of repeated nav */
.site-footer {
  background: #000000;
  border-top: 1px solid #FDBB20;
  color: #ffffff;
}

.site-footer__inner {
  width: min(calc(100% - 2rem), var(--content-max));
  margin-inline: auto;
  padding-block: 1.75rem;
  text-align: center;
}

.site-footer__contact {
  display: flex;
  justify-content: center;
  gap: clamp(2rem, 8vw, 6rem);
  align-items: flex-start;
}

.site-footer__contact p {
  margin: 0;
  line-height: 1.6;
}

.site-footer__contact strong {
  color: #FDBB20;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
}

.site-footer a {
  color: #FDBB20;
  text-underline-offset: 0.2em;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: #ffffff;
}

.site-footer__eeo {
  margin: 1.5rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid rgb(255 255 255 / 0.1);
  font-size: 0.9rem;
}

@media (max-width: 54rem) {
  .mission-feature__principles ul {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 36rem) {
  .park-subnav {
    top: 3.75rem;
  }

  .site-footer__contact {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .mission-feature {
    padding-block: 2.5rem;
  }
}

/* CENTER PRIMARY NAV LABELS */
.primary-nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* COUNTY INFORMATION PAGE */

.county-information-page {
  background: #000000;
  color: #ffffff;
  min-height: 60vh;
}

.county-information-intro {
  padding-block: clamp(2rem, 5vw, 3.75rem);
  text-align: center;
  border-bottom: 1px solid rgb(255 255 255 / 0.12);
}

.county-information-intro .page-section {
  max-width: 60rem;
}

.county-information-intro h1 {
  margin: 0;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 500;
  line-height: 1.1;
}

.county-information-intro h1::after {
  content: "";
  display: block;
  width: 7rem;
  height: 2px;
  margin: 0.9rem auto 0;
  background: #FDBB20;
}

.county-information-intro p {
  max-width: 44rem;
  margin: 1rem auto 0;
  line-height: 1.6;
}

.county-information-section {
  padding-block: clamp(2rem, 5vw, 4rem);
}

.county-information-content {
  width: min(calc(100% - 2rem), 64rem);
  margin-inline: auto;
  font-size: 110%;
  color: #ffffff;
}

.county-information-content .rcorners {
  width: 100% !important;
  max-width: 100%;
  box-sizing: border-box;
  overflow-wrap: anywhere;
}

.county-information-content a {
  overflow-wrap: anywhere;
}

.county-information-content table {
  max-width: 100%;
}

.county-information-content .tblholschd {
  width: 100%;
  border-collapse: collapse;
}

.county-information-content .tblholschd td {
  padding: 0.35rem 0.45rem;
  vertical-align: top;
}

.county-information-content sup {
  line-height: 0;
}

@media (max-width: 48rem) {
  .county-information-content {
    width: min(calc(100% - 1.5rem), 64rem);
    font-size: 1rem;
  }

  .county-information-content .rcorners {
    margin-top: 1rem !important;
    padding-inline: 0.75rem !important;
  }

  .county-information-content ul {
    margin-left: 0 !important;
    padding-left: 1.5rem;
  }

  .county-information-content p {
    margin-left: 0 !important;
  }

  .county-information-content .tblholschd {
    font-size: 0.92rem;
  }
}

@media (max-width: 26rem) {
  .county-information-content {
    width: calc(100% - 1rem);
  }

  .county-information-content .tblholschd {
    font-size: 0.84rem;
  }

  .county-information-content .tblholschd td {
    padding: 0.3rem 0.2rem;
  }
}

/* NEWS PAGE ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â PROTECTED ORIGINAL PRESENTATION + RESPONSIVE GRID */

.news-page.content {
  margin-top: 0;
  background: #000000;
}

.news-page {
  font: normal 12px/1.5em Arial, Helvetica, sans-serif;
  color: #ffffff;
}

.news-page .content_resize {
  width: min(calc(100% - 2rem), 76rem);
  max-width: 76rem;
  margin-inline: auto;
  padding-top: 0.75rem;
}

.news-page .mainbar {
  width: 100%;
  float: none;
  margin: 0 0 0.6rem;
}

.news-page .mainbar h2 {
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 8px;
  font-family: "Times New Roman", Times, serif;
  font-size: 30px;
  font-weight: normal;
  line-height: 1.2em;
  text-align: left;
  color: #ffffff;
  border-bottom: 1px solid #BEBEBE;
}

.news-page .news-columns,
.news-page .news-left {
  width: 100%;
  max-width: none;
  float: none;
  margin: 0;
  padding: 0;
}

.news-page #news-announcements {
  display: block;
  column-count: 3;
  column-gap: 1rem;
}

.news-page #news-announcements .rcorners.news-card {
  width: auto !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 12px;
  box-sizing: border-box;
  border-radius: 12px;
  background: #282828;
  text-align: center;
  height: auto;
  display: inline-block;
  width: 100%;
  break-inside: avoid;
  vertical-align: top;
}
.news-page #news-announcements .news-card-link:last-child {
  margin-top: auto;
  padding-top: 0.75rem;
}
.news-page #news-announcements .news-card-title {
  margin: 8px 0;
  font-weight: bold;
  font-size: 150%;
  line-height: 1.2;
  text-transform: uppercase;
  color: #FDBB20;
}

.news-page #news-announcements .news-card-subtitle {
  margin: 8px 0 14px;
  font-weight: bold;
  font-size: 115%;
  color: #FFF;
}

.news-page #news-announcements .news-card-body {
  margin: 8px 0;
  padding: 0 0 8px;
  font-size: 100%;
  line-height: 1.45;
  text-align: left;
  color: #FFF;
}

.news-page #news-announcements .news-card-link {
  display: block;
  margin: 10px 0;
  font-weight: bold;
  color: #FDBB20;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.news-page #news-announcements .news-card-link:hover,
.news-page #news-announcements .news-card-link:focus-visible {
  text-decoration: underline;
}

.news-page #news-announcements .news-card-image {
  display: block;
  max-width: 219px;
  width: auto;
  height: auto;
  margin: 10px auto;
  border-radius: 12px;
}

.news-page #news-announcements a {
  color: #FDBB20;
  overflow-wrap: anywhere;
}

.news-page .content-load-error {
  padding: 12px;
  color: #FFF;
  background: #282828;
  border-radius: 12px;
}


/* LEGACY NEWS PRESENTATION PROFILES ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â SOURCE: newstest.html */

.news-page #news-announcements .news-card--bid-opening .news-card-title {
  font-size: 150%;
}

.news-page #news-announcements .news-card--bid-opening .news-card-body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 110%;
  font-weight: bold;
  text-align: left;
  color: #FFFFFF;
}

.news-page #news-announcements .news-card--bid-opening .news-card-link {
  font-size: 125%;
  font-weight: bold;
  color: #ff0000;
}

.news-page #news-announcements .news-card--budget-hearing .news-card-title {
  font-size: 150%;
}

.news-page #news-announcements .news-card--budget-hearing .news-card-subtitle,
.news-page #news-announcements .news-card--budget-hearing .news-card-body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 110%;
  font-weight: bold;
  text-align: center;
  color: #FFFFFF;
}

.news-page #news-announcements .news-card--campground-rates .news-card-title,
.news-page #news-announcements .news-card--campground-rates .news-card-subtitle {
  font-size: 150%;
  line-height: 1.35;
  font-weight: bold;
  color: #FDBB20;
  text-transform: uppercase;
}

.news-page #news-announcements .news-card--pfas-april-2024 .news-card-title {
  font-size: 180%;
  line-height: 1.3;
}

.news-page #news-announcements .news-card--pfas-april-2024 .news-card-subtitle {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 175%;
  font-weight: bold;
  line-height: 1.3;
  color: #FFFFFF;
}

.news-page #news-announcements .news-card--pfas-april-2024 .news-card-link {
  font-size: 125%;
  font-weight: bold;
  color: #ff0000;
}

.news-page #news-announcements .news-card--pfas-water-statement .news-card-title {
  font-size: 180%;
}

.news-page #news-announcements .news-card--pink-can .news-card-title {
  font-size: 125%;
  text-transform: none;
}

.news-page #news-announcements .news-card--pink-can .news-card-body {
  text-align: left;
}

.news-page #news-announcements .news-card--pink-can .legacy-pink {
  font-weight: bold;
  color: pink;
}

.news-page #news-announcements .news-card--shoals-chamber .news-card-title,
.news-page #news-announcements .news-card--simple-legacy .news-card-title {
  text-transform: none;
}

@media (max-width: 58rem) {
  .news-page #news-announcements {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 38rem) {
  .news-page .content_resize {
    width: calc(100% - 1rem);
    padding-top: 0.5rem;
  }

  .news-page #news-announcements {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}
/* County Information desktop grid */
.county-information-content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-items: start;
}

@media (max-width: 54rem) {
  .county-information-content {
    grid-template-columns: 1fr;
  }
}

/* MASONRY CONTENT LAYOUTS */

.county-information-content {
  display: block;
  column-count: 2;
  column-gap: 1rem;
}

.county-information-content .rcorners {
  display: inline-block;
  width: 100%;
  margin: 0 0 1rem;
  break-inside: avoid;
  vertical-align: top;
}

/* Tighten County Information intro to match interior pages */
.county-information-intro {
  min-height: 0;
}

.county-information-intro .page-section {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

@media (max-width: 58rem) {
  .news-page #news-announcements {
    column-count: 2;
  }
}

@media (max-width: 54rem) {
  .county-information-content {
    column-count: 1;
  }
}

@media (max-width: 38rem) {
  .news-page #news-announcements {
    column-count: 1;
  }
}
/* FINAL POLISH ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â NEWS + COUNTY INFORMATION */

.news-page #news-announcements {
  column-gap: 1.25rem;
}

.news-page #news-announcements .rcorners.news-card {
  margin: 0 0 1.25rem;
}

.county-information-intro {
  min-height: 0;
}

.county-information-intro .page-section {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.county-information-section {
  padding-top: 0.75rem;
}

.county-information-content {
  column-gap: 1.25rem;
}

.county-information-content .rcorners {
  border-radius: 12px;
  overflow: hidden;
  margin: 0 0 1.25rem;
}
.news-page #news-announcements .rcorners.news-card {
  margin: 0 0 1.25rem !important;
}
/* FINAL INTERIOR PAGE SPACING */

.county-information-intro .page-section {
  padding-top: 1.25rem;
  padding-bottom: 0.75rem;
  text-align: left;
  border-bottom: 1px solid rgb(255 255 255 / 0.35);
}

.county-information-intro h1 {
  margin: 0 0 0.35rem;
  font-size: 2rem;
  font-weight: 400;
}

.county-information-intro p {
  margin: 0 0 0.75rem;
}

.county-information-section {
  padding-top: 0.75rem;
}

.county-information-content .rcorners {
  margin-top: 0 !important;
  margin-bottom: 1.25rem !important;
  border-radius: 12px;
  overflow: hidden;
}

.news-page #news-announcements .rcorners.news-card {
  margin: 0 0 1.5rem !important;
}
.news-page #news-announcements {
  column-count: 3;
  column-gap: 1.5rem;
}

.news-page #news-announcements .rcorners.news-card {
  display: block;
  width: 100% !important;
  max-width: none !important;
  box-sizing: border-box;
  margin: 0 0 1.5rem !important;
  break-inside: avoid;
}
.county-information-content {
  column-count: 2;
  column-gap: 1.25rem;
}

.county-information-content .rcorners {
  display: block;
  width: 100%;
  box-sizing: border-box;
  margin: 0 0 1.25rem !important;
  break-inside: avoid;
}
.county-information-intro .page-section {
  padding-top: 1.25rem;
  padding-bottom: 0;
  text-align: left;
  border-bottom: 1px solid rgb(255 255 255 / 0.35);
}

.county-information-intro h1 {
  margin: 0 0 0.5rem;
  font-size: 2rem;
  font-weight: 400;
}

.county-information-intro p {
  margin: 0 0 0.75rem;
}

.county-information-section {
  padding-top: 0.75rem;
}
/* MATCH COUNTY INFORMATION HEADING TO NEWS PAGE */

.county-information-intro {
  min-height: 0;
  padding-block: 0;
  border: 0;
}

.county-information-intro .page-section {
  width: min(calc(100% - 2rem), var(--content-max));
  max-width: none;
  margin-inline: auto;
  padding: 0.75rem 0 0.75rem;
  border-bottom: 1px solid rgb(255 255 255 / 0.35);
}

.county-information-intro h1 {
  margin: 0;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.2;
}

.county-information-intro h1::after {
  content: none;
}

.county-information-intro p {
  margin: 0.4rem 0 0;
  color: #ffffff;
  font-size: 1rem;
}

.county-information-section {
  width: min(calc(100% - 2rem), var(--content-max));
  margin-inline: auto;
  padding: 0.75rem 0 2rem;
}
/* COUNTY INFORMATION ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â MATCH NEWS PAGE RHYTHM */

.county-information-intro {
  padding-block: 0;
  text-align: left;
  border-bottom: 0;
}

.county-information-intro .page-section {
  width: min(calc(100% - 2rem), var(--content-max));
  max-width: none;
  margin-inline: auto;
  padding: 0.75rem 0 0.75rem;
  border-bottom: 1px solid rgb(255 255 255 / 0.35);
}

.county-information-intro h1 {
  margin: 0;
  font-size: 2rem;
  line-height: 1.2;
}

.county-information-intro p {
  max-width: none;
  margin: 0.4rem 0 0;
}

.county-information-section {
  width: min(calc(100% - 2rem), var(--content-max));
  margin-inline: auto;
  padding: 0 0 2rem;
}

.county-information-content {
  width: 100%;
  margin-inline: 0;
}
/* COUNTY INFORMATION ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â USE NEWS PAGE HEADING GEOMETRY */

.county-information-page .content_resize {
  width: min(calc(100% - 2rem), 76rem);
  max-width: 76rem;
  margin-inline: auto;
  padding-top: 0.75rem;
}

.county-information-page .mainbar {
  width: 100%;
  margin: 0;
}

.county-information-page .mainbar h2 {
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 8px;
  font-family: "Times New Roman", Times, serif;
  font-size: 30px;
  font-weight: normal;
  line-height: 1.2em;
  text-align: left;
  color: #ffffff;
  border-bottom: 1px solid #BEBEBE;
}

.county-information-heading > p {
  margin: 0.4rem 0 0;
  color: #ffffff;
  font-size: 1rem;
}

/* COUNTY INFORMATION ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â MATCH NEWS DIVIDER-TO-CARD GAP */
.county-information-section {
  margin-top: -1.25rem;
}

/* EMPLOYMENT PAGE */

.employment-page {
  background: #000000;
  color: #ffffff;
  min-height: 60vh;
}

.employment-page .content_resize {
  width: min(calc(100% - 2rem), 76rem);
  max-width: 76rem;
  margin-inline: auto;
  padding-top: 0.75rem;
}

.employment-page .mainbar {
  width: 100%;
  float: none;
  margin: 0;
}

.employment-page .mainbar h2 {
  margin: 0;
  padding-bottom: 8px;
  font-family: "Times New Roman", Times, serif;
  font-size: 30px;
  font-weight: normal;
  line-height: 1.2em;
  text-align: left;
  color: #ffffff;
  border-bottom: 1px solid #BEBEBE;
}

.employment-page #employment-accepting,
.employment-page #employment-none {
  margin: 0.6rem 0 1rem;
  padding: 1rem 1.25rem;
  border-radius: 12px;
  background: #282828;
  box-sizing: border-box;
}

.employment-page #employment-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 0.6rem;
}

.employment-card {
  width: 100%;
  padding: 1rem 1.25rem;
  box-sizing: border-box;
  border-radius: 12px;
  background: #282828;
}

.employment-card ul {
  margin: 0;
  padding-left: 1.5rem;
}

.employment-card li {
  margin-bottom: 0 !important;
}

.employment-page.content {
  margin-top: 0;
}
/* DEPARTMENTS PAGE */

.departments-page.content {
  margin-top: 0;
  background: #000000;
}

.departments-page {
  color: #ffffff;
}

.departments-page .content_resize {
  width: min(calc(100% - 2rem), 76rem);
  max-width: 76rem;
  margin-inline: auto;
  padding-top: 0.75rem;
}

.departments-page .mainbar {
  width: 100%;
  float: none;
  margin: 0 0 0.6rem;
}

.departments-page .mainbar h2 {
  margin: 0;
  padding-bottom: 8px;
  font-family: "Times New Roman", Times, serif;
  font-size: 30px;
  font-weight: normal;
  line-height: 1.2em;
  text-align: left;
  color: #ffffff;
  border-bottom: 1px solid #BEBEBE;
}

.departments-grid {
  column-count: 3;
  column-gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.department-card {
  display: inline-block;
  width: 100%;
  min-width: 0;
  margin: 0 0 1rem;
  padding: 1rem 1.25rem;
  box-sizing: border-box;
  border-radius: 12px;
  background: #282828;
  break-inside: avoid;
  vertical-align: top;
}

.department-card > a {
  display: block;
  font-size: 1rem;
  font-weight: 700;
}

.department-card--courts {
  grid-column: auto;
}

.department-card--courts h3 {
  margin: 0 0 0.75rem;
  color: #ffffff;
  font-size: 1.15rem;
}

.department-card--courts h4 {
  margin: 0 0 0.4rem;
  color: #ffffff;
}

.department-card--courts p {
  margin: 0 0 1rem;
}

.courts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.courts-grid ul {
  margin: 0;
  padding-left: 1.25rem;
}

@media (max-width: 800px) {
  .departments-grid {
    column-count: 2;
  }
}

@media (max-width: 560px) {
  .departments-grid {
    column-count: 1;
  }
}

  .department-card--courts {
    grid-column: auto;
  }

  .courts-grid {
    grid-template-columns: 1fr;
  }
}

/* COMMISSIONERS PAGE */

.commissioners-page.content {
  margin-top: 0;
  background: #000000;
}

.commissioners-page {
  color: #ffffff;
}

.commissioners-page .content_resize {
  width: min(calc(100% - 2rem), 76rem);
  max-width: 76rem;
  margin-inline: auto;
  padding-top: 0.75rem;
}

.commissioners-page .mainbar {
  width: 100%;
  float: none;
  margin: 0 0 0.6rem;
}

.commissioners-page .mainbar h2 {
  margin: 0;
  padding-bottom: 8px;
  font-family: "Times New Roman", Times, serif;
  font-size: 30px;
  font-weight: normal;
  line-height: 1.2em;
  text-align: left;
  color: #ffffff;
  border-bottom: 1px solid #BEBEBE;
}

.commissioners-section-title {
  margin: 1rem 0 0.75rem;
  color: #ffffff;
  font-size: 1.15rem;
}

.commissioners-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.commissioner-card {
  padding: 1rem 1.25rem;
  border-radius: 12px;
  background: #282828;
}

.commissioner-card h4 {
  margin: 0;
  color: #ffffff;
  font-size: 1.15rem;
}

.commissioner-card__district {
  margin: 0.15rem 0 0.9rem;
  color: #FDBB20;
  font-weight: 700;
}

.commissioner-card address {
  margin: 0 0 0.8rem;
  color: #ffffff;
  font-style: normal;
}

.commissioner-card p {
  margin: 0.4rem 0 0;
}

.commissioner-card a,
.commission-resource-card a {
  color: #FDBB20;
  text-underline-offset: 0.18em;
}

.commission-resources {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  align-items: start;
}

.commission-resource-card {
  padding: 1rem 1.25rem;
  border-radius: 12px;
  background: #282828;
}

.commission-resource-card h3 {
  margin: 0 0 0.75rem;
  color: #ffffff;
  font-size: 1.15rem;
}

.commission-resource-card p {
  margin: 0.5rem 0;
}

.commissioners-minutes-year {
  margin: 0 0 0.5rem !important;
  color: #ffffff;
  font-weight: 700;
}

.commissioners-minutes-list,
.commission-budget-list {
  margin: 0;
  padding-left: 1.25rem;
}

.commissioners-minutes-list li + li,
.commission-budget-list li + li {
  margin-top: 0.45rem;
}

.commission-resource-card__more {
  margin-top: 1rem !important;
  font-weight: 700;
}

@media (max-width: 800px) {
  .commissioners-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .commission-resources {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .commissioners-grid {
    grid-template-columns: 1fr;
  }
}
/* INTERIOR PAGE CONSISTENCY */

.interior-page-content {
  margin-top: 0;
  padding-top: 1.25rem;
  background: #000000;
}

.interior-page-content > .content_resize,
.interior-page-content > .content > .content_resize {
  padding-top: 0;
}

.site-footer {
  background: #000000;
}

/* END INTERIOR PAGE CONSISTENCY */
/* ==========================================================
   HISTORY PAGE READING LAYOUT
   ========================================================== */

.history-page .content_resize {
  width: min(calc(100% - 2rem), var(--content-max));
  max-width: var(--content-max);
  margin-inline: auto;
}

.history-page .history-section {
  max-width: none;
  margin: 0 auto 2rem;
  color: #f2f2f2;
  font-size: 1.05rem;
  line-height: 1.7;
}

.history-page .history-section p {
  margin: 0 0 1.25rem;
}

.history-page .history-section li {
  margin-bottom: 0.45rem;
}

.history-page .history-section::after {
  content: "";
  display: block;
  clear: both;
}

.history-page .history-inline-image {
  width: min(42%, 280px);
  height: auto;
  margin-top: 0.35rem;
  margin-bottom: 1rem;
}

.history-page .history-inline-image img {
  display: block;
  width: 100%;
  height: auto;
}

.history-inline-image--right {
  float: right;
  margin-left: 1.4rem;
}

.history-inline-image--left {
  float: left;
  margin-right: 1.4rem;
}

.history-page .history-courthouse__content h2 {
  margin-top: 0;
}

@media (max-width: 800px) {
  .history-page .history-section {
    font-size: 1rem;
    line-height: 1.65;
  }

  .history-page .history-inline-image,
  .history-inline-image--right,
  .history-inline-image--left {
    float: none;
    width: min(100%, 360px);
    margin: 0.75rem auto 1.25rem;
  }
}
.history-page .history-courthouse-layout {
  display: grid;
  grid-template-columns: minmax(16rem, 22rem) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
  margin: 2.5rem 0;
}

.history-page .history-courthouse-media {
  margin: 0;
}

.history-page .history-courthouse-media img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 0.75rem;
}

.history-page .history-courthouse-content {
  min-width: 0;
}

.history-page .history-courthouse-content h2 {
  margin-top: 0;
}

.history-page .history-courthouse-content ul {
  margin: 0.75rem 0 0;
  padding-left: 1.25rem;
}

.history-page .history-courthouse-content li + li {
  margin-top: 0.65rem;
}

@media (max-width: 56rem) {
  .history-page .history-courthouse-layout {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .history-page .history-courthouse-media {
    max-width: 24rem;
  }
}

/* NEWS ROW-FIRST MASONRY */
.news-page #news-announcements {
  display: grid;
  column-count: initial;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 8px;
  gap: 1.5rem;
  align-items: start;
}

.news-page #news-announcements .rcorners.news-card {
  display: block;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  break-inside: auto;
}

@media (max-width: 58rem) {
  .news-page #news-announcements {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 38rem) {
  .news-page #news-announcements {
    display: block;
    grid-template-columns: 1fr;
  }

  .news-page #news-announcements .rcorners.news-card {
    margin-bottom: 1.5rem !important;
  }
}

/* SERVICES AND AMENITIES PAGE */

.services-page .content_resize {
  width: min(calc(100% - 2rem), var(--content-max));
  max-width: var(--content-max);
  margin-inline: auto;
}

.services-intro {
  max-width: 72rem;
  margin: 0 0 1.75rem;
  color: var(--color-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: stretch;
  padding-bottom: 2.5rem;
}

.service-card {
  min-width: 0;
  padding: 1.4rem;
  border: 1px solid rgb(255 255 255 / 0.12);
  border-top: 4px solid var(--color-gold);
  border-radius: var(--radius);
  background: var(--color-card);
  box-shadow: 0 0.35rem 1rem rgb(0 0 0 / 0.22);
}

.service-card h3,
.service-card h4 {
  margin-top: 0;
}

.service-card h3 {
  margin-bottom: 0.9rem;
  color: var(--color-gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
  line-height: 1.2;
}

.service-card h4 {
  margin-top: 1.25rem;
  margin-bottom: 0.65rem;
  color: var(--color-gold);
  font-size: 1.05rem;
}

.service-card p {
  margin: 0 0 1rem;
  line-height: 1.65;
}

.service-card p:last-child {
  margin-bottom: 0;
}

.service-card a {
  color: var(--color-gold);
  text-underline-offset: 0.2em;
}

.service-card h3 a {
  text-decoration: none;
}

.service-card h3 a:hover,
.service-card h3 a:focus-visible,
.service-card p a:hover,
.service-card p a:focus-visible {
  color: #ffffff;
}

.service-card--wide {
  grid-column: span 2;
}

@media (max-width: 58rem) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-card--wide {
    grid-column: span 2;
  }
}

@media (max-width: 38rem) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card--wide {
    grid-column: auto;
  }

  .services-intro {
    font-size: 1rem;
  }
}

/* CONTACT PAGE BONES */

.contact-page .content_resize {
  width: min(calc(100% - 2rem), var(--content-max));
  max-width: var(--content-max);
  margin-inline: auto;
}

.contact-intro {
  margin: 0 0 1.75rem;
  color: var(--color-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 1.5rem;
  align-items: start;
  padding-bottom: 2.5rem;
}

.contact-card,
.contact-map-card {
  min-width: 0;
  padding: 1.4rem;
  border: 1px solid rgb(255 255 255 / 0.12);
  border-top: 4px solid var(--color-gold);
  border-radius: var(--radius);
  background: var(--color-card);
  box-shadow: 0 0.35rem 1rem rgb(0 0 0 / 0.22);
}

.contact-card h3,
.contact-map-card h3 {
  margin: 0 0 1rem;
  color: var(--color-gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
}

.contact-card__address {
  margin-bottom: 1.25rem;
  color: #ffffff;
  font-style: normal;
  line-height: 1.65;
}

.contact-card__details {
  margin: 0;
}

.contact-card__details > div {
  display: grid;
  grid-template-columns: 7rem minmax(0, 1fr);
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-top: 1px solid rgb(255 255 255 / 0.1);
}

.contact-card__details dt {
  color: var(--color-gold);
  font-weight: 700;
}

.contact-card__details dd {
  margin: 0;
}

.contact-card a,
.contact-map-card a {
  color: var(--color-gold);
  text-underline-offset: 0.2em;
}

.contact-card a:hover,
.contact-card a:focus-visible,
.contact-map-card a:hover,
.contact-map-card a:focus-visible {
  color: #ffffff;
}

.contact-map-frame {
  overflow: hidden;
  border-radius: 0.6rem;
  background: #111111;
}

.contact-map-frame iframe {
  display: block;
  width: 100%;
  min-height: 24rem;
  border: 0;
}

.contact-map-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0 0;
}

@media (max-width: 54rem) {
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-map-frame iframe {
    min-height: 20rem;
  }
}

@media (max-width: 38rem) {
  .contact-intro {
    font-size: 1rem;
  }

  .contact-card__details > div {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }

  .contact-map-frame iframe {
    min-height: 18rem;
  }
}

/* TRASH PICK-UP PAGE */

.trash-page .content_resize {
  width: min(calc(100% - 2rem), var(--content-max));
  max-width: var(--content-max);
  margin-inline: auto;
}

.trash-intro,
.trash-important {
  padding: 1.5rem;
  border: 1px solid rgb(255 255 255 / 0.1);
  border-radius: var(--radius);
  background: var(--color-card);
  box-shadow: 0 0.35rem 1rem rgb(0 0 0 / 0.2);
}

.trash-intro {
  margin-bottom: 1.5rem;
}

.trash-intro h3,
.trash-important h3,
.trash-info-card h3 {
  margin-top: 0;
  color: var(--color-gold);
  font-family: Georgia, "Times New Roman", serif;
}

.trash-intro p,
.trash-important p,
.trash-info-card li,
.trash-info-card p {
  line-height: 1.65;
}

.trash-document-link,
.trash-page a {
  color: var(--color-gold);
  text-underline-offset: 0.2em;
}

.trash-page a:hover,
.trash-page a:focus-visible {
  color: #ffffff;
}

.trash-rules-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.trash-info-card {
  min-width: 0;
  padding: 1.5rem;
  border: 1px solid rgb(255 255 255 / 0.12);
  border-top: 4px solid var(--color-gold);
  border-radius: var(--radius);
  background: var(--color-card);
  box-shadow: 0 0.35rem 1rem rgb(0 0 0 / 0.22);
}

.trash-info-card ul {
  margin: 0;
  padding-left: 1.35rem;
}

.trash-info-card li + li {
  margin-top: 0.75rem;
}

.trash-info-card p {
  margin-bottom: 0;
}

.trash-info-card--warning {
  border-top-color: #ffffff;
}

.trash-important {
  margin-bottom: 2.5rem;
}

.trash-important p:last-child {
  margin-bottom: 0;
}

.trash-closing {
  margin-top: 1.5rem;
}

@media (max-width: 54rem) {
  .trash-rules-grid {
    grid-template-columns: 1fr;
  }
}

/* BIDS PAGE */

.bids-page .content_resize {
  width: min(calc(100% - 2rem), var(--content-max));
  max-width: var(--content-max);
  margin-inline: auto;
}

.bids-intro {
  max-width: 70rem;
  margin: 0 0 1.5rem;
  color: var(--color-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.bids-status-card {
  max-width: 52rem;
  padding: clamp(1.5rem, 4vw, 2.25rem);
  border: 1px solid rgb(255 255 255 / 0.12);
  border-top: 4px solid var(--color-gold);
  border-radius: var(--radius);
  background: var(--color-card);
  box-shadow: 0 0.35rem 1rem rgb(0 0 0 / 0.22);
}

.bids-status-card h3 {
  margin: 0 0 1rem;
  color: var(--color-gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
}

.bids-status-card p {
  line-height: 1.65;
}

.bids-status-card p:last-child {
  margin-bottom: 0;
}

.bids-empty-state {
  margin: 0 0 1rem;
  color: #ffffff;
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  font-weight: 700;
}

.bids-related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin-top: 1.5rem;
  padding-bottom: 2.5rem;
}

.bids-related-links a {
  color: var(--color-gold);
  text-underline-offset: 0.2em;
}

.bids-related-links a:hover,
.bids-related-links a:focus-visible {
  color: #ffffff;
}

@media (max-width: 38rem) {
  .bids-intro {
    font-size: 1rem;
  }

  .bids-related-links {
    display: grid;
    gap: 0.75rem;
  }
}

/* MEETING MINUTES PAGE */

.minutes-page .content_resize {
  width: min(calc(100% - 2rem), var(--content-max));
  max-width: var(--content-max);
  margin-inline: auto;
}

.minutes-intro {
  max-width: 68rem;
  margin: 0 auto 1.75rem;
  color: var(--color-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  text-align: center;
}

/*
 * Row-first masonry:
 * DOM order remains newest to oldest, so the first three years occupy
 * the first visual row before later cards are compacted upward.
 */
.minutes-page #minutes-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 18rem));
  grid-auto-rows: 8px;
  gap: 1.25rem;
  justify-content: center;
  align-items: start;
  margin-inline: auto;
}

.minutes-year {
  width: auto;
  min-width: 0;
  padding: 1.25rem;
  border: 1px solid rgb(255 255 255 / 0.12);
  border-top: 4px solid var(--color-gold);
  border-radius: var(--radius);
  background: var(--color-card);
  box-shadow: 0 0.35rem 1rem rgb(0 0 0 / 0.22);
}

.minutes-year h3 {
  margin: 0 0 1rem;
  color: var(--color-gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  text-decoration: none;
}

.minutes-year ul {
  margin: 0;
  padding-left: 1.2rem;
}

.minutes-year li {
  margin-bottom: 0.65rem;
  line-height: 1.35;
}

.minutes-year li:last-child {
  margin-bottom: 0;
}

.minutes-year a,
.minutes-archive a {
  color: var(--color-gold);
  text-underline-offset: 0.2em;
}

.minutes-year a:hover,
.minutes-year a:focus-visible,
.minutes-archive a:hover,
.minutes-archive a:focus-visible {
  color: #ffffff;
}

.minutes-archive {
  max-width: 58rem;
  margin: 1.5rem auto 2.5rem;
  padding: 1.25rem 1.4rem;
  border: 1px solid rgb(255 255 255 / 0.1);
  border-radius: var(--radius);
  background: var(--color-card);
}

.minutes-archive strong {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--color-gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
}

.minutes-archive p {
  margin: 0;
}

.minutes-page .content-load-error {
  grid-column: 1 / -1;
  padding: 1.25rem;
  border-radius: var(--radius);
  background: var(--color-card);
  color: #ffffff;
}

@media (max-width: 60rem) {
  .minutes-page #minutes-list {
    grid-template-columns: repeat(2, minmax(0, 18rem));
  }
}

@media (max-width: 40rem) {
  .minutes-page #minutes-list {
    grid-template-columns: minmax(0, 22rem);
  }

  .minutes-intro {
    font-size: 1rem;
  }
}

/* ROAD AND WATER DEPARTMENTS PAGE */

.road-water-page .content_resize {
  width: min(calc(100% - 2rem), var(--content-max));
  max-width: var(--content-max);
  margin-inline: auto;
}

.road-water-intro {
  max-width: 72rem;
  margin: 0 0 1.75rem;
  color: var(--color-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.road-water-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.road-water-card,
.road-water-downloads,
.road-water-notice {
  border: 1px solid rgb(255 255 255 / 0.12);
  border-radius: var(--radius);
  background: var(--color-card);
  box-shadow: 0 0.35rem 1rem rgb(0 0 0 / 0.22);
}

.road-water-card {
  min-width: 0;
  padding: 1.5rem;
  border-top: 4px solid var(--color-gold);
}

.road-water-card h3,
.road-water-downloads h3,
.road-water-notice h3 {
  margin-top: 0;
  color: var(--color-gold);
  font-family: Georgia, "Times New Roman", serif;
}

.road-water-card h3 {
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.road-water-card__lead {
  margin: 0 0 1rem;
  line-height: 1.55;
}

.road-water-card address {
  margin: 0 0 1.25rem;
  color: #ffffff;
  font-style: normal;
  line-height: 1.6;
}

.road-water-details {
  margin: 0;
}

.road-water-details > div {
  display: grid;
  grid-template-columns: 7rem minmax(0, 1fr);
  gap: 0.75rem;
  padding: 0.7rem 0;
  border-top: 1px solid rgb(255 255 255 / 0.1);
}

.road-water-details dt {
  color: var(--color-gold);
  font-weight: 700;
}

.road-water-details dd {
  margin: 0;
}

.road-water-page a {
  color: var(--color-gold);
  text-underline-offset: 0.2em;
}

.road-water-page a:hover,
.road-water-page a:focus-visible {
  color: #ffffff;
}

.road-water-downloads {
  margin-bottom: 1.5rem;
  padding: 1.5rem;
}

.road-water-downloads h3 {
  margin-bottom: 1.25rem;
  font-size: 1.4rem;
}

.road-water-download-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.road-water-document {
  display: block;
  padding: 1.1rem 1.15rem;
  border: 1px solid rgb(255 255 255 / 0.1);
  border-radius: 0.65rem;
  background: rgb(255 255 255 / 0.035);
  text-decoration: none;
}

.road-water-document strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--color-gold);
  font-size: 1.02rem;
}

.road-water-document span {
  display: block;
  color: #ffffff;
  line-height: 1.5;
}

.road-water-document:hover,
.road-water-document:focus-visible {
  border-color: var(--color-gold);
}

.road-water-notice {
  margin-bottom: 2.5rem;
  padding: 1.5rem;
  border-left: 4px solid var(--color-gold);
}

.road-water-notice__eyebrow {
  margin-bottom: 0.5rem;
  color: #FDBB20;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.road-water-notice h3 {
  margin-bottom: 0.9rem;
  font-size: 1.3rem;
  line-height: 1.35;
}

/*
 * PROTECTED EPA NOTICE COLORS
 * These reproduce the required treatment from the original notice.
 * Do not replace them with theme variables during future redesign work.
 */
.road-water-notice__title {
  color: #FFFFFF !important;
}

.road-water-notice__link,
.road-water-notice__link:hover,
.road-water-notice__link:focus-visible {
  color: #ff0000 !important;
}

.road-water-notice p {
  line-height: 1.65;
}

.road-water-notice p:last-child {
  margin-bottom: 0;
}

@media (max-width: 54rem) {
  .road-water-contact-grid {
    grid-template-columns: 1fr;
  }

  .road-water-download-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 38rem) {
  .road-water-intro {
    font-size: 1rem;
  }

  .road-water-details > div {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }
}

/* BOARD OF REGISTRARS PAGE */

.registrars-page .content_resize {
  width: min(calc(100% - 2rem), var(--content-max));
  max-width: var(--content-max);
  margin-inline: auto;
}

.registrars-intro {
  max-width: 70rem;
  margin: 0 0 1.75rem;
  color: var(--color-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.registrars-main-grid {
  display: grid;
  grid-template-columns: minmax(16rem, 0.85fr) minmax(0, 1.35fr);
  gap: 1.5rem;
  align-items: start;
  margin-bottom: 1.5rem;
}

.registrars-vote {
  text-align: center;
}

.registrars-vote__link {
  display: block;
  width: min(100%, 22rem);
  margin-inline: auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 0.35rem 1rem rgb(0 0 0 / 0.24);
}

.registrars-vote__image {
  display: block;
  width: 100%;
  height: auto;
}

.registrars-vote__link:hover,
.registrars-vote__link:focus-visible {
  outline: 3px solid var(--color-gold);
  outline-offset: 4px;
}

.registrars-vote__caption {
  max-width: 24rem;
  margin: 0.9rem auto 0;
  color: var(--color-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.registrars-members,
.registrars-office {
  border: 1px solid rgb(255 255 255 / 0.12);
  border-radius: var(--radius);
  background: var(--color-card);
  box-shadow: 0 0.35rem 1rem rgb(0 0 0 / 0.22);
}

.registrars-members {
  padding: 1.5rem;
  border-top: 4px solid var(--color-gold);
}

.registrars-members h3,
.registrars-office h3 {
  margin-top: 0;
  color: var(--color-gold);
  font-family: Georgia, "Times New Roman", serif;
}

.registrars-members h3 {
  margin-bottom: 1.15rem;
  font-size: 1.4rem;
}

.registrars-member {
  display: grid;
  grid-template-columns: minmax(10rem, 0.9fr) minmax(0, 1.2fr);
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid rgb(255 255 255 / 0.1);
}

.registrars-member:first-of-type {
  border-top: 0;
  padding-top: 0.25rem;
}

.registrars-member:last-child {
  padding-bottom: 0;
}

.registrars-member__name {
  color: #ffffff;
  font-size: 1.08rem;
  font-weight: 700;
}

.registrars-member__appointment {
  color: #ffffff;
  line-height: 1.45;
}

.registrars-member__appointment span {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--color-muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.registrars-office {
  margin-bottom: 2.5rem;
  padding: 1.5rem;
}

.registrars-office h3 {
  margin-bottom: 1.25rem;
  font-size: 1.4rem;
}

.registrars-office__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.registrars-office__grid > div {
  min-width: 0;
  padding: 1rem;
  border: 1px solid rgb(255 255 255 / 0.1);
  border-radius: 0.65rem;
  background: rgb(255 255 255 / 0.035);
}

.registrars-office h4 {
  margin: 0 0 0.55rem;
  color: var(--color-gold);
  font-size: 1rem;
}

.registrars-office p,
.registrars-office address {
  margin: 0;
  color: #ffffff;
  font-style: normal;
  line-height: 1.55;
}

.registrars-office a {
  color: var(--color-gold);
  text-underline-offset: 0.2em;
}

.registrars-office a:hover,
.registrars-office a:focus-visible {
  color: #ffffff;
}

@media (max-width: 54rem) {
  .registrars-main-grid {
    grid-template-columns: 1fr;
  }

  .registrars-office__grid {
    grid-template-columns: 1fr;
  }

  .registrars-vote {
    order: 0;
  }

  .registrars-members {
    order: 1;
  }
}

@media (max-width: 38rem) {
  .registrars-intro {
    font-size: 1rem;
  }

  .registrars-member {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }
}

/* CORONER PAGE */

.coroner-page .content_resize {
  width: min(calc(100% - 2rem), var(--content-max));
  max-width: var(--content-max);
  margin-inline: auto;
}

.coroner-intro {
  max-width: 58rem;
  margin: 0 0 1.75rem;
  color: var(--color-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.coroner-card {
  max-width: 48rem;
  margin-bottom: 2.5rem;
  padding: 1.5rem;
  border: 1px solid rgb(255 255 255 / 0.12);
  border-top: 4px solid var(--color-gold);
  border-radius: var(--radius);
  background: var(--color-card);
  box-shadow: 0 0.35rem 1rem rgb(0 0 0 / 0.22);
}

.coroner-card h3 {
  margin: 0 0 0.25rem;
  color: var(--color-gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
}

.coroner-title {
  margin: 0 0 1.4rem;
  color: var(--color-muted);
  font-weight: 700;
}

.coroner-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.coroner-contact-item {
  min-width: 0;
  padding: 1rem;
  border: 1px solid rgb(255 255 255 / 0.1);
  border-radius: 0.65rem;
  background: rgb(255 255 255 / 0.035);
}

.coroner-contact-item h4 {
  margin: 0 0 0.55rem;
  color: var(--color-gold);
  font-size: 1rem;
}

.coroner-contact-item p,
.coroner-contact-item address {
  margin: 0;
  color: #ffffff;
  font-style: normal;
  line-height: 1.6;
}

.coroner-contact-item a {
  color: var(--color-gold);
  text-underline-offset: 0.2em;
}

.coroner-contact-item a:hover,
.coroner-contact-item a:focus-visible {
  color: #ffffff;
}

@media (max-width: 42rem) {
  .coroner-contact-grid {
    grid-template-columns: 1fr;
  }

  .coroner-intro {
    font-size: 1rem;
  }
}

/* SALES TAX PAGE */

.sales-tax-page {
  --sales-tax-sticky-top: 4.75rem;
  --sales-tax-section-offset: 9.5rem;
}

.sales-tax-page .content_resize {
  width: min(calc(100% - 2rem), var(--content-max));
  max-width: var(--content-max);
  margin-inline: auto;
}

.sales-tax-ador,
.sales-tax-jump-nav,
.sales-tax-section,
.sales-tax-police-note {
  border: 1px solid rgb(255 255 255 / 0.12);
  border-radius: var(--radius);
  background: var(--color-card);
  box-shadow: 0 0.35rem 1rem rgb(0 0 0 / 0.18);
}

.sales-tax-ador {
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  border-top: 4px solid var(--color-gold);
}

.sales-tax-ador h3,
.sales-tax-section h3 {
  margin-top: 0;
  color: var(--color-gold);
  font-family: Georgia, "Times New Roman", serif;
}

.sales-tax-ador h3 {
  margin-bottom: 0.85rem;
  font-size: 1.45rem;
}

.sales-tax-ador p {
  line-height: 1.65;
}

.sales-tax-ador-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 1.3rem 0;
}

.sales-tax-ador-grid > div {
  padding: 1rem;
  border: 1px solid rgb(255 255 255 / 0.1);
  border-radius: 0.65rem;
  background: rgb(255 255 255 / 0.035);
}

.sales-tax-ador-grid h4 {
  margin: 0 0 0.5rem;
  color: var(--color-gold);
}

.sales-tax-ador-grid p,
.sales-tax-ador-grid address {
  margin: 0;
  color: #ffffff;
  font-style: normal;
  line-height: 1.55;
}

.sales-tax-ador a,
.sales-tax-page .sales-tax-back-to-top a {
  color: var(--color-gold);
  text-underline-offset: 0.2em;
}

.sales-tax-ador-note {
  margin-bottom: 0;
  color: var(--color-muted);
}

.sales-tax-jump-nav {
  position: sticky;
  top: var(--sales-tax-sticky-top);
  z-index: 20;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
  margin-bottom: 1.75rem;
  padding: 1rem 1.1rem;
  background: #202020;
  border-color: rgb(255 255 255 / 0.18);
  box-shadow: 0 0.45rem 1rem rgb(0 0 0 / 0.34);
}

.sales-tax-jump-nav strong {
  color: #ffffff;
  margin-right: 0.25rem;
}

.sales-tax-jump-nav a {
  display: inline-block;
  padding: 0.45rem 0.7rem;
  border: 1px solid rgb(255 255 255 / 0.14);
  border-radius: 999px;
  color: var(--color-gold);
  background: rgb(255 255 255 / 0.035);
  text-decoration: none;
}

.sales-tax-jump-nav a:hover,
.sales-tax-jump-nav a:focus-visible {
  border-color: var(--color-gold);
  color: #ffffff;
}

.sales-tax-section {
  scroll-margin-top: var(--sales-tax-section-offset);
  margin-bottom: 1.5rem;
  padding: 1.25rem;
}

.sales-tax-section h3 {
  margin-bottom: 1rem;
  font-size: 1.45rem;
}

.sales-tax-table-scroll {
  overflow-x: auto;
  width: 100%;
  border-radius: 0.55rem;
  -webkit-overflow-scrolling: touch;
}

.sales-tax-table-scroll:focus-visible {
  outline: 3px solid var(--color-gold);
  outline-offset: 3px;
}

.sales-tax-table {
  width: 100%;
  min-width: 64rem;
  border-collapse: collapse;
  background: #2f2f2f;
  color: #ffffff;
}

.sales-tax-table th,
.sales-tax-table td {
  padding: 0.7rem 0.55rem;
  border: 1px solid #111111;
  text-align: center;
  vertical-align: middle;
}

.sales-tax-table thead th {
  position: sticky;
  top: 0;
  background: #222222;
  color: var(--color-gold);
  font-size: 0.8rem;
  line-height: 1.25;
}

.sales-tax-table tbody th {
  background: #292929;
  color: #ffffff;
  text-align: left;
  white-space: nowrap;
}

.sales-tax-table tbody tr:nth-child(even) td {
  background: rgb(255 255 255 / 0.025);
}

.sales-tax-back-to-top {
  margin: 0.85rem 0 0;
  text-align: right;
  font-size: 0.9rem;
}

.sales-tax-police-note {
  margin-bottom: 2.5rem;
  padding: 1rem 1.15rem;
  border-left: 4px solid var(--color-gold);
  line-height: 1.6;
}

.sales-tax-police-note strong {
  color: var(--color-gold);
}

@media (max-width: 54rem) {
  .sales-tax-page {
    --sales-tax-sticky-top: 4.25rem;
    --sales-tax-section-offset: 12rem;
  }

  .sales-tax-ador-grid {
    grid-template-columns: 1fr;
  }

  .sales-tax-section {
    padding: 1rem;
  }
}

@media (max-width: 38rem) {
  .sales-tax-jump-nav {
    align-items: stretch;
  }

  .sales-tax-jump-nav strong {
    flex-basis: 100%;
  }

  .sales-tax-jump-nav a {
    flex: 1 1 auto;
    text-align: center;
  }
}

/* JUNK AND TOBACCO TAX PAGE */

.junk-tax-page .content_resize {
  width: min(calc(100% - 2rem), var(--content-max));
  max-width: var(--content-max);
  margin-inline: auto;
}

.junk-tax-intro {
  max-width: 60rem;
  margin: 0 0 1.75rem;
  color: var(--color-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.junk-tax-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.junk-tax-card,
.junk-tax-contact {
  border: 1px solid rgb(255 255 255 / 0.12);
  border-radius: var(--radius);
  background: var(--color-card);
  box-shadow: 0 0.35rem 1rem rgb(0 0 0 / 0.22);
}

.junk-tax-card {
  padding: 1.5rem;
  border-top: 4px solid var(--color-gold);
}

.junk-tax-card h3,
.junk-tax-contact h3 {
  margin-top: 0;
  color: var(--color-gold);
  font-family: Georgia, "Times New Roman", serif;
}

.junk-tax-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.4rem;
}

.junk-tax-contact-name {
  margin: 0;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
}

.junk-tax-contact {
  margin-bottom: 2.5rem;
  padding: 1.5rem;
}

.junk-tax-contact h3 {
  margin-bottom: 1rem;
  font-size: 1.35rem;
}

.junk-tax-contact p {
  margin: 0.45rem 0;
  color: #ffffff;
  line-height: 1.6;
}

.junk-tax-contact a {
  color: var(--color-gold);
  text-underline-offset: 0.2em;
}

.junk-tax-contact a:hover,
.junk-tax-contact a:focus-visible {
  color: #ffffff;
}

@media (max-width: 42rem) {
  .junk-tax-grid {
    grid-template-columns: 1fr;
  }

  .junk-tax-intro {
    font-size: 1rem;
  }
}

/* PARK SECTIONS */

.park-page {
  --park-subnav-top: 4.25rem;
  min-height: 60vh;
  background: var(--color-bg);
}

.park-subnav {
  position: sticky;
  top: 4.25rem;
  z-index: 90;
  border-bottom: 1px solid rgb(255 255 255 / 0.14);
  background: rgb(24 24 24 / 0.98);
  box-shadow: 0 0.35rem 1rem rgb(0 0 0 / 0.3);
  backdrop-filter: blur(8px);
}

.park-subnav__inner {
  width: min(calc(100% - 2rem), var(--content-max));
  min-height: 4rem;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.park-subnav__name {
  flex: 0 0 auto;
  margin: 0;
  color: var(--color-gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  font-weight: 700;
  white-space: nowrap;
}

.park-subnav__links {
  list-style: none;
  margin: 0 0 0 auto;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.2rem;
}

.park-subnav__links a {
  display: block;
  padding: 0.7rem 0.65rem;
  border-radius: 0.4rem;
  color: #ffffff;
  text-decoration: none;
  font-weight: 650;
  line-height: 1.15;
}

.park-subnav__links a:hover,
.park-subnav__links a:focus-visible {
  background: var(--color-card-hover);
  color: var(--color-gold);
}

.park-subnav__links a[aria-current="page"] {
  background: var(--color-gold);
  color: #111111;
}

.park-hero {
  position: relative;
  min-height: clamp(17rem, 36vw, 28rem);
  display: grid;
  align-items: end;
  overflow: hidden;
  border-bottom: 4px solid var(--color-gold);
  background:
    linear-gradient(
      to top,
      rgb(0 0 0 / 0.9),
      rgb(0 0 0 / 0.35) 55%,
      rgb(0 0 0 / 0.08)
    ),
    var(--park-hero-image, none),
    var(--color-surface-2);
  background-position: center;
  background-size: cover;
}

.park-hero__content {
  width: min(calc(100% - 2rem), var(--content-max));
  margin-inline: auto;
  padding: clamp(2rem, 5vw, 4rem) 0;
}

.park-hero h1 {
  max-width: 18ch;
  margin: 0;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: 1;
  text-shadow: 0 3px 12px rgb(0 0 0 / 0.75);
}

.park-hero p {
  max-width: 48rem;
  margin: 0.9rem 0 0;
  color: #ffffff;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-weight: 600;
  line-height: 1.6;
  text-shadow: 0 2px 8px rgb(0 0 0 / 0.75);
}

.park-content {
  width: min(calc(100% - 2rem), var(--content-max));
  margin-inline: auto;
  padding: clamp(2rem, 5vw, 4rem) 0;
}

.park-content > :first-child {
  margin-top: 0;
}

.park-content h1,
.park-content h2,
.park-content h3 {
  font-family: Georgia, "Times New Roman", serif;
}

.park-content h1,
.park-content h2 {
  color: var(--color-gold);
}

.park-content a {
  color: var(--color-gold);
  text-underline-offset: 0.2em;
}

.park-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.park-card {
  min-width: 0;
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  border: 1px solid rgb(255 255 255 / 0.12);
  border-top: 4px solid var(--color-gold);
  border-radius: var(--radius);
  background: var(--color-card);
  box-shadow: var(--shadow);
}

.park-card h2,
.park-card h3 {
  margin-top: 0;
}

.park-card p:last-child,
.park-card ul:last-child {
  margin-bottom: 0;
}

.park-rate-table-scroll {
  width: 100%;
  overflow-x: auto;
  border-radius: var(--radius);
}

.park-rate-table {
  width: 100%;
  min-width: 38rem;
  border-collapse: collapse;
  background: var(--color-card);
}

.park-rate-table th,
.park-rate-table td {
  padding: 0.8rem 0.9rem;
  border: 1px solid rgb(255 255 255 / 0.12);
  text-align: left;
  vertical-align: top;
}

.park-rate-table th {
  background: #1a1a1a;
  color: var(--color-gold);
}

.park-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.park-gallery a {
  display: block;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 0.12);
  border-radius: var(--radius);
  background: var(--color-card);
  box-shadow: 0 0.3rem 1rem rgb(0 0 0 / 0.25);
}

.park-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.park-gallery a:hover,
.park-gallery a:focus-visible {
  border-color: var(--color-gold);
}

.park-map {
  overflow: hidden;
  width: 100%;
  margin-top: 1.25rem;
  border: 1px solid rgb(255 255 255 / 0.12);
  border-radius: var(--radius);
  background: var(--color-card);
  box-shadow: var(--shadow);
}

.park-map iframe {
  display: block;
  width: 100%;
  min-height: 26rem;
  border: 0;
}

.park-contact-list {
  margin: 0;
}

.park-contact-list > div {
  display: grid;
  grid-template-columns: 8rem minmax(0, 1fr);
  gap: 0.75rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgb(255 255 255 / 0.1);
}

.park-contact-list dt {
  color: var(--color-gold);
  font-weight: 750;
}

.park-contact-list dd {
  margin: 0;
}

@media (max-width: 54rem) {
  .park-page {
    --park-subnav-top: 3.75rem;
  }

  .park-subnav__inner {
    min-height: auto;
    padding-block: 0.65rem;
    display: block;
  }

  .park-subnav__name {
    margin-bottom: 0.45rem;
  }

  .park-subnav__links {
    margin-left: 0;
    justify-content: flex-start;
    gap: 0.25rem;
  }

  .park-subnav__links a {
    padding: 0.55rem 0.6rem;
    font-size: 0.94rem;
  }

  .park-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 42rem) {
  .park-card-grid {
    grid-template-columns: 1fr;
  }

  .park-gallery {
    grid-template-columns: 1fr;
  }

  .park-contact-list > div {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }

  .park-map iframe {
    min-height: 22rem;
  }

  .park-subnav__links a {
    font-size: 0.9rem;
  }
}

/* PARK SPLIT PHOTOGRAPHIC HERO */

.park-hero--split {
  position: relative;
  isolation: isolate;
  min-height: clamp(18rem, 30vw, 24rem);
  background: #111111;
}

.park-hero--split::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0 0 0 34%;
  background-image: var(--park-hero-image);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.park-hero--split::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      #111111 0%,
      #111111 24%,
      rgb(17 17 17 / 0.94) 34%,
      rgb(17 17 17 / 0.68) 49%,
      rgb(17 17 17 / 0.18) 72%,
      rgb(17 17 17 / 0.08) 100%
    ),
    linear-gradient(
      to top,
      rgb(0 0 0 / 0.52),
      transparent 52%
    );
}

.park-hero--split .park-hero__content {
  position: relative;
  z-index: 2;
}

.park-hero--split .park-hero__content > * {
  max-width: 28rem;
}

@media (max-width: 54rem) {
  .park-hero--split::before {
    inset: 0;
    background-position: center;
  }

  .park-hero--split::after {
    background:
      linear-gradient(
        to right,
        rgb(17 17 17 / 0.92) 0%,
        rgb(17 17 17 / 0.72) 55%,
        rgb(17 17 17 / 0.28) 100%
      ),
      linear-gradient(
        to top,
        rgb(0 0 0 / 0.55),
        transparent 60%
      );
  }
}

/* PARK GALLERY LIGHTBOX */

body.park-lightbox-open {
  overflow: hidden;
}

.park-gallery a {
  display: block;
  cursor: zoom-in;
}

.park-lightbox[hidden] {
  display: none;
}

.park-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: rgb(0 0 0 / 0.88);
  cursor: zoom-out;
}

.park-lightbox__image {
  display: block;
  max-width: min(94vw, 90rem);
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
  box-shadow: 0 1rem 3rem rgb(0 0 0 / 0.45);
  cursor: zoom-out;
}

.park-lightbox__close {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 1001;
  width: 3rem;
  height: 3rem;
  border: 2px solid currentColor;
  border-radius: 50%;
  background: #fff;
  color: #111;
  font: inherit;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.park-lightbox__close:focus-visible {
  outline: 3px solid currentColor;
  outline-offset: 3px;
}

@media (max-width: 36rem) {
  .park-lightbox {
    padding: 1rem;
  }

  .park-lightbox__image {
    max-width: 96vw;
    max-height: 84vh;
  }
}
