.portal-inner-context {
  --portal-green: #1e6d38;
  --portal-green-deep: #12492a;
  --portal-green-soft: #edf6ef;
  --portal-blue-soft: #eff5ff;
  --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%);
}

.portal-inner-context #masthead,
.portal-inner-context #bloghash-copyright {
  display: none;
}

.portal-inner-context #main {
  padding-top: 0;
}

.portal-inner {
  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-inner__content {
  display: grid;
  gap: 24px;
  padding-top: 20px;
}

.portal-inner__intro {
  padding: 6px 2px 0;
}

.portal-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  padding: 0;
  list-style: none;
  color: var(--portal-muted);
  font-size: 0.92rem;
}

.portal-breadcrumb__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.portal-breadcrumb__item + .portal-breadcrumb__item::before {
  content: "/";
  color: #94a3b8;
  margin-right: 2px;
}

.portal-breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.portal-breadcrumb a:hover,
.portal-breadcrumb a:focus {
  color: var(--portal-green);
}

.portal-inner__intro-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.portal-inner__intro-copy {
  min-width: 0;
}

.portal-inner__eyebrow {
  margin: 0 0 6px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--portal-green);
}

.portal-inner__title {
  margin: 0;
  color: var(--portal-text);
  font-size: clamp(2rem, 3vw, 2.65rem);
  line-height: 1.1;
}

.portal-inner__description {
  max-width: 760px;
  margin: 10px 0 0;
  color: var(--portal-muted);
  font-size: 1rem;
  line-height: 1.65;
}

.portal-inner__intro-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.portal-inline-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--portal-border);
  text-decoration: none;
  font-weight: 700;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.portal-inline-action:hover,
.portal-inline-action:focus {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(18, 44, 27, 0.10);
}

.portal-inline-action--primary {
  background: var(--portal-green);
  border-color: var(--portal-green);
  color: #fff;
}

.portal-inline-action--secondary {
  background: #fff;
  color: var(--portal-green);
}

.portal-filter-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.portal-filter-chip {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--portal-border);
  background: #fff;
  color: var(--portal-text);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
}

.portal-filter-chip:hover,
.portal-filter-chip:focus,
.portal-filter-chip.is-active {
  background: var(--portal-green-soft);
  border-color: rgba(30, 109, 56, 0.24);
  color: var(--portal-green-deep);
}

.portal-filter-card,
.portal-list-card {
  padding: 18px 20px 20px;
}

.portal-filter-card .portal-card__header,
.portal-list-card .portal-card__header {
  align-items: center;
  margin-bottom: 14px;
}

.portal-list-card__write {
  min-height: 36px;
  padding: 0 14px;
  font-size: 0.94rem;
  white-space: nowrap;
}

.portal-inner__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: start;
  gap: 24px;
}

.portal-inner__main {
  min-width: 0;
  display: grid;
  gap: 24px;
}

.portal-inner__sidebar {
  display: grid;
  gap: 16px;
  align-content: start;
}

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

.portal-side-list,
.portal-side-info {
  list-style: none;
  margin: 0;
  padding: 0;
}

.portal-side-list li + li,
.portal-side-info li + li {
  border-top: 1px solid rgba(148, 163, 184, 0.18);
}

.portal-side-list a {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 0;
  color: inherit;
  text-decoration: none;
}

.portal-side-list a:hover strong,
.portal-side-list a:focus strong {
  color: var(--portal-green);
}

.portal-side-list__copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.portal-side-list__copy strong,
.portal-side-list strong {
  display: block;
  color: var(--portal-text);
  font-size: 1.06rem;
  line-height: 1.48;
}

.portal-side-list__copy small,
.portal-side-list small {
  display: block;
  color: var(--portal-muted);
  font-size: 0.92rem;
  line-height: 1.35;
}

.portal-side-list--ordered .portal-side-list__rank {
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--portal-green-soft);
  color: var(--portal-green);
  font-weight: 700;
}

.portal-side-info li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 0;
  color: var(--portal-text);
  line-height: 1.6;
}

.portal-side-info__icon {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--portal-green-soft);
  color: var(--portal-green);
}

.portal-side-cta {
  display: grid;
  gap: 14px;
}

.portal-side-cta p {
  margin: 0;
  color: var(--portal-muted);
  line-height: 1.65;
}

.portal-listing {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.portal-listing + .portal-listing {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
}

.portal-listing__thumb {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  min-height: 118px;
  background: linear-gradient(135deg, #dceaf7, #eff6ff);
  text-decoration: none;
}

.portal-listing__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.portal-listing__placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: var(--portal-green);
  font-weight: 700;
  font-size: 1.15rem;
}

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

.portal-listing__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: var(--portal-muted);
  font-size: 0.84rem;
}

