.home.blog {
  --portal-green: #1e6d38;
  --portal-green-deep: #12492a;
  --portal-green-soft: #edf6ef;
  --portal-blue-soft: #eff5ff;
  --portal-amber-soft: #fff8e7;
  --portal-red-soft: #fff1f0;
  --portal-border: rgba(19, 63, 36, 0.10);
  --portal-shadow: 0 16px 42px rgba(17, 40, 25, 0.08);
  --portal-text: #162118;
  --portal-muted: #66756b;
  background: linear-gradient(180deg, #f6fbf5 0%, #f7f8f3 100%);
}

.home.blog #masthead,
.home.blog #colophon,
.home.blog #bloghash-copyright {
  display: none;
}

.home.blog #main {
  padding-top: 0;
}

.portal-home {
  padding: 0 0 36px;
  background:
    radial-gradient(circle at top left, rgba(73, 160, 104, 0.12), transparent 28%),
    linear-gradient(180deg, #f6fbf5 0%, #f7f8f3 100%);
}

.portal-home__shell {
  width: min(1260px, calc(100% - 24px));
  margin: 0 auto;
}

.portal-home__content {
  display: grid;
  gap: 24px;
  padding-top: 20px;
}

.portal-home__masthead {
  display: grid;
  gap: 24px;
}

.portal-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding-top: 10px;
}

.portal-header__sticky {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--portal-border);
  border-radius: 0 0 26px 26px;
  box-shadow: 0 10px 32px rgba(18, 44, 27, 0.08);
  backdrop-filter: blur(18px);
}

.portal-header__top {
  display: grid;
  grid-template-columns: auto minmax(320px, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 16px 20px 14px;
}

.portal-header__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
  min-width: 0;
}

.portal-header__logo-mark {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: linear-gradient(135deg, #f0f6f0, #ffffff);
  display: grid;
  place-items: center;
  box-shadow: inset 0 0 0 1px rgba(20, 61, 35, 0.08);
  overflow: hidden;
  flex: 0 0 auto;
}

.portal-header__logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.portal-header__logo-mark--text {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--portal-green);
}

.portal-header__brand-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.portal-header__brand-copy strong {
  font-size: 2.7rem;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--portal-text);
}

.portal-header__brand-copy small {
  margin-top: 4px;
  font-size: 1.28rem;
  color: var(--portal-muted);
}

.portal-header__search {
  display: flex;
  align-items: center;
  min-width: 0;
  padding: 6px 6px 6px 18px;
  border-radius: 999px;
  border: 1px solid rgba(18, 65, 34, 0.12);
  background: #fbfdfb;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.68);
}

.portal-header__search input {
  min-width: 0;
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--portal-text);
  font-size: 1.45rem;
  padding: 10px 8px 10px 0;
}

.portal-header__search input:focus {
  outline: none;
}

.portal-header__search button {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #2e8a48, var(--portal-green));
  color: #fff;
  cursor: pointer;
}

.portal-header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-self: end;
}

.portal-header__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(18, 65, 34, 0.10);
  background: #fff;
  color: var(--portal-text);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.35rem;
}

.portal-header__action--icon {
  width: 42px;
  padding: 0;
}

.portal-header__action:hover,
.portal-header__action:focus {
  background: #f6faf6;
}

.portal-header__drawer {
  display: none;
  position: relative;
}

.portal-header__hamburger {
  list-style: none;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(18, 65, 34, 0.10);
  background: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.portal-header__hamburger::-webkit-details-marker {
  display: none;
}

.portal-header__hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--portal-text);
  border-radius: 99px;
  margin: 2px 0;
}

.portal-header__drawer-panel {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  width: min(92vw, 360px);
  padding: 16px;
  border-radius: 22px;
  border: 1px solid var(--portal-border);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--portal-shadow);
}

.portal-header__drawer-nav {
  margin-top: 14px;
}

