:root {
  --home-paper: #f7f4ef;
  --home-paper-deep: #efebe3;
  --home-ink: #14110d;
  --home-muted: rgba(20, 17, 13, 0.6);
  --home-faint: rgba(20, 17, 13, 0.12);
  --home-red: #d94b2b;
  --home-red-dark: #b9381e;
  --home-display: "Arial Narrow", "Nimbus Sans Narrow", "Helvetica Neue", Arial, sans-serif;
  --home-sans: "Helvetica Neue", "Nimbus Sans", Arial, sans-serif;
  --home-mono: "Liberation Mono", "Courier New", monospace;
}

html {
  scroll-behavior: smooth;
}

body.home-page {
  margin: 0;
  background: #e8e4dc;
  color: var(--home-ink);
  font-family: var(--home-sans);
  font-size: 16px;
  line-height: 1.5;
  text-align: left;
}

.home-page *,
.home-page *::before,
.home-page *::after {
  box-sizing: border-box;
}

.home-page a {
  color: inherit;
  text-decoration: none;
}

.home-page a:hover {
  color: var(--home-red-dark);
}

.home-page :focus-visible {
  outline: 3px solid var(--home-red);
  outline-offset: 3px;
}

.home-page #wrapper.home-wrapper {
  display: block;
  width: min(100%, 1280px);
  max-width: 1280px;
  margin: 0 auto;
  padding: 0;
  background: var(--home-paper);
  box-shadow: 0 24px 60px rgba(20, 17, 13, 0.14);
}

.home-page .skip-link {
  border: 0;
  border-radius: 0;
  background: var(--home-paper);
  color: var(--home-ink);
}

.home-page #site-header.home-header {
  display: block;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: var(--home-paper);
}

.home-utility {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 32px;
  background: var(--home-ink);
  color: rgba(255, 255, 255, 0.72);
  font-size: 12.5px;
  letter-spacing: 0.02em;
}

.home-utility-weather,
.home-utility-nav {
  display: flex;
  align-items: center;
}

.home-utility-weather {
  min-width: 0;
  gap: 9px;
}

.home-status-dot {
  flex: 0 0 7px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--home-red);
}

.home-utility .weather-current {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
}

.home-utility .weather-current strong {
  font-size: inherit;
  font-weight: 400;
}

.home-utility .weather-current-row {
  display: flex;
  align-items: center;
  gap: 4px;
}

.home-utility .weather-icon {
  width: 19px;
  height: 19px;
  filter: invert(1);
  opacity: 0.74;
}

.home-utility .tempwarm {
  color: #fff;
  font-weight: 500;
}

.home-data-date {
  margin-left: 10px;
  color: rgba(255, 255, 255, 0.38);
}

.home-utility-nav {
  gap: 22px;
  white-space: nowrap;
}

.home-utility-nav a,
.home-utility-nav .header-utility-link {
  display: inline-flex;
  width: auto;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.78);
  font: inherit;
}

body.home-page #wrapper .home-utility-nav a,
body.home-page #wrapper .home-utility-nav .header-utility-link {
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.78);
  box-shadow: none;
}

.home-utility-nav a:hover {
  color: #fff;
}

.home-utility-nav a.home-utility-cta {
  padding: 5px 12px;
  background: var(--home-paper-deep);
  color: var(--home-ink);
  font-weight: 700;
}

body.home-page #wrapper .home-utility-nav a.home-utility-cta {
  padding: 5px 12px;
  background: var(--home-paper-deep);
  color: var(--home-ink);
}

.home-masthead {
  min-height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 20px 32px;
  border-bottom: 1px solid var(--home-faint);
}

.home-masthead #logo {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  padding: 0;
}

.home-masthead #logo a {
  min-height: 0;
}

.home-brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
  color: var(--home-ink);
}

body.home-page #wrapper .home-brand,
body.home-page #wrapper .home-brand:hover,
body.home-page #wrapper .home-primary-nav a {
  color: var(--home-ink);
}