.portal-listing__badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--portal-green-soft);
  color: var(--portal-green);
  font-weight: 700;
}

.portal-listing__body h2 {
  margin: 0;
  font-size: 1.16rem;
  line-height: 1.4;
}

.portal-listing__body h2 a {
  color: var(--portal-text);
  text-decoration: none;
}

.portal-listing__body h2 a:hover,
.portal-listing__body h2 a:focus {
  color: var(--portal-green);
}

.portal-listing__body p {
  margin: 10px 0 0;
  color: var(--portal-muted);
  line-height: 1.7;
}

.portal-pagination {
  margin-top: 8px;
}

.portal-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  margin: 0 4px 0 0;
  padding: 0 12px;
  border-radius: 12px;
  border: 1px solid var(--portal-border);
  background: #fff;
  color: var(--portal-text);
  text-decoration: none;
}

.portal-pagination .page-numbers.current,
.portal-pagination .page-numbers:hover,
.portal-pagination .page-numbers:focus {
  background: var(--portal-green);
  border-color: var(--portal-green);
  color: #fff;
}

.portal-empty-state {
  padding: 26px 18px;
  border-radius: 22px;
  border: 1px dashed rgba(148, 163, 184, 0.38);
  background: rgba(255, 255, 255, 0.7);
  color: var(--portal-muted);
  text-align: center;
}

.portal-inner .job-hero,
.portal-inner .market-hero,
.portal-inner .real-hero {
  display: none;
}

.portal-inner .job-board--main,
.portal-inner .market-results,
.portal-inner .real-results {
  width: 100%;
  margin: 0;
}

.portal-inner .job-toolbar,
.portal-inner .market-toolbar,
.portal-inner .real-toolbar {
  margin: 0;
}

.portal-inner .market-toolbar {
  max-width: none;
  padding: 14px 0 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.portal-inner .market-toolbar .toolbar-left {
  gap: 16px;
}

.portal-inner .real-toolbar {
  max-width: none;
  padding: 0;
}

.portal-inner--market .market-results,
.portal-inner--real-estate .real-results {
  max-width: none;
  padding: 0;
  margin-top: 0;
}

.portal-inner--jobs .job-grid--simple {
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
}

.portal-inner--jobs .job-card {
  border: 1px solid var(--portal-border);
  box-shadow: none;
}

.portal-inner--jobs .job-card__link {
  flex-direction: row;
  gap: 16px;
  align-items: stretch;
}

.portal-inner--jobs .job-card__media {
  flex: 0 0 220px;
  width: 220px;
  aspect-ratio: 4 / 3;
  border-right: 1px solid rgba(148, 163, 184, 0.18);
  border-bottom: none;
}

.portal-inner--jobs .job-card__body {
  padding: 18px 20px 18px 0;
}

.portal-inner--jobs .job-card__excerpt,
.portal-inner--jobs .job-card__posted {
  margin: 0;
  color: var(--portal-muted);
}

.portal-inner--jobs .job-card__posted {
  font-size: 0.84rem;
}

.portal-inner--market .market-grid,
.portal-inner--real-estate .real-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
}

.portal-inner--market .market-card,
.portal-inner--real-estate .real-card {
  border-radius: 24px;
  border: 1px solid var(--portal-border);
  box-shadow: none;
  background: #fff;
}

.portal-inner--market .market-card__link {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  min-height: 100%;
}

.portal-inner--market .market-card__media {
  min-height: 170px;
}

.portal-inner--market .market-card__meta {
  padding: 18px 20px;
}

.portal-inner--real-estate .real-card {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 0;
  overflow: hidden;
}

.portal-inner--real-estate .real-card__media {
  min-height: 210px;
}

.portal-inner--real-estate .real-card__body {
  padding: 18px 20px;
}

.portal-inner--real-estate .real-pagination {
  margin-top: 18px;
}

.portal-inner--real-estate .filter-dropdown__location-search input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d8e0f0;
  border-radius: 8px;
  font-size: 14px;
}

.portal-inner--real-estate .filter-dropdown__suggestions {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
  max-height: 220px;
  overflow-y: auto;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  box-shadow: 0 6px 24px rgba(15, 23, 42, 0.08);
}

.portal-inner--real-estate .filter-dropdown__suggestions li {
  padding: 10px 12px;
  cursor: pointer;
  border-bottom: 1px solid #f1f5f9;
  background: #fff;
}

.portal-inner--real-estate .filter-dropdown__suggestions li:last-child {
  border-bottom: none;
}

.portal-inner--real-estate .filter-dropdown__suggestions li:hover,
.portal-inner--real-estate .filter-dropdown__suggestions li:focus {
  background: #eff6ff;
  outline: none;
}