.portal-header__drawer-actions {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.portal-header__drawer-actions a {
  display: block;
  padding: 12px 14px;
  border-radius: 14px;
  background: #f6faf6;
  color: var(--portal-text);
  font-weight: 700;
  text-decoration: none;
}

.portal-header__search--mobile {
  display: none;
  margin: 0 18px 14px;
}

.portal-header__search--drawer {
  display: flex;
  margin: 0;
}

.portal-header__nav {
  padding: 10px 14px 14px;
  border-top: 1px solid rgba(18, 65, 34, 0.08);
}

.portal-nav {
  list-style: none;
  margin: 0;
  padding: 0;
}

.portal-nav--desktop {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 10px;
}

.portal-nav--mobile {
  display: grid;
  gap: 8px;
}

.portal-nav__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border-radius: 14px;
  color: var(--portal-text);
  text-decoration: none;
  font-weight: 700;
  background: #fcfdfc;
  border: 1px solid rgba(18, 65, 34, 0.08);
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.portal-nav__item.is-current .portal-nav__link,
.portal-nav__link:hover,
.portal-nav__link:focus {
  background: linear-gradient(135deg, #2e8a48, var(--portal-green));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 12px 24px rgba(30, 109, 56, 0.18);
}

.portal-home__top-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.48fr) minmax(420px, 0.92fr);
  align-items: stretch;
  gap: 24px;
}

.portal-hero,
.portal-card,
.portal-quick-links__card,
.portal-business-strip__card,
.portal-footer {
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--portal-border);
  box-shadow: var(--portal-shadow);
}

.portal-hero {
  min-height: 360px;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 32px 34px;
  background:
    linear-gradient(90deg, rgba(247, 251, 245, 0.92) 0%, rgba(247, 251, 245, 0.74) 38%, rgba(255, 255, 255, 0.12) 68%, rgba(255, 255, 255, 0) 100%),
    var(--portal-hero-image) right center/cover no-repeat;
}

.portal-hero__copy {
  max-width: 430px;
}

.portal-hero__copy h1 {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 4.2rem;
  line-height: 1.08;
  letter-spacing: 0;
  color: #14301c;
  word-break: keep-all;
}

.portal-hero__copy h1 span {
  white-space: nowrap;
}

.portal-hero__subtext {
  margin: 18px 0 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
  max-width: 360px;
  color: var(--portal-muted);
  font-size: 1.5rem;
  line-height: 1.62;
  word-break: keep-all;
}

.portal-hero__location {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  font-weight: 700;
  color: var(--portal-green-deep);
}

.portal-home__sidebar {
  display: grid;
  gap: 24px;
  align-content: stretch;
}

.portal-card {
  padding: 16px 16px 18px;
}

.portal-card--weather {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 18px;
}

.portal-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.portal-card__header h2 {
  margin: 0;
  color: var(--portal-text);
  font-size: 1.85rem;
  line-height: 1.2;
}

.portal-card__header a {
  color: #6b7b70;
  font-size: 1.16rem;
  font-weight: 700;
  text-decoration: none;
}

.portal-weather {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 12px;
  min-height: 0;
}

.portal-weather__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 12px;
  padding: 0 0 10px;
  border-bottom: 1px solid rgba(18, 65, 34, 0.08);
}

.portal-weather__tab {
  appearance: none;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: #5c6c61;
  cursor: pointer;
  flex: 0 1 auto;
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.2;
  min-height: 28px;
  padding: 5px 9px;
  white-space: nowrap;
}

.portal-weather__tab:hover,
.portal-weather__tab:focus {
  color: var(--portal-green-deep);
}

.portal-weather__tab.is-active {
  background: #eef7f0;
  border-color: rgba(30, 109, 56, 0.18);
  color: var(--portal-green-deep);
}

.portal-weather__panel {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 0;
}

.portal-weather__panel[hidden] {
  display: none;
}

