.zone-hub {
  padding: 28px 0 56px;
}

.zone-hub-inner {
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
}

.zone-hub-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  border: 1px solid #91caff;
  border-radius: 999px;
  background: #e6f4ff;
  color: #0958d9;
  font-size: 12px;
  font-weight: 700;
}

.zone-hub-eyebrow-edi {
  border-color: #ffd591;
  background: #fff7e6;
  color: #ad6800;
}

.zone-hub h1 {
  margin: 16px 0 0;
  font-size: 32px;
  line-height: 40px;
}

.zone-hub-lead {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 26px;
}

.zone-hub-note {
  margin: 10px 0 0;
  color: var(--soft);
  font-size: 14px;
  line-height: 22px;
}

.zone-hub-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.zone-hub-benefits li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-height: 72px;
  padding: 12px 14px;
  border: 1px solid rgba(217, 115, 57, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
}

.zone-hub-benefits strong {
  font-size: 14px;
  line-height: 20px;
}

.zone-hub-benefits span {
  color: var(--muted);
  font-size: 12px;
  line-height: 18px;
}

.zone-hub-steps {
  display: grid;
  gap: 12px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.zone-hub-steps li {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.zone-hub-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: #fff1e8;
  color: #b85d27;
  font-size: 13px;
  font-weight: 700;
}

.zone-hub-steps h3 {
  margin: 0;
  font-size: 15px;
  line-height: 22px;
}

.zone-hub-steps p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 20px;
}

.zone-hub-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.zone-hub-section {
  margin-top: 32px;
  padding: 20px 22px;
  border: 1px solid rgba(217, 115, 57, 0.14);
  border-radius: 10px;
  background: #fffaf7;
}

.zone-hub-section h2 {
  margin: 0;
  font-size: 18px;
  line-height: 26px;
}

.zone-hub-list {
  margin: 12px 0 0;
  padding-left: 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 24px;
}

.zone-hub-showcase {
  width: 100%;
  margin: 32px 0 0;
  padding-bottom: 0;
}

.showcase-inner {
  width: 100%;
}

.zone-hub-showcase .showcase-intro {
  margin-bottom: 20px;
  text-align: center;
}

.zone-hub-showcase .showcase-intro h2 {
  margin: 0;
  font-size: 20px;
  line-height: 28px;
}

.zone-hub-showcase .showcase-lead {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 20px;
}

.showcase-section {
  margin-bottom: 32px;
}

.showcase-section:last-child {
  margin-bottom: 0;
}

.showcase-section-title {
  margin: 0 0 12px;
  font-size: 15px;
  font-weight: 700;
  line-height: 22px;
}

.showcase-tile-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.showcase-tile {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 148px;
  padding: 10px 10px 8px;
  border: 1px solid rgba(217, 115, 57, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 20px rgba(60, 34, 20, 0.04);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.showcase-tile:hover {
  transform: translateY(-1px);
  border-color: rgba(217, 115, 57, 0.32);
  box-shadow: 0 12px 24px rgba(60, 34, 20, 0.07);
}

.showcase-tile-route {
  margin: 0;
  min-height: 32px;
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.showcase-tile-badge {
  display: inline-block;
  margin-right: 4px;
  padding: 1px 5px;
  border-radius: 4px;
  background: #fff7f0;
  color: #b85d27;
  font-size: 10px;
  font-weight: 700;
  line-height: 14px;
  vertical-align: middle;
}

.showcase-tile-route-text {
  font-weight: 600;
}

.showcase-tile-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px 8px;
  margin: 0;
  flex: 1;
}

.showcase-tile-meta-item {
  min-width: 0;
}

.showcase-tile-meta dt {
  margin: 0;
  color: var(--soft);
  font-size: 10px;
  line-height: 14px;
}

.showcase-tile-meta dd {
  margin: 2px 0 0;
  overflow: hidden;
  color: var(--text);
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.showcase-tile-meta-price .listing-price {
  display: block;
  color: #c45c00;
  font-size: 13px;
  font-weight: 700;
  line-height: 16px;
}

.showcase-tile-meta-price .listing-price-negotiable {
  color: var(--soft);
  font-size: 12px;
  font-weight: 600;
}

.showcase-tile-cta {
  width: 100%;
  min-width: 0;
  margin-top: auto;
  padding: 7px 10px;
  font-size: 12px;
  line-height: 16px;
  text-align: center;
}

@media (max-width: 900px) {
  .zone-hub-inner {
    width: calc(100% - 32px);
  }

  .showcase-tile-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .showcase-tile-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .showcase-tile {
    min-height: 156px;
    padding: 11px 10px 9px;
  }
}

@media (max-width: 640px) {
  .zone-hub-inner {
    width: calc(100% - 24px);
  }

  .zone-hub-benefits {
    grid-template-columns: 1fr;
  }

  .showcase-tile-grid {
    grid-template-columns: 1fr;
  }

  .showcase-tile-route {
    min-height: auto;
  }
}

.home-blog {
  width: 100%;
  margin: 40px 0 0;
  padding: 40px 36px 44px;
  border: 1px solid rgba(217, 115, 57, 0.16);
  border-radius: 14px;
  background:
    linear-gradient(180deg, #fffaf6 0%, #ffffff 58%),
    #ffffff;
  box-shadow: 0 18px 40px rgba(60, 34, 20, 0.06);
}

.home-blog-inner {
  width: 100%;
}

.home-blog-intro {
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
}

.home-blog h2 {
  margin: 0;
  font-size: clamp(28px, 3.2vw, 34px);
  line-height: 1.25;
}

.home-blog-lead {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 26px;
}

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

.home-blog-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 220px;
  padding: 18px 18px 16px;
  border: 1px solid rgba(217, 115, 57, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.96);
}

.home-blog-date {
  color: var(--soft);
  font-size: 12px;
  line-height: 18px;
}

.home-blog-card-title {
  margin: 0;
  font-size: 17px;
  line-height: 24px;
}

.home-blog-card-summary {
  margin: 0;
  flex: 1;
  color: var(--muted);
  font-size: 14px;
  line-height: 22px;
}

.home-blog-details {
  margin-top: auto;
}

.home-blog-details summary {
  cursor: pointer;
  color: #b85d27;
  font-size: 13px;
  font-weight: 700;
  list-style: none;
}

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

.home-blog-body {
  margin-top: 10px;
  color: var(--text);
  font-size: 14px;
  line-height: 22px;
}

@media (max-width: 900px) {
  .home-blog-grid {
    grid-template-columns: 1fr;
  }

  .home-blog {
    padding: 32px 24px 36px;
  }
}

.listing-publisher {
  display: grid;
  gap: 1px;
  color: var(--muted);
  font-size: 11px;
  line-height: 15px;
}

.listing-publisher--compact {
  font-size: 10px;
  line-height: 14px;
}

.listing-publisher-line {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.listing-publisher-company {
  color: #7a5a45;
  font-weight: 600;
}

.listing-publisher-contact {
  color: var(--soft);
}