.portal-inner--community .community-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 24px;
  align-items: start;
}

.portal-inner--community .community-sidebar {
  grid-column: 1 / -1;
  width: 100%;
  margin: 0;
}

.portal-inner--community .community-sidebar__section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding: 18px 20px;
  border: 1px solid var(--portal-border);
  border-radius: 24px;
  background: #fff;
  box-shadow: none;
}

.portal-inner--community .community-sidebar__section h2 {
  flex: 0 0 100%;
  margin: 0 0 2px;
  color: var(--portal-text);
}

.portal-inner--community .community-channel {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--portal-border);
  background: #fff;
}

.portal-inner--community .community-channel.is-active {
  background: var(--portal-green-soft);
  border-color: rgba(30, 109, 56, 0.24);
}

.portal-inner--community .community-channel__count {
  margin-left: 2px;
  color: var(--portal-muted);
}

.portal-inner--community .community-feed,
.portal-inner--community .community-trending {
  min-width: 0;
}

.portal-inner--community .community-card__media-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: 5px;
  overflow: hidden;
}

.portal-inner--community .community-card__media-grid.has-multiple {
  grid-template-columns: repeat(2, 1fr);
}

.portal-inner--community .community-card__media-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  background: #f7f8fb;
}

.portal-inner--community .community-card__media-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portal-inner--community .community-card__media-count {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
}

.portal-inner--community .community-composer,
.portal-inner--community .community-card,
.portal-inner--community .community-trending__card {
  border: 1px solid var(--portal-border);
  box-shadow: none;
}

.portal-inner--community .community-channel-toggle {
  display: none;
}

.portal-inner--community .community-trending {
  display: grid;
  gap: 16px;
  align-content: start;
}

.portal-inner--community .community-feed > .community-pins,
.portal-inner--community .community-feed > .community-notice,
.portal-inner--community .community-feed > .community-composer,
.portal-inner--community .community-feed > .community-composer__quicklinks {
  margin-bottom: 16px;
}

.portal-inner--community .community-feed > .community-pins {
  margin-top: 0;
}

.portal-inner--community .community-pins__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0 10px;
}

.portal-inner--community .community-pins__item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 8px 10px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #fff;
}

.portal-inner--community .community-pins__title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0f172a;
  font-weight: 600;
}

.portal-inner--community .community-pins__title a {
  color: inherit;
  text-decoration: none;
}

.portal-inner--community .community-pins__title a:hover,
.portal-inner--community .community-pins__title a:focus {
  text-decoration: underline;
}

.portal-inner--community .community-pins__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #6b7280;
  font-size: 13px;
}

.portal-inner--community .community-pins__channel {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 8px;
  border-radius: 999px;
  background: #eef2ff;
  color: #4338ca;
  font-weight: 600;
}

.portal-inner--community .community-pins__date {
  color: #6b7280;
}

.portal-inner--community .community-pins__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #111827;
  font-size: 14px;
}

.portal-inner--community .community-empty {
  margin: 0;
  padding: 24px 18px;
  border-radius: 22px;
  border: 1px dashed rgba(148, 163, 184, 0.38);
  background: rgba(255, 255, 255, 0.7);
}

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