.portal-weather__current {
  display: block;
  margin-top: 2px;
  min-width: 0;
  padding: 16px;
  border-radius: 18px;
  background: linear-gradient(180deg, #fbfdfb 0%, #f6faf6 100%);
  border: 1px solid rgba(18, 65, 34, 0.08);
}

.portal-weather__current-copy {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
}

.portal-weather__current-main {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(18, 65, 34, 0.07);
}

.portal-weather__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, #fff3c7, #ffe087);
  display: grid;
  place-items: center;
  color: #c1740d;
  flex: 0 0 auto;
  font-size: 1.78rem;
}

.portal-weather__temp {
  min-width: 0;
}

.portal-weather__city {
  display: block;
  color: var(--portal-text);
  font-size: 1.22rem;
  font-weight: 900;
  line-height: 1.2;
}

.portal-weather__date {
  display: block;
  flex: 0 0 auto;
  color: var(--portal-green-deep);
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.25;
  text-align: right;
}

.portal-weather__reading {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 7px;
}

.portal-weather__reading strong {
  color: var(--portal-text);
  font-size: 3.35rem;
  line-height: 1;
}

.portal-weather__reading small {
  color: #2f6c42;
  font-size: 1.28rem;
  font-weight: 800;
}

.portal-weather__condition {
  display: block;
  margin-top: 2px;
  color: var(--portal-muted);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.25;
}

.portal-weather__range {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.portal-weather__range-item {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  min-width: 0;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(30, 109, 56, 0.10);
}

.portal-weather__range-item span {
  color: var(--portal-muted);
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.2;
}

.portal-weather__range-item strong {
  color: var(--portal-text);
  font-size: 1.05rem;
  line-height: 1.12;
}

.portal-weather__range-item small {
  color: #51735d;
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.2;
}

.portal-weather__forecast-title {
  margin-top: 12px;
  color: var(--portal-green-deep);
  font-size: 1.06rem;
  font-weight: 900;
  line-height: 1.2;
}

.portal-weather__forecast {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 7px;
  overflow: hidden;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(18, 65, 34, 0.08);
}

.portal-weather__forecast-item {
  min-width: 0;
  padding: 9px 7px;
  background: transparent;
  border: 0;
  text-align: center;
}

.portal-weather__forecast-item + .portal-weather__forecast-item {
  border-left: 1px solid rgba(18, 65, 34, 0.07);
}

.portal-weather__forecast-date,
.portal-weather__forecast-date strong,
.portal-weather__forecast-date small,
.portal-weather__forecast-temp,
.portal-weather__forecast-temp small,
.portal-weather__forecast-temp strong,
.portal-weather__forecast-temp em {
  display: block;
}

.portal-weather__forecast-date {
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(18, 65, 34, 0.07);
}

.portal-weather__forecast-date strong {
  color: var(--portal-text);
  font-size: 1.08rem;
  line-height: 1.15;
}

.portal-weather__forecast-date small {
  margin-top: 1px;
  color: var(--portal-muted);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.15;
}

.portal-weather__forecast-temp {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  column-gap: 4px;
  margin-top: 6px;
  text-align: left;
}

.portal-weather__forecast-temp small {
  grid-row: 1 / span 2;
  color: var(--portal-muted);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.1;
}

.portal-weather__forecast-temp strong {
  color: var(--portal-text);
  font-size: 0.98rem;
  line-height: 1.08;
}

.portal-weather__forecast-temp em {
  color: #51735d;
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.08;
}

.portal-calendar-list,
.portal-info-list,
.portal-news-list,
.portal-restaurant-list,
.portal-popular-list,
.portal-simple-list,
.portal-market-list {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
}

.portal-calendar-list li + li,
.portal-info-list li + li,
.portal-news-list__item + .portal-news-list__item,
.portal-restaurant-list li + li,
.portal-popular-list li + li,
.portal-simple-list li + li,
.portal-market-list li + li {
  border-top: 1px solid rgba(18, 65, 34, 0.08);
}

.portal-calendar-list li {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 10px;
  padding: 9px 0;
}

.portal-calendar-list__date {
  color: var(--portal-green);
  font-weight: 800;
}

.portal-calendar-list__title {
  color: var(--portal-text);
  line-height: 1.45;
}

.portal-info-list li {
  display: flex;
  gap: 10px;
  padding: 9px 0;
}

.portal-info-list__icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: var(--portal-green-soft);
  display: grid;
  place-items: center;
  color: var(--portal-green);
  flex: 0 0 auto;
}