.home-brand > img {
  display: block;
  width: 30px;
  height: 50px;
}

.home-brand-copy {
  display: grid;
  gap: 2px;
}

.home-brand-copy strong {
  font-family: var(--home-display);
  font-size: 20px;
  font-stretch: condensed;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.05;
}

.home-brand-copy small {
  color: rgba(20, 17, 13, 0.5);
  font-family: var(--home-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(16px, 2vw, 28px);
  font-size: 14px;
  font-weight: 600;
}

.home-primary-nav a {
  position: relative;
  padding: 9px 0;
  white-space: nowrap;
}

.home-primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  background: var(--home-red);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.home-primary-nav a:hover::after,
.home-primary-nav a:focus-visible::after {
  transform: scaleX(1);
}

.home-mobile-menu {
  display: none;
}

.home-page #main-content {
  outline: 0;
}

.home-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 64px;
  align-items: end;
  padding: 64px 32px 48px;
  border-bottom: 1px solid var(--home-faint);
}

.home-eyebrow {
  margin: 0;
  color: #c3411f;
  font-family: var(--home-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.home-hero-copy .home-eyebrow {
  margin-bottom: 18px;
}

.home-hero h1 {
  max-width: 15ch;
  margin: 0 0 18px;
  color: var(--home-ink);
  font-family: var(--home-display);
  font-size: clamp(48px, 5.2vw, 66px);
  font-stretch: condensed;
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.96;
  text-wrap: balance;
}

.home-hero-lead {
  max-width: 50ch;
  margin: 0;
  color: var(--home-muted);
  font-size: 17px;
  line-height: 1.55;
  text-wrap: pretty;
}

.home-page .home-landing-intro {
  display: block;
  margin: 0;
  padding: 0 0 6px;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.home-page .home-landing-intro > h2 {
  margin: 0 0 10px;
  color: rgba(20, 17, 13, 0.48);
  font-family: var(--home-mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.home-page .home-landing-intro > p,
.home-page .home-quick-links {
  display: none;
}

.home-page .home-landing-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 1px;
  background: var(--home-faint);
}

.home-page .home-landing-facts div {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 78px;
  margin: 0;
  padding: 12px 14px;
  border: 0;
  border-radius: 0;
  background: var(--home-paper);
}

.home-page .home-landing-facts dt {
  order: 2;
  color: rgba(20, 17, 13, 0.56);
  font-size: 11.5px;
  font-weight: 400;
  line-height: 1.35;
  text-transform: none;
}

.home-page .home-landing-facts dd {
  order: 1;
  margin: 0 0 2px;
  color: var(--home-ink);
  font-family: var(--home-display);
  font-size: 23px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.home-search {
  padding: 28px 32px 30px;
  background: var(--home-ink);
  color: #fff;
}

.home-search form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 168px;
  gap: 1px;
  margin: 0;
  padding: 1px;
  background: rgba(255, 255, 255, 0.16);
}

.home-search-field {
  display: block;
  min-width: 0;
  padding: 12px 18px 10px;
  background: #fff;
  cursor: text;
}

.home-search-field > span {
  display: block;
  margin-bottom: 1px;
  color: rgba(20, 17, 13, 0.48);
  font-family: var(--home-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-page .home-search-field input {
  display: block;
  width: 100%;
  min-height: 32px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  outline: 0;
  background: transparent;
  box-shadow: none;
  color: var(--home-ink);
  font-size: 18px;
  font-weight: 600;
}

body.home-page #wrapper .home-search-field #search,
body.home-page #wrapper .home-search-field #maplist {
  min-height: 32px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.home-search-field input::placeholder {
  color: rgba(20, 17, 13, 0.34);
  opacity: 1;
}

.home-search-submit {
  display: flex;
  min-height: 67px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 0;
  border-radius: 0;
  background: var(--home-red);
  color: #fff;
  cursor: pointer;
  font-family: var(--home-display);
  font-size: 18px;
  font-weight: 800;
}

.home-search-submit:hover {
  background: var(--home-red-dark);
}

.home-popular-searches {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}

.home-popular-searches strong {
  margin-right: 4px;
  color: rgba(255, 255, 255, 0.42);
  font-family: var(--home-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-popular-searches a {
  padding: 6px 13px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
}

body.home-page #wrapper .home-popular-searches a {
  color: rgba(255, 255, 255, 0.86);
}

body.home-page #wrapper .home-popular-searches a:hover {
  border-color: #fff;
  color: #fff;
}

.home-section {
  padding: 56px 32px;
}

.home-section-heading,
.home-page .home-editorial-head,
.home-page .home-sources-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin: 0;
  padding: 0 0 12px;
  border: 0;
  border-bottom: 2px solid var(--home-ink);
  border-radius: 0;
  background: transparent;
  color: var(--home-ink);
}

.home-section-heading h2,
.home-page .home-editorial-head .section-title-inline,
.home-page .home-sources-head .section-title-inline {
  margin: 0;
  color: var(--home-ink);
  font-family: var(--home-display);
  font-size: 31px;
  font-stretch: condensed;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.home-section-heading p {
  margin: 0;
  color: rgba(20, 17, 13, 0.55);
  font-size: 13px;
  text-align: right;
}

.home-page .home-wrapper div.home-editorial-head,
.home-page .home-wrapper div.home-sources-head {
  position: static;
  min-height: 0;
  padding: 0 0 12px;
  border: 0;
  border-bottom: 2px solid var(--home-ink);
  border-radius: 0;
  background: transparent;
  color: var(--home-ink);
  box-shadow: none;
}

.home-page .home-wrapper div.home-editorial-head::before,
.home-page .home-wrapper div.home-sources-head::before {
  display: none;
  content: none;
}

.home-page .home-wrapper div.home-editorial-head .section-title-inline,
.home-page .home-wrapper div.home-sources-head .section-title-inline {
  color: var(--home-ink);
  font-family: var(--home-display);
  font-size: 31px;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.home-branches {
  padding-bottom: 8px;
}

.home-page .home-branches #sbranche {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0 0 1px;
  background: var(--home-faint);
  counter-reset: home-branch;
}

.home-page .home-branches div.rubriklink {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 8px;
  align-content: start;
  width: auto;
  min-width: 0;
  height: auto;
  min-height: 102px;
  margin: 0;
  padding: 16px 18px;
  border: 0;
  border-radius: 0;
  background: var(--home-paper);
  box-shadow: none;
  counter-increment: home-branch;
  float: none;
}

.home-page .home-branches div.rubriklink:hover {
  background: #fff;
  box-shadow: none;
  transform: none;
}

.home-page .home-branches div.rubriklink::before {
  position: static;
  display: block;
  width: auto;
  height: auto;
  margin: 2px 0 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
  color: #c3411f;
  content: counter(home-branch, decimal-leading-zero);
  font-family: var(--home-mono);
  font-size: 10.5px;
  line-height: 1.4;
  -webkit-mask: none;
  mask: none;
}

.home-page .home-branches div.rubriklink::after {
  display: none;
  content: none;
  -webkit-mask: none;
  mask: none;
}

.home-page .home-branches div.rubriklink a {
  display: block;
  min-width: 0;
  padding: 0;
  color: var(--home-ink);
  font-family: var(--home-display);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.25;
}

body.home-page #wrapper .home-branches div.rubriklink a {
  color: var(--home-ink);
}

.home-page .home-branches div.rubriklink a::after {
  display: -webkit-box;
  margin-top: 5px;
  overflow: hidden;
  color: rgba(20, 17, 13, 0.5);
  content: attr(title);
  font-family: var(--home-sans);
  font-size: 11.5px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.home-page .home-branches .rubrik-links-clear {
  display: none;
}

.home-mobile-more {
  display: none;
}

.home-current-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 44px;
  align-items: start;
  padding: 56px 32px;
}

.home-current-main,
.home-page .home-current-main .white_top,
.home-page .home-current-main .white_content,
.home-page .home-current-main .white_bot {
  width: 100%;
  margin: 0;
}

.home-page .home-current-main .white_content {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.home-page .home-current-main .paddingbox {
  padding: 0;
}

.home-page .home-current-main .white_bot {
  display: none;
}

.home-page .home-city-updates {
  display: block;
  margin: 0;
}

.home-page .home-city-update {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.home-page .news-feed > h2,
.home-page .news-source-note {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.home-page .news-source-list {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-page .news-source-list li {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  grid-template-areas:
    "meta title"
    "meta summary";
  gap: 4px 22px;
  margin: 0;
  padding: 20px 0;
  border: 0;
  border-bottom: 1px solid var(--home-faint);
  background: transparent;
}

.home-page .news-source-list li:nth-child(n + 5) {
  display: none;
}

.home-page .news-feed-title {
  grid-area: title;
  color: var(--home-ink);
  font-family: var(--home-display);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.018em;
  line-height: 1.28;
}

.home-page .news-feed-summary {
  grid-area: summary;
  margin: 0;
  color: var(--home-muted);
  font-size: 13.5px;
  line-height: 1.55;
}

.home-page .news-feed-meta {
  grid-area: meta;
  padding-top: 3px;
  color: rgba(20, 17, 13, 0.48);
  font-family: var(--home-mono);
  font-size: 10.5px;
  line-height: 1.55;
}

.home-page .home-city-update--weather {
  margin-top: 22px;
  padding: 18px 0 0;
  border-top: 1px solid var(--home-faint);
}

.home-page .weather-forecast-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  background: var(--home-faint);
}

.home-page .weather-day {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px 12px;
  background: var(--home-paper);
}

.home-page .weather-day h3,
.home-page .weather-day dl,
.home-page .weather-day dt,
.home-page .weather-day dd {
  margin: 0;
}

.home-page .weather-day h3 {
  font-family: var(--home-mono);
  font-size: 11px;
}

.home-page .weather-day dl {
  display: grid;
  grid-template-columns: auto auto;
  gap: 1px 5px;
  color: var(--home-muted);
  font-size: 10px;
}

.home-page .weather-day dd {
  color: var(--home-ink);
  font-weight: 700;
}

.home-page #nav_right {
  display: flex;
  width: 100%;
  min-width: 0;
  margin: 0;
  padding: 0;
  flex-direction: column;
  gap: 28px;
  grid-column: auto;
  grid-row: auto;
  align-self: start;
}

.home-page #bottom_lists {
  display: block;
  width: 100%;
  margin: 0;
}

.home-page #bottom_lists .bottom-list-panel {
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.home-page #bottom_lists .bottom-list-panel-title {
  margin: 0;
  padding: 0 0 10px;
  border: 0;
  border-bottom: 2px solid var(--home-ink);
  color: var(--home-ink);
  font-family: var(--home-display);
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.home-page #bottom_lists .bottom-list-panel-content {
  padding: 0;
}

.home-page #bottom_lists .link-list li {
  display: block;
  padding: 11px 0;
  border-bottom: 1px solid rgba(20, 17, 13, 0.1);
  background: transparent;
}

.home-page #bottom_lists .link-list li:nth-child(n + 7) {
  display: none;
}

.home-page #bottom_lists .link-list-link {
  display: block;
  color: var(--home-ink);
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.3;
}

.home-page #bottom_lists .link-list span {
  display: block;
  margin-top: 3px;
  color: rgba(20, 17, 13, 0.5);
  font-size: 11.5px;
}

.home-quality-card {
  padding: 22px;
  border: 1px solid var(--home-faint);
  background: var(--home-paper-deep);
}

.home-quality-card h2 {
  margin: 8px 0 8px;
  font-family: var(--home-display);
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.home-quality-card > p:not(.home-eyebrow) {
  margin: 0 0 16px;
  color: var(--home-muted);
  font-size: 13px;
  line-height: 1.5;
}

.home-quality-card a {
  color: #c3411f;
  font-size: 13px;
  font-weight: 700;
}

.home-market {
  padding-top: 8px;
}

.home-market-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 0 0 1px;
  background: var(--home-faint);
}

.home-market-grid article {
  min-width: 0;
  padding: 24px 22px;
  background: var(--home-paper);
}

.home-market-card-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.home-market-card-head h3 {
  margin: 0;
  font-family: var(--home-display);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.home-market-card-head span {
  flex: 0 0 auto;
  color: #c3411f;
  font-family: var(--home-mono);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.home-market-grid article > p {
  min-height: 63px;
  margin: 0;
  color: var(--home-muted);
  font-size: 13.5px;
  line-height: 1.55;
}

.home-market-grid ul {
  margin: 18px 0 0;
  padding: 0;
  border-top: 1px solid var(--home-faint);
  list-style: none;
}

.home-market-grid li {
  padding: 9px 0;
  border-bottom: 1px solid rgba(20, 17, 13, 0.08);
  color: rgba(20, 17, 13, 0.72);
  font-size: 12.5px;
}

.home-market-grid li::before {
  margin-right: 8px;
  color: var(--home-red);
  content: "—";
}

.home-sources {
  padding: 8px 32px 56px;
}

.home-page .home-sources .white_top,
.home-page .home-sources .white_content,
.home-page .home-sources .white_bot {
  width: 100%;
  margin: 0;
}

.home-page .home-sources .white_content {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.home-page .home-sources .paddingbox {
  padding: 0;
}

.home-page .home-sources .white_bot {
  display: none;
}

.home-page .portal-sources {
  margin: 0;
  padding: 24px 0 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.home-page .portal-sources > h3 {
  margin: 0 0 6px;
  color: var(--home-ink);
  font-family: var(--home-display);
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.home-page .portal-sources > p {
  max-width: 76ch;
  margin: 0 0 20px;
  color: var(--home-muted);
  font-size: 13.5px;
}

.home-page .portal-data-snapshot {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 0 0 28px;
  padding: 1px;
  background: var(--home-faint);
}

.home-page .portal-data-snapshot div {
  display: flex;
  min-width: 0;
  min-height: 104px;
  padding: 14px;
  flex-direction: column;
  border: 0;
  background: var(--home-paper);
}

.home-page .portal-data-snapshot div:nth-child(n + 5) {
  display: none;
}

.home-page .portal-data-snapshot dt {
  order: 2;
  color: var(--home-muted);
  font-size: 11px;
}

.home-page .portal-data-snapshot dd {
  order: 1;
  margin: 0;
  color: var(--home-ink);
  font-family: var(--home-display);
  font-size: 23px;
  font-weight: 800;
}

.home-page .portal-data-snapshot span {
  order: 3;
  margin-top: 5px;
  color: rgba(20, 17, 13, 0.46);
  font-size: 10.5px;
}

.home-page .portal-source-context {
  font-family: var(--home-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-page .portal-source-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0 0 24px;
  padding: 1px;
  background: var(--home-faint);
  list-style: none;
}

.home-page .portal-source-list li {
  min-width: 0;
  padding: 15px 16px;
  border: 0;
  background: var(--home-paper);
}

.home-page .portal-source-list strong,
.home-page .portal-source-list span {
  display: block;
}

.home-page .portal-source-list strong {
  margin-bottom: 4px;
  font-size: 13.5px;
}

.home-page .portal-source-list span {
  display: -webkit-box;
  overflow: hidden;
  color: var(--home-muted);
  font-size: 11.5px;
  line-height: 1.4;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.home-page .portal-source-groups {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.home-page .portal-source-groups > strong {
  padding-top: 7px;
  font-family: var(--home-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.home-page .portal-source-group-links {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-page .portal-source-group-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border: 1px solid var(--home-faint);
  background: var(--home-paper);
  font-size: 11.5px;
}

.home-page .portal-source-group-links img {
  width: 15px;
  height: 15px;
}

.home-page .portal-source-more {
  margin: 18px 0 0;
}

.home-page .portal-source-more a {
  color: #c3411f;
  font-weight: 700;
}

.home-districts {
  background: var(--home-paper-deep);
}

.home-page .home-districts .district-nav {
  display: grid;
  grid-template-columns: 420px minmax(0, 1fr);
  gap: 44px;
  align-items: start;
  margin-top: 28px;
}

.home-page .home-districts .district-nav-map {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 22px;
  border: 1px solid rgba(20, 17, 13, 0.15);
  background: rgba(247, 244, 239, 0.72);
}

.home-page .home-districts .district-nav-map img {
  display: block;
  width: 100%;
  height: auto;
  filter: grayscale(0.78) sepia(0.18) saturate(0.7);
}

.home-page .home-districts .district-nav-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-page .home-districts .district-nav-list li {
  min-width: 0;
  padding: 9px 0;
  border: 0;
  border-bottom: 1px solid var(--home-faint);
  background: transparent;
  color: rgba(20, 17, 13, 0.42);
  font-family: var(--home-mono);
  font-size: 10.5px;
}

.home-page .home-districts a.wo {
  color: var(--home-ink);
  font-family: var(--home-sans);
  font-size: 13.5px;
  font-weight: 600;
}

body.home-page #wrapper .home-districts a.wo {
  color: var(--home-ink);
}

.home-streets {
  display: flow-root;
  padding: 44px 32px;
  border-bottom: 1px solid var(--home-faint);
}

.home-page .home-streets .sidebar-panel {
  float: none;
  clear: both;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.home-page .home-streets .sidebar-panel-title {
  margin: 0 0 20px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--home-ink);
  font-family: var(--home-display);
  font-size: 23px;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.home-page .home-streets .sidebar-panel-content,
.home-page .home-streets .sidebar-panel-content > .paddingbox {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.home-page .home-streets .street-letter-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.home-page .home-streets .street-letter-link {
  display: flex;
  width: 40px;
  height: 40px;
  min-height: 0;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(20, 17, 13, 0.17);
  border-radius: 0;
  background: transparent;
  color: var(--home-ink);
  font-family: var(--home-display);
  font-size: 15px;
  font-weight: 800;
}

.home-page .home-streets .street-letter-link:hover {
  border-color: var(--home-ink);
  background: var(--home-ink);
  color: #fff;
}

.home-entry-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 48px 32px;
  background: var(--home-red);
  color: #fff;
}

.home-entry-cta h2 {
  margin: 0 0 7px;
  font-family: var(--home-display);
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}

.home-entry-cta p {
  max-width: 58ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 15px;
}

.home-entry-cta > a {
  flex: 0 0 auto;
  padding: 15px 27px;
  background: var(--home-ink);
  color: #fff;
  font-family: var(--home-display);
  font-size: 17px;
  font-weight: 800;
}

body.home-page #wrapper .home-entry-cta > a {
  color: #fff;
}

body.home-page #wrapper .home-entry-cta > a:hover {
  background: #fff;
  color: var(--home-ink);
}

.home-page .site-footer {
  display: flex;
  min-height: 110px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin: 0;
  padding: 34px 32px;
  border: 0;
  border-radius: 0;
  background: var(--home-ink);
  color: rgba(255, 255, 255, 0.55);
  font-size: 12.5px;
  text-align: left;
}

.home-page .site-footer-brand {
  order: -1;
  color: rgba(255, 255, 255, 0.7);
}

.home-page .site-footer-brand strong {
  color: #fff;
  font-family: var(--home-display);
  font-size: 16px;
}

.home-page .site-footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 17px;
}

.home-page .site-footer-nav a {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
}

body.home-page #wrapper .site-footer-nav a {
  color: rgba(255, 255, 255, 0.64);
}

body.home-page #wrapper .site-footer-nav a:hover {
  color: #fff;
}

@media (max-width: 1080px) {
  .home-primary-nav {
    gap: 15px;
    font-size: 13px;
  }

  .home-hero {
    gap: 40px;
  }

  .home-page .home-branches #sbranche {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-page .home-districts .district-nav {
    grid-template-columns: minmax(280px, 36%) minmax(0, 1fr);
    gap: 32px;
  }

  .home-page .home-districts .district-nav-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .home-primary-nav {
    display: none;
  }

  .home-mobile-menu {
    position: relative;
    display: block;
    margin-left: auto;
  }

  .home-mobile-menu summary {
    display: flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    list-style: none;
  }

  .home-mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .home-mobile-menu summary span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--home-ink);
    transition: transform 160ms ease;
  }

  .home-mobile-menu[open] summary span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .home-mobile-menu[open] summary span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

.home-mobile-menu > .home-mobile-nav {
    position: absolute;
    z-index: 20;
    top: 50px;
    right: -16px;
    display: grid;
    width: min(310px, calc(100vw - 32px));
    padding: 8px 16px;
    border-top: 3px solid var(--home-red);
    background: var(--home-ink);
    box-shadow: 0 18px 40px rgba(20, 17, 13, 0.24);
  }

.home-mobile-menu .home-mobile-nav a {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.84);
  font-weight: 600;
}

body.home-page #wrapper .home-mobile-menu .home-mobile-nav a {
  color: rgba(255, 255, 255, 0.84);
}

  .home-hero {
    grid-template-columns: minmax(0, 1fr);
  }

  .home-page .home-landing-intro {
    max-width: 520px;
  }

  .home-search form {
    grid-template-columns: 1fr 1fr 140px;
  }

  .home-current-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .home-page #nav_right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .home-market-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .home-market-grid article > p {
    min-height: 0;
  }

  .home-page .portal-data-snapshot {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  body.home-page {
    background: var(--home-paper);
  }

  .home-page #wrapper.home-wrapper {
    width: 100%;
    box-shadow: none;
  }

  .home-utility {
    min-height: 34px;
    padding: 0 16px;
    font-size: 11px;
  }

  .home-data-date,
  .home-utility .weather-current strong,
  .home-utility-nav > a:not(:first-child) {
    display: none;
  }

  .home-utility-nav {
    gap: 0;
  }

  .home-masthead {
    min-height: 72px;
    padding: 13px 16px;
  }

  .home-brand {
    gap: 10px;
  }

  .home-brand > img {
    width: 23px;
    height: 38px;
  }

  .home-brand-copy strong {
    font-size: 17px;
  }

  .home-brand-copy small {
    display: none;
  }

  .home-hero {
    gap: 24px;
    padding: 32px 16px 26px;
  }

  .home-hero-copy .home-eyebrow {
    margin-bottom: 12px;
  }

  .home-hero h1 {
    margin-bottom: 13px;
    font-size: clamp(38px, 11.5vw, 50px);
  }

  .home-hero-lead {
    font-size: 14.5px;
  }

  .home-page .home-landing-intro > h2 {
    display: none;
  }

  .home-search {
    padding: 18px 16px 20px;
  }

  .home-search form {
    grid-template-columns: minmax(0, 1fr);
  }

  .home-search-field {
    padding: 10px 14px 8px;
  }

  .home-page .home-search-field input {
    font-size: 16px;
  }

  .home-search-submit {
    min-height: 52px;
  }

  .home-popular-searches {
    flex-wrap: nowrap;
    margin-right: -16px;
    overflow: hidden;
  }

  .home-popular-searches strong {
    display: none;
  }

  .home-popular-searches a {
    flex: 0 0 auto;
    padding: 7px 11px;
  }

  .home-section {
    padding: 32px 16px;
  }

  .home-section-heading,
  .home-page .home-editorial-head,
  .home-page .home-sources-head {
    gap: 12px;
    padding-bottom: 10px;
  }

  .home-section-heading h2,
  .home-page .home-editorial-head .section-title-inline,
  .home-page .home-sources-head .section-title-inline {
    font-size: 25px;
  }

  .home-section-heading p {
    max-width: 48%;
    font-size: 11.5px;
  }

  .home-branches {
    padding-bottom: 0;
  }

  .home-page .home-branches #sbranche {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-page .home-branches div.rubriklink {
    grid-template-columns: minmax(0, 1fr);
    gap: 2px;
    min-height: 72px;
    padding: 12px 13px;
  }

  .home-page .home-branches div.rubriklink:nth-of-type(n + 9) {
    display: none;
  }

  .home-page .home-branches div.rubriklink::before {
    margin: 0;
  }

  .home-page .home-branches div.rubriklink a {
    font-size: 14px;
  }

  .home-page .home-branches div.rubriklink a::after {
    display: none;
  }

  .home-mobile-more {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid var(--home-faint);
    color: #c3411f;
    font-family: var(--home-display);
    font-size: 14px;
    font-weight: 800;
    text-align: center;
  }

  .home-current-grid {
    gap: 28px;
    padding: 36px 16px;
  }

  .home-page .news-source-list li {
    display: block;
    padding: 15px 0;
  }

  .home-page .news-feed-meta {
    display: block;
    margin-bottom: 5px;
    padding: 0;
  }

  .home-page .news-feed-title {
    display: block;
    font-size: 16px;
  }

  .home-page .news-feed-summary {
    display: none;
  }

  .home-page .home-city-update--weather {
    display: none;
  }

  .home-page #nav_right {
    display: flex;
  }

  .home-market {
    padding-top: 0;
  }

  .home-market-grid article {
    padding: 19px 0;
  }

  .home-market-card-head {
    display: block;
    margin-bottom: 8px;
  }

  .home-market-card-head span {
    display: block;
    margin-top: 3px;
  }

  .home-sources {
    padding: 4px 16px 36px;
  }

  .home-page .portal-sources {
    padding-top: 18px;
  }

  .home-page .portal-data-snapshot,
  .home-page .portal-source-list {
    grid-template-columns: minmax(0, 1fr);
  }

  .home-page .portal-data-snapshot div {
    min-height: 82px;
  }

  .home-page .portal-source-groups {
    display: block;
  }

  .home-page .portal-source-groups > strong {
    display: block;
    margin-bottom: 8px;
  }

  .home-page .home-districts .district-nav {
    display: block;
    margin-top: 18px;
  }

  .home-page .home-districts .district-nav-map {
    display: none;
  }

  .home-page .home-districts .district-nav-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .home-page .home-districts .district-nav-list li {
    padding: 0;
    border: 0;
    color: transparent;
    font-size: 0;
  }

  .home-page .home-districts a.wo {
    display: inline-flex;
    padding: 8px 12px;
    border: 1px solid rgba(20, 17, 13, 0.18);
    background: var(--home-paper);
    font-size: 12.5px;
  }

  .home-streets {
    padding: 32px 16px;
  }

  .home-page .home-streets .street-letter-link {
    width: 38px;
    height: 38px;
  }

  .home-entry-cta {
    display: block;
    padding: 30px 16px;
  }

  .home-entry-cta h2 {
    font-size: 28px;
  }

  .home-entry-cta p {
    margin-bottom: 18px;
    font-size: 14px;
  }

  .home-entry-cta > a {
    display: flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
  }

  .home-page .site-footer {
    display: block;
    min-height: 0;
    padding: 26px 16px;
  }

  .home-page .site-footer-nav {
    justify-content: flex-start;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .home-page .site-footer-brand {
    display: block;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .home-primary-nav a::after,
  .home-mobile-menu summary span {
    transition: none;
  }
}