.portal-insight-card {
  padding: 18px;
  border-radius: 22px;
  border: 1px solid var(--portal-border);
  background: linear-gradient(180deg, #fff, #f8fbf8);
}

.portal-insight-card small {
  display: block;
  color: var(--portal-muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.portal-insight-card strong {
  display: block;
  margin-top: 8px;
  color: var(--portal-text);
  font-size: 1.35rem;
  line-height: 1.3;
}

.portal-insight-card p {
  margin: 10px 0 0;
  color: var(--portal-muted);
  line-height: 1.7;
}

.portal-directory-feature {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  overflow: hidden;
  padding: 0;
}

.portal-directory-feature__media {
  min-height: 240px;
  padding: 24px;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(145deg, #e1f3e8, #f6fbf6);
}

.portal-directory-feature__media span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--portal-green-deep);
  font-weight: 700;
}

.portal-directory-feature__media--bbq {
  background: linear-gradient(135deg, #f7d1c0, #ffe9df);
}

.portal-directory-feature__media--cafe {
  background: linear-gradient(135deg, #e7d9c7, #f8f0e8);
}

.portal-directory-feature__media--taco {
  background: linear-gradient(135deg, #f8e5a7, #fff7d2);
}

.portal-directory-feature__media--sushi {
  background: linear-gradient(135deg, #d4ecf7, #eef9ff);
}

.portal-directory-feature__body {
  padding: 22px 24px;
}

.portal-directory-feature__body h2 {
  margin: 0;
  color: var(--portal-text);
  font-size: 1.4rem;
}

.portal-directory-feature__body p {
  margin: 10px 0 0;
  color: var(--portal-muted);
  line-height: 1.75;
}

.portal-directory-meta {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.portal-directory-meta li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--portal-muted);
  line-height: 1.6;
}

.portal-directory-meta i {
  color: var(--portal-green);
  margin-top: 3px;
}

.portal-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.portal-tag-list span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--portal-green-soft);
  color: var(--portal-green-deep);
  font-size: 0.88rem;
  font-weight: 700;
}

.portal-directory-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

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

.portal-directory-group + .portal-directory-group {
  padding-top: 24px;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
}

.portal-directory-group__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.portal-directory-group__header h3 {
  margin: 0;
  color: var(--portal-text);
  font-size: 1.12rem;
}

.portal-directory-group__header p {
  margin: 0;
  color: var(--portal-muted);
}

.portal-directory-entry-list {
  display: grid;
  gap: 16px;
}

.portal-directory-entry {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 16px;
  padding: 20px;
  border-radius: 24px;
  border: 1px solid var(--portal-border);
  background: #fff;
}

.portal-directory-entry__media {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.portal-directory-entry__swatch,
.portal-directory-entry__icon {
  width: 52px;
  height: 52px;
  border-radius: 18px;
}

.portal-directory-entry__swatch {
  display: inline-block;
}

.portal-directory-entry__swatch--bbq {
  background: linear-gradient(135deg, #f7d1c0, #ffe9df);
}

.portal-directory-entry__swatch--cafe {
  background: linear-gradient(135deg, #e7d9c7, #f8f0e8);
}

.portal-directory-entry__swatch--taco {
  background: linear-gradient(135deg, #f8e5a7, #fff7d2);
}

.portal-directory-entry__swatch--sushi {
  background: linear-gradient(135deg, #d4ecf7, #eef9ff);
}

.portal-directory-entry__icon {
  display: grid;
  place-items: center;
  background: var(--portal-green-soft);
  color: var(--portal-green);
  font-size: 1.2rem;
}

.portal-directory-entry__content {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.portal-directory-entry__top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.portal-directory-entry__eyebrow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.portal-directory-entry__price {
  color: var(--portal-green);
  font-weight: 700;
}

.portal-directory-entry__top h3 {
  margin: 0;
  color: var(--portal-text);
  font-size: 1.15rem;
  line-height: 1.4;
}

.portal-directory-entry__top p {
  margin: 10px 0 0;
  color: var(--portal-muted);
  line-height: 1.7;
}

.portal-directory-entry__aside {
  min-width: 160px;
  display: grid;
  gap: 4px;
  text-align: right;
  color: var(--portal-muted);
  font-size: 0.92rem;
}

.portal-directory-entry__aside strong {
  color: var(--portal-text);
  font-size: 1rem;
}

.portal-directory-category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.portal-directory-category-card {
  display: block;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid var(--portal-border);
  background: #fff;
  color: inherit;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.portal-directory-category-card:hover,
.portal-directory-category-card:focus {
  transform: translateY(-1px);
  border-color: rgba(30, 109, 56, 0.22);
  box-shadow: 0 12px 26px rgba(17, 40, 25, 0.08);
}

.portal-directory-category-card strong,
.portal-directory-category-card span {
  display: block;
}

.portal-directory-category-card strong {
  color: var(--portal-text);
  font-size: 1.05rem;
}

.portal-directory-category-card span {
  margin-top: 6px;
  color: var(--portal-green);
  font-weight: 700;
}

.portal-directory-category-card p {
  margin: 10px 0 0;
  color: var(--portal-muted);
  line-height: 1.65;
}

.portal-board-toolbar__summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  margin-top: 14px;
}

.portal-board-toolbar__summary strong {
  color: var(--portal-text);
  font-size: 1rem;
}

.portal-board-toolbar__summary span {
  color: var(--portal-muted);
}

.portal-board-toolbar__filters {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

.portal-board-toolbar__group {
  display: grid;
  gap: 8px;
}

.portal-board-toolbar__label {
  color: var(--portal-text);
  font-size: 0.92rem;
  font-weight: 700;
}

.portal-inner--restaurants .job-grid--simple,
.portal-inner--business .job-grid--simple {
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
  padding-bottom: 0;
}

.portal-inner--restaurants .job-card,
.portal-inner--business .job-card {
  border: 1px solid var(--portal-border);
  box-shadow: none;
}

.portal-inner--restaurants .job-card__link,
.portal-inner--business .job-card__link {
  flex-direction: row;
  gap: 16px;
  align-items: stretch;
}

.portal-inner--restaurants .job-card__media,
.portal-inner--business .job-card__media {
  flex: 0 0 220px;
  width: 220px;
  aspect-ratio: 4 / 3;
  border-right: 1px solid rgba(148, 163, 184, 0.18);
  border-bottom: none;
}

.portal-inner--restaurants .job-card__body,
.portal-inner--business .job-card__body {
  flex: 1;
  gap: 10px;
  padding: 18px 20px 20px 0;
}

.portal-board-card__placeholder {
  position: relative;
  place-items: start;
  align-content: end;
  padding: 18px;
  color: #102111;
  text-align: left;
  background: linear-gradient(145deg, #eff5ef, #dbe9df);
}

.portal-board-card__placeholder strong,
.portal-board-card__placeholder small,
.portal-board-card__placeholder i {
  position: relative;
  z-index: 1;
}

.portal-board-card__placeholder strong {
  display: block;
  margin-top: 6px;
  font-size: 1.2rem;
  line-height: 1.35;
}

.portal-board-card__placeholder small {
  display: block;
  margin-top: 4px;
  font-size: 0.9rem;
  color: rgba(16, 33, 17, 0.78);
}

.portal-board-card__placeholder i {
  font-size: 1.7rem;
  color: var(--portal-green);
}

.portal-board-card__placeholder-pill {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--portal-green-deep);
  font-size: 0.82rem;
  font-weight: 800;
}

.portal-board-card__placeholder--bbq {
  background: linear-gradient(135deg, #f7d1c0, #ffe9df);
}

.portal-board-card__placeholder--cafe {
  background: linear-gradient(135deg, #e7d9c7, #f8f0e8);
}

.portal-board-card__placeholder--taco {
  background: linear-gradient(135deg, #f8e5a7, #fff7d2);
}

.portal-board-card__placeholder--sushi {
  background: linear-gradient(135deg, #d4ecf7, #eef9ff);
}

.portal-board-card__placeholder--restaurant {
  background: linear-gradient(135deg, #e4f2e7, #f4faf5);
}

.portal-board-card__placeholder--business {
  background: linear-gradient(135deg, #d8f1de, #edf8f0);
}

.portal-board-card__media-link {
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.portal-board-card__title-link {
  color: inherit;
  text-decoration: none;
}

.portal-board-card__title-link:hover,
.portal-board-card__title-link:focus {
  color: var(--portal-green);
}

.portal-board-card__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 4px;
}

.portal-board-card__contact {
  color: var(--portal-green);
  font-weight: 700;
}

.portal-board-card__meta {
  color: var(--portal-muted);
  font-size: 0.9rem;
}

.portal-board-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.portal-submit-guard {
  display: grid;
  gap: 12px;
  text-align: center;
  justify-items: center;
  padding: 20px 12px;
}

.portal-submit-guard h2,
.portal-submit-guard p {
  margin: 0;
}

.portal-inner--news .bloghash-container,
.portal-inner--jobs .bloghash-container,
.portal-inner--market .bloghash-container,
.portal-inner--real-estate .bloghash-container,
.portal-inner--restaurants .bloghash-container,
.portal-inner--business .bloghash-container {
  width: 100%;
  padding: 0;
}

@media (max-width: 1100px) {
  .portal-inner__layout,
  .portal-inner--community .community-layout {
    grid-template-columns: minmax(0, 1fr);
  }

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

  .portal-inner__sidebar {
    order: 2;
  }

  .portal-inner--community .community-trending {
    order: 3;
  }
}

@media (max-width: 900px) {
  .portal-inner__intro-head {
    flex-direction: column;
  }

  .portal-inner__intro-actions {
    justify-content: flex-start;
  }

  .portal-listing,
  .portal-inner--market .market-card__link,
  .portal-inner--real-estate .real-card,
  .portal-inner--jobs .job-card__link,
  .portal-directory-feature {
    grid-template-columns: minmax(0, 1fr);
    flex-direction: column;
  }

  .portal-inner--jobs .job-card__media {
    width: 100%;
    flex: 0 0 auto;
    border-right: none;
    border-bottom: 1px solid rgba(148, 163, 184, 0.18);
  }

  .portal-inner--jobs .job-card__body {
    padding: 18px 18px 20px;
  }

  .portal-inner--restaurants .job-card__link,
  .portal-inner--business .job-card__link {
    flex-direction: column;
  }

  .portal-inner--restaurants .job-card__media,
  .portal-inner--business .job-card__media {
    width: 100%;
    flex: 0 0 auto;
    border-right: none;
    border-bottom: 1px solid rgba(148, 163, 184, 0.18);
  }

  .portal-inner--restaurants .job-card__body,
  .portal-inner--business .job-card__body {
    padding: 18px;
  }

  .portal-directory-entry,
  .portal-directory-entry__top {
    grid-template-columns: minmax(0, 1fr);
    flex-direction: column;
  }

  .portal-directory-entry__aside,
  .portal-directory-group__header {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .portal-inner__content {
    gap: 20px;
  }

  .portal-inner__layout,
  .portal-inner__main,
  .portal-inner__sidebar {
    gap: 20px;
  }

  .portal-filter-card,
  .portal-list-card,
  .portal-sidebar-card {
    padding: 16px;
  }

  .portal-inner--community .community-sidebar__section {
    padding: 16px;
  }

  .portal-insight-grid,
  .portal-directory-category-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .portal-directory-entry {
    padding: 18px;
  }

  .portal-directory-feature__body {
    padding: 18px;
  }

  .portal-board-card__footer {
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .portal-listing {
    gap: 14px;
  }

  .portal-listing__thumb {
    min-height: 190px;
  }

  .portal-inner__title {
    font-size: 1.8rem;
  }
}

/* Portal write prompt */
.portal-compose-prompt {
  padding: 10px 12px;
  border: 1px solid #e4e8e1;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 5px 16px rgba(17, 40, 25, 0.04);
}

.portal-inner__main > .portal-compose-prompt {
  margin-bottom: -8px;
}

.portal-compose-prompt__link {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: #162118;
  text-decoration: none;
}

.portal-compose-prompt__avatar {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 999px;
  background: #edf6ef;
  color: #1e6d38;
  font-size: 1.2rem;
}

.portal-compose-prompt__avatar-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portal-compose-prompt__placeholder {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  color: #657066;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.4;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.portal-compose-prompt__action {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 32px;
  padding: 0 11px;
  border-radius: 999px;
  background: #1e6d38;
  color: #fff;
  font-size: 1.08rem;
  font-weight: 700;
}

.portal-compose-prompt__link:hover .portal-compose-prompt__placeholder,
.portal-compose-prompt__link:focus .portal-compose-prompt__placeholder {
  color: #1e6d38;
}

.portal-compose-prompt__link:hover .portal-compose-prompt__action,
.portal-compose-prompt__link:focus .portal-compose-prompt__action {
  background: #12492a;
}

@media (max-width: 640px) {
  .portal-compose-prompt {
    padding: 9px;
  }

  .portal-compose-prompt__link {
    gap: 8px;
  }

  .portal-compose-prompt__placeholder {
    font-size: 1.18rem;
  }

  .portal-compose-prompt__action span {
    display: none;
  }
}

/* Community board polish */
.portal-inner--community {
  --portal-border: #e4e8e1;
  --portal-shadow: 0 8px 24px rgba(17, 40, 25, 0.055);
}

.portal-inner--community .portal-home__shell {
  width: min(1180px, calc(100% - 28px));
}

.portal-inner--community .portal-inner__content {
  gap: 18px;
  padding-top: 16px;
}

.portal-inner--community .portal-header {
  padding-top: 8px;
}

.portal-inner--community .portal-header__sticky {
  border-color: #e4e8e1;
  border-radius: 0 0 18px 18px;
  box-shadow: 0 8px 22px rgba(17, 40, 25, 0.06);
}

.portal-inner--community .portal-header__top {
  grid-template-columns: minmax(250px, auto) minmax(260px, 520px) auto;
  gap: 14px;
  padding: 12px 16px 10px;
}

.portal-inner--community .portal-header__logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 13px;
}

.portal-inner--community .portal-header__brand-copy strong {
  font-size: 2.15rem;
  line-height: 1.1;
  letter-spacing: 0;
}

.portal-inner--community .portal-header__brand-copy small {
  margin-top: 3px;
  font-size: 1.12rem;
  color: #59665d;
}

.portal-inner--community .portal-header__search {
  justify-self: center;
  width: 100%;
  max-width: 520px;
  padding: 4px 5px 4px 15px;
  border-color: #e4e8e1;
  background: #fbfdf9;
  box-shadow: none;
}

.portal-inner--community .portal-header__search input {
  font-size: 1.34rem;
  padding: 8px 8px 8px 0;
}

.portal-inner--community .portal-header__search button {
  width: 36px;
  height: 36px;
  background: #1e6d38;
}

.portal-inner--community .portal-header__actions {
  gap: 8px;
}

.portal-inner--community .portal-header__action {
  min-height: 38px;
  padding: 0 12px;
  border-color: #e4e8e1;
  font-size: 1.22rem;
  box-shadow: none;
}

.portal-inner--community .portal-header__action--icon,
.portal-inner--community .portal-header__hamburger {
  width: 38px;
  height: 38px;
}

.portal-inner--community .portal-header__nav {
  padding: 8px 12px 12px;
  border-top-color: #edf0ec;
}

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

.portal-inner--community .portal-nav__link {
  min-height: 36px;
  padding: 7px 10px;
  border-radius: 11px;
  border-color: #e4e8e1;
  background: #fff;
  color: #1d2a20;
  font-size: 1.14rem;
  font-weight: 700;
  box-shadow: none;
}

.portal-inner--community .portal-nav__item.is-current .portal-nav__link,
.portal-inner--community .portal-nav__link:hover,
.portal-inner--community .portal-nav__link:focus {
  background: #1e6d38;
  border-color: #1e6d38;
  color: #fff;
  box-shadow: 0 6px 14px rgba(30, 109, 56, 0.16);
}

.portal-inner--community .community-layout {
  grid-template-columns: minmax(0, 7fr) minmax(280px, 3fr);
  gap: 18px;
}

.portal-inner--community .community-sidebar__section {
  gap: 8px;
  padding: 12px 14px;
  border-color: #e4e8e1;
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(17, 40, 25, 0.035);
}

.portal-inner--community .community-sidebar__section h2 {
  margin-bottom: 0;
  font-size: 1.45rem;
}

.portal-inner--community .community-channel {
  min-height: 32px;
  padding: 0 11px;
  border-color: #e4e8e1;
  border-radius: 999px;
  color: #223025;
  font-size: 1.16rem;
}

.portal-inner--community .community-channel.is-active {
  background: #1e6d38;
  border-color: #1e6d38;
  color: #fff;
}

.portal-inner--community .community-channel.is-active .community-channel__count {
  color: rgba(255, 255, 255, 0.78);
}

.portal-inner--community .community-feed {
  gap: 0;
}

.portal-inner--community .community-composer {
  margin: 0 0 8px;
  padding: 10px 12px;
  border-color: #e4e8e1;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 5px 16px rgba(17, 40, 25, 0.04);
}

.portal-inner--community .community-composer__input {
  min-height: 44px;
  padding: 7px 12px;
  border-color: #edf0ec;
  border-radius: 12px;
  background: #f9fbf7;
  color: #657066;
  font-size: 1.3rem;
}

.portal-inner--community .community-composer__input span {
  color: #717d73;
  font-weight: 500;
}

.portal-inner--community .community-composer__avatar {
  width: 34px;
  height: 34px;
  flex-basis: 34px;
  font-size: 1.25rem;
}

.portal-inner--community .community-composer__quicklinks {
  display: flex;
  gap: 10px;
  margin: 0 0 6px;
  padding: 7px 2px 8px;
  border-bottom: 1px solid #edf0ec;
  background: transparent;
  box-shadow: none;
}

.portal-inner--community .community-composer__quicklink {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 6px;
  color: #5f6c63;
  font-size: 1.16rem;
  font-weight: 700;
  text-decoration: none;
}

.portal-inner--community .community-composer__quicklink.is-active,
.portal-inner--community .community-composer__quicklink:hover,
.portal-inner--community .community-composer__quicklink:focus {
  color: #1e6d38;
}

.portal-inner--community .community-composer__divider {
  color: #d8ded6;
}

.portal-inner--community .community-card.community-board-row {
  grid-template-columns: 110px minmax(0, 1fr) minmax(330px, 0.48fr);
  gap: 13px;
  min-height: 72px;
  padding: 4px 0;
  border-bottom: 1px solid #edf0ec;
  background: #fff;
  transition: background-color 0.16s ease;
}

.portal-inner--community .community-board-row:first-of-type {
  border-top: 1px solid #edf0ec;
}

.portal-inner--community .community-card.community-board-row:hover {
  background: #fbfdf9;
}

.portal-inner--community .community-board-row__thumb {
  width: 110px;
  height: 64px;
  border-radius: 4px;
  background: #f2f5f0;
}

.portal-inner--community .community-board-row__thumb span {
  color: #66756b;
  font-size: 1.35rem;
  font-weight: 700;
}

.portal-inner--community .community-board-row .community-board-row__title-link {
  display: flex;
  gap: 5px;
  color: #111b14;
  font-size: 1.46rem;
  font-weight: 600;
  line-height: 1.34;
}

.portal-inner--community .community-board-row__title-link small {
  color: #f04438;
  font-size: 1.16rem;
  font-weight: 500;
}

.portal-inner--community .community-board-row__meta {
  grid-template-columns: minmax(96px, 1fr) 52px 62px 62px;
  gap: 8px;
  align-items: center;
  justify-items: end;
  color: #657066;
  font-size: 1.08rem;
}

.portal-inner--community .community-board-row__channel {
  max-width: 132px;
  color: #4f5c52;
}

.portal-inner--community .community-trending {
  gap: 14px;
}

.portal-inner--community .community-trending__card,
.portal-inner--community .portal-sidebar-card {
  margin: 0;
  padding: 14px;
  border: 1px solid #e4e8e1;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(17, 40, 25, 0.045);
}

.portal-inner--community .community-trending__card h2,
.portal-inner--community .portal-sidebar-card .portal-card__header h2 {
  margin: 0 0 10px;
  color: #142218;
  font-size: 1.48rem;
  line-height: 1.35;
}

.portal-inner--community .community-trending__list {
  gap: 0;
}

.portal-inner--community .community-trending__list li + li {
  border-top: 1px solid #edf0ec;
}

.portal-inner--community .community-trending__list a {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) auto;
  gap: 8px;
  align-items: start;
  padding: 8px 0;
  color: #17241a;
  text-decoration: none;
}

.portal-inner--community .community-trending__list a:hover .community-trending__title,
.portal-inner--community .community-trending__list a:focus .community-trending__title {
  color: #1e6d38;
}

.portal-inner--community .community-trending__rank {
  color: #1e6d38;
  font-size: 1.18rem;
  font-weight: 700;
  text-align: center;
}

.portal-inner--community .community-trending__title {
  display: -webkit-box;
  overflow: hidden;
  color: #17241a;
  font-size: 1.26rem;
  font-weight: 600;
  line-height: 1.35;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.portal-inner--community .community-trending__votes {
  color: #8b968e;
  font-size: 1.06rem;
  line-height: 1.35;
  white-space: nowrap;
}

.portal-inner--community .portal-side-list li + li {
  border-top-color: #edf0ec;
}

.portal-inner--community .portal-side-list a {
  gap: 10px;
  padding: 9px 0;
  transition: background-color 0.16s ease, color 0.16s ease;
}

.portal-inner--community .portal-side-list a:hover,
.portal-inner--community .portal-side-list a:focus {
  background: #fbfdf9;
}

.portal-inner--community .portal-side-list__copy {
  gap: 3px;
}

.portal-inner--community .portal-side-list__copy strong,
.portal-inner--community .portal-side-list strong {
  color: #17241a;
  font-size: 1.24rem;
  font-weight: 600;
  line-height: 1.45;
}

.portal-inner--community .portal-side-list__copy small,
.portal-inner--community .portal-side-list small {
  color: #8b968e;
  font-size: 1.05rem;
}

@media (max-width: 1040px) {
  .portal-inner--community .community-layout {
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 16px;
  }

  .portal-inner--community .community-card.community-board-row {
    grid-template-columns: 100px minmax(0, 1fr);
  }

  .portal-inner--community .community-board-row__meta {
    grid-column: 2;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 5px 12px;
    margin-top: 4px;
  }
}

@media (max-width: 1024px) {
  .portal-inner--community .community-layout {
    grid-template-columns: minmax(0, 1fr);
  }

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

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

  .portal-inner--community .portal-header__drawer-panel .portal-nav--mobile {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .portal-inner--community .portal-inner__content {
    gap: 14px;
    padding-top: 12px;
  }

  .portal-inner--community .portal-header__top {
    padding: 11px 12px 9px;
  }

  .portal-inner--community .portal-header__brand-copy strong {
    font-size: 1.9rem;
  }

  .portal-inner--community .portal-header__brand-copy small {
    font-size: 1.02rem;
  }

  .portal-inner--community .community-sidebar__section {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding: 10px;
  }

  .portal-inner--community .community-sidebar__section h2 {
    flex: 0 0 auto;
  }

  .portal-inner--community .community-channel {
    flex: 0 0 auto;
  }

  .portal-inner--community .community-card.community-board-row {
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 10px;
    min-height: 62px;
    padding: 7px 0;
  }

  .portal-inner--community .community-board-row__thumb {
    width: 86px;
    height: 56px;
  }

  .portal-inner--community .community-board-row .community-board-row__title-link {
    font-size: 1.32rem;
  }

  .portal-inner--community .community-board-row__meta {
    font-size: 1rem;
  }

  .portal-inner--community .community-trending {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 480px) {
  .portal-inner--community .portal-header__brand-copy small {
    display: none;
  }

  .portal-inner--community .community-composer {
    padding: 9px;
  }

  .portal-inner--community .community-composer__quicklinks {
    overflow-x: auto;
    white-space: nowrap;
  }

  .portal-inner--community .community-board-row__meta {
    gap: 4px 9px;
  }

  .portal-inner--community .community-board-row__channel {
    max-width: 96px;
  }
}