.portal-info-list__body strong,
.portal-info-list__body span {
  display: block;
}

.portal-info-list__body strong {
  color: var(--portal-text);
}

.portal-info-list__body span {
  margin-top: 3px;
  color: var(--portal-muted);
  font-size: 1.23rem;
}

.portal-quick-links {
  padding: 0;
}

.portal-quick-links__grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 12px;
}

.portal-quick-links__card a {
  display: block;
  min-height: 112px;
  padding: 14px 12px;
  text-decoration: none;
  text-align: center;
  color: inherit;
}

.portal-quick-links__icon {
  width: 42px;
  height: 42px;
  margin: 0 auto 10px;
  border-radius: 14px;
  background: linear-gradient(135deg, #f4faf4, #fff);
  display: grid;
  place-items: center;
  color: var(--portal-green);
  font-size: 1.85rem;
}

.portal-quick-links__card strong {
  display: block;
  color: var(--portal-text);
  font-size: 1.34rem;
  line-height: 1.35;
}

.portal-quick-links__card p {
  margin: 5px 0 0;
  color: var(--portal-muted);
  font-size: 1.08rem;
  line-height: 1.42;
}

.portal-home__main-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.2fr) minmax(0, 0.9fr);
  gap: 24px;
  align-items: start;
}

.portal-home__main-column {
  display: grid;
  gap: 24px;
  align-content: start;
}

.portal-news-list__item a,
.portal-restaurant-list li a,
.portal-popular-list li a,
.portal-simple-list li a,
.portal-market-list li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  color: inherit;
  text-decoration: none;
}

.portal-news-list__thumb {
  width: 68px;
  height: 54px;
  flex: 0 0 auto;
  border-radius: 14px;
  background: linear-gradient(135deg, #deebdf, #f2f7f2);
  background-size: cover;
  background-position: center;
  display: grid;
  place-items: center;
  color: var(--portal-green);
  font-weight: 800;
  font-size: 1.2rem;
}

.portal-news-list__body,
.portal-restaurant-list__body,
.portal-market-list__body {
  min-width: 0;
}

.portal-news-list__body strong,
.portal-restaurant-list__body strong,
.portal-market-list__body strong,
.portal-simple-list strong {
  display: block;
  color: var(--portal-text);
  font-size: 1.45rem;
  line-height: 1.45;
}

.portal-news-list__body small,
.portal-restaurant-list__body small,
.portal-market-list__body small,
.portal-simple-list span,
.portal-simple-list small {
  display: block;
  margin-top: 4px;
  color: var(--portal-muted);
}

.portal-restaurant-list__thumb {
  width: 62px;
  height: 62px;
  flex: 0 0 auto;
  border-radius: 18px;
  background: linear-gradient(135deg, #f1f1f1, #fff);
}

.portal-restaurant-list__thumb--bbq { background: linear-gradient(135deg, #f7d1c0, #ffe9df); }
.portal-restaurant-list__thumb--cafe { background: linear-gradient(135deg, #e7d9c7, #f8f0e8); }
.portal-restaurant-list__thumb--taco { background: linear-gradient(135deg, #f8e5a7, #fff7d2); }
.portal-restaurant-list__thumb--sushi { background: linear-gradient(135deg, #d4ecf7, #eef9ff); }

.portal-restaurant-list__body span {
  display: block;
  margin-top: 4px;
  color: #4f5d54;
}

.portal-popular-list li a {
  justify-content: space-between;
}

.portal-popular-list__rank {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--portal-green-soft);
  color: var(--portal-green);
  font-size: 1.25rem;
  font-weight: 800;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.portal-popular-list__title {
  min-width: 0;
  flex: 1 1 auto;
  color: var(--portal-text);
  font-weight: 700;
  line-height: 1.45;
}

.portal-popular-list__comments {
  color: var(--portal-muted);
  white-space: nowrap;
  font-size: 1.22rem;
  flex: 0 0 auto;
}

.portal-simple-list li a {
  justify-content: space-between;
  gap: 16px;
}

.portal-simple-list strong,
.portal-simple-list span,
.portal-simple-list small {
  min-width: 0;
}

.portal-market-list__thumb {
  width: 56px;
  height: 56px;
  flex: 0 0 auto;
  border-radius: 16px;
  background: linear-gradient(135deg, #eef3ee, #fff);
  background-size: cover;
  background-position: center;
  display: grid;
  place-items: center;
  color: var(--portal-green);
  font-size: 1.15rem;
  font-weight: 800;
}

.portal-market-list__price {
  color: var(--portal-green);
  font-weight: 800;
  font-size: 1.32rem;
  white-space: nowrap;
}

.portal-business-strip__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.portal-business-strip__header h2 {
  margin: 0;
  color: var(--portal-text);
  font-size: 2rem;
}

.portal-business-strip__header a {
  color: var(--portal-green);
  font-weight: 700;
  text-decoration: none;
}

.portal-business-strip__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.portal-business-strip__card {
  padding: 14px 13px;
}

.portal-business-strip__link {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  width: 100%;
  color: inherit;
  text-decoration: none;
}

.portal-business-strip__icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--portal-green-soft);
  display: grid;
  place-items: center;
  color: var(--portal-green);
  flex: 0 0 auto;
}

.portal-business-strip__card strong,
.portal-business-strip__card span,
.portal-business-strip__card p {
  display: block;
}

.portal-business-strip__card strong {
  color: var(--portal-text);
  font-size: 1.35rem;
}

.portal-business-strip__card span {
  margin-top: 4px;
  color: var(--portal-green);
  font-weight: 700;
  font-size: 1.22rem;
}

.portal-business-strip__card p {
  margin: 4px 0 0;
  color: var(--portal-muted);
  font-size: 1.16rem;
  line-height: 1.45;
}

.portal-footer {
  margin-top: 24px;
  padding: 22px 22px 28px;
}

.portal-footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 18px;
}

.portal-footer__brand-head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.portal-footer__logo {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, #f0f6f0, #fff);
  overflow: hidden;
  display: grid;
  place-items: center;
}

.portal-footer__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.portal-footer__brand strong,
.portal-footer__column h2 {
  color: var(--portal-text);
}

.portal-footer__brand strong {
  font-size: 1.9rem;
}

.portal-footer__brand p,
.portal-footer__column ul a {
  color: var(--portal-muted);
}

.portal-footer__column h2 {
  margin: 0 0 10px;
  font-size: 1.6rem;
}

.portal-footer__column ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.portal-footer__column li + li {
  margin-top: 7px;
}

.portal-footer__column a {
  text-decoration: none;
}

.portal-footer__social {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.portal-footer__social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f5faf5;
  color: var(--portal-green);
  display: grid;
  place-items: center;
}

.portal-footer__bottom {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(18, 65, 34, 0.08);
  color: var(--portal-muted);
  text-align: right;
}

.portal-bottom-nav {
  display: none;
}

.portal-card a:hover,
.portal-card a:focus,
.portal-quick-links__card:hover,
.portal-quick-links__card:focus-within,
.portal-business-strip__card:hover,
.portal-business-strip__card:focus-within {
  transform: translateY(-1px);
}

.portal-card,
.portal-quick-links__card,
.portal-business-strip__card {
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

@media (max-width: 1240px) {
  .portal-home__top-grid,
  .portal-home__main-grid {
    grid-template-columns: 1fr;
  }

  .portal-home__sidebar {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }

  .portal-quick-links__grid,
  .portal-business-strip__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .portal-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .portal-hero__copy {
    max-width: 400px;
  }

  .portal-hero {
    min-height: 300px;
    padding: 24px;
  }

  .portal-hero__copy h1 {
    font-size: 3.8rem;
  }
}

@media (max-width: 980px) {
  .portal-header__top {
    grid-template-columns: 1fr auto;
  }

  .portal-header__search {
    display: none;
  }

  .portal-header__search--mobile,
  .portal-header__drawer {
    display: flex;
  }

  .portal-header__action--text {
    display: none;
  }

  .portal-header__nav {
    display: none;
  }

  .portal-home__sidebar,
  .portal-home__main-column {
    grid-template-columns: 1fr;
  }

  .portal-quick-links__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .portal-business-strip__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .portal-hero__copy {
    max-width: 360px;
  }

  .portal-footer {
    padding-bottom: 110px;
  }

  .portal-bottom-nav {
    position: fixed;
    left: 50%;
    bottom: 10px;
    transform: translateX(-50%);
    width: min(92vw, 480px);
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;
    padding: 10px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--portal-border);
    box-shadow: 0 18px 40px rgba(16, 40, 24, 0.16);
    backdrop-filter: blur(16px);
    z-index: 60;
  }

  .portal-bottom-nav__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    min-height: 52px;
    border-radius: 16px;
    color: var(--portal-muted);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
  }

  .portal-bottom-nav__item i {
    font-size: 1.55rem;
  }

  .portal-bottom-nav__item.is-current,
  .portal-bottom-nav__item.is-primary {
    color: var(--portal-green);
    background: #f3f8f4;
  }

  .portal-bottom-nav__item.is-primary {
    box-shadow: inset 0 0 0 1px rgba(30, 109, 56, 0.12);
  }
}

@media (max-width: 720px) {
  .portal-home__shell {
    width: min(100%, calc(100% - 16px));
  }

  .portal-header__sticky {
    border-radius: 0 0 22px 22px;
  }

  .portal-header__top {
    padding: 14px 14px 10px;
  }

  .portal-header__search--mobile {
    margin: 0 14px 12px;
  }

  .portal-header__brand-copy strong {
    font-size: 2.1rem;
  }

  .portal-header__brand-copy small {
    font-size: 1.16rem;
  }

  .portal-hero {
    min-height: 220px;
    padding: 18px;
    background-position: center right;
  }

  .portal-hero__copy {
    max-width: 320px;
  }

  .portal-hero__copy h1 {
    font-size: 3rem;
  }

  .portal-hero__subtext {
    font-size: 1.4rem;
  }

  .portal-quick-links__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .portal-quick-links__card a {
    min-height: 104px;
  }

  .portal-business-strip__grid,
  .portal-footer__grid {
    grid-template-columns: 1fr;
  }

  .portal-weather__tabs {
    gap: 3px;
  }

  .portal-weather__tab {
    font-size: 0.88rem;
    padding: 4px 7px;
  }

  .portal-weather__current {
    padding: 14px;
  }

  .portal-weather__current-copy {
    display: block;
  }

  .portal-weather__date {
    margin-top: 4px;
    text-align: left;
  }

  .portal-weather__reading strong {
    font-size: 3rem;
  }

  .portal-weather__range-item {
    flex: 1 1 calc(50% - 4px);
    justify-content: center;
  }

  .portal-weather__forecast {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .portal-weather__forecast-item {
    padding: 8px 4px;
  }

  .portal-footer__bottom {
    text-align: left;
  }
}
