* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: #fafafa;
  color: #1a1a1a;
  line-height: 1.6;
}

/* ========== APP SHELL ========== */

.app-shell {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #000000;
  border-bottom: 1px solid #333333;
}

/* ========== HEADER ========== */

.app-header {
  padding: 16px 0;
  border-bottom: 1px solid #333333;
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.header-logo {
  height: 48px;
  object-fit: contain;
}

.header-search-bar {
  display: flex;
  gap: 8px;
  width: 100%;
  max-width: 500px;
}

.search-input {
  flex: 1;
  padding: 10px 16px;
  border: 1px solid #444444;
  border-radius: 6px;
  font-size: 14px;
  background: #1a1a1a;
  color: #ffffff;
  font-family: inherit;
  transition: all 0.2s;
}

.search-input::placeholder {
  color: #888888;
}

.search-input:focus {
  outline: none;
  background: #222222;
  border-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.search-btn {
  padding: 10px 24px;
  background: #0071e3;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
}

.search-btn:hover {
  background: #0066cc;
  box-shadow: 0 2px 8px rgba(0, 113, 227, 0.3);
}

.search-btn:active {
  transform: scale(0.98);
}

/* ========== NAV TABS ========== */

.nav-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 12px 24px;
  border-bottom: 1px solid #222222;
  background: #1a1a1a;
}

.nav-tab {
  padding: 10px 24px;
  background: #333333;
  border: 1px solid #444444;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #cccccc;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
}

.nav-tab:hover {
  background: #404040;
  border-color: #555555;
  color: #e0e0e0;
}

/* Suburbs tab colors */
.nav-tab-suburbs {
  border-color: #4caf50;
}

.nav-tab-suburbs.active {
  background: #4caf50;
  color: #ffffff;
  border-color: #4caf50;
}

/* Communities tab colors */
.nav-tab-communities {
  border-color: #2196f3;
}

.nav-tab-communities.active {
  background: #2196f3;
  color: #ffffff;
  border-color: #2196f3;
}

/* Builders tab colors */
.nav-tab-builders {
  border-color: #ff9800;
}

.nav-tab-builders.active {
  background: #ff9800;
  color: #ffffff;
  border-color: #ff9800;
}

/* ========== CHIP DRAWER ========== */

.chip-drawer {
  display: none;
  background: #f9f9fb;
  border-bottom: 1px solid #e0e0e0;
  padding: 0;
}

.chip-drawer-suburbs {
  background: #e8f5e9;
  border-bottom-color: #4caf50;
}

.chip-drawer-communities {
  background: #f3f7fd;
  border-bottom-color: #bbdefb;
}

.chip-drawer-builders {
  background: #fffbf4;
  border-bottom-color: #ffe0b2;
}

.chip-drawer-header {
  padding: 16px 24px 8px 24px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #666;
  display: none;
}

.chip-drawer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 8px 24px 16px 24px;
}

.chip {
  padding: 8px 16px;
  background: #ffffff;
  border: 1px solid #d0d0d0;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  color: #1a1a1a;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
}

.chip-drawer-suburbs .chip:hover {
  background: #4caf50;
  color: #ffffff;
  border-color: #4caf50;
  transform: translateY(-1px);
}

.chip-drawer-communities .chip:hover {
  background: #2196f3;
  color: #ffffff;
  border-color: #2196f3;
  transform: translateY(-1px);
}

.chip-drawer-builders .chip:hover {
  background: #ff9800;
  color: #ffffff;
  border-color: #ff9800;
  transform: translateY(-1px);
}

.chip:active {
  transform: scale(0.96);
}

/* ========== HOMEPAGE ========== */

#homepage {
  display: block;
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px;
}

#homepage {
  display: block;
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px;
}

/* ========== FEATURED LATEST - COMPACT EDITORIAL ========== */

.homepage-featured-compact {
  margin-bottom: 64px;
}

.featured-compact-container {
  display: grid;
  grid-template-columns: 520px 1fr;
  gap: 28px;
  align-items: stretch;
  cursor: pointer;
}

.featured-compact-thumbnail {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  overflow: hidden;
  background: #e0e0e0;
}

.featured-compact-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-compact-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 4px;
  height: 100%;
}

.featured-compact-label {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #0071e3;
  margin-bottom: 6px;
}

.featured-compact-title {
  font-size: 28px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 4px 0 8px 0;
  line-height: 1.2;
}

.featured-compact-summary {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin: 0 0 12px 0;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex-grow: 1;
}

.featured-compact-actions {
  display: flex;
  gap: 12px;
  margin-top: auto;
}

.featured-compact-watch {
  padding: 11px 24px;
  background: #0071e3;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
  white-space: nowrap;
}

.featured-compact-watch:hover {
  background: #0066cc;
  box-shadow: 0 2px 8px rgba(0, 113, 227, 0.3);
  transform: translateY(-1px);
}

.featured-compact-watch:active {
  transform: scale(0.96);
  background: #0059b3;
}

.featured-compact-share {
  padding: 11px 24px;
  background: #ffffff;
  color: #1a1a1a;
  border: 1px solid #d0d0d0;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
  white-space: nowrap;
}

.featured-compact-share:hover {
  border-color: #999;
  background: #f8f8f8;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}

.featured-compact-share:active {
  transform: scale(0.96);
  background: #f0f0f0;
}

.featured-compact-share.copied {
  color: #4caf50;
  border-color: #4caf50;
}

/* ========== CURATED SUBURB OVERVIEW GRID ========== */

.homepage-curated {
  margin-top: 48px;
}

.curated-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 32px;
  text-align: left;
}

.curated-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.curated-card {
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  cursor: pointer;
  transition: all 0.2s;
}

.curated-card:hover {
  border-color: #ccc;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.curated-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.curated-card-info {
  padding: 16px;
}

.curated-card-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #999;
  margin: 0 0 8px 0;
}

.curated-card-title {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
}

.curated-card-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #e0e0e0;
}

.curated-card-share {
  position: absolute;
  bottom: 8px;
  right: 8px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.95);
  color: #1a1a1a;
  border: none;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
  opacity: 0;
  backdrop-filter: blur(4px);
}

.curated-card:hover .curated-card-share {
  opacity: 1;
}

.curated-card-share:hover {
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transform: scale(1.05);
}

.curated-card-share.copied {
  color: #4caf50;
}

/* ========== RESULTS CONTAINER ========== */

#results {
  display: none;
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 24px;
}

.results-container {
  width: 100%;
}

/* ========== SUBURB PAGE ========== */

.suburb-page-header {
  margin-bottom: 32px;
}

.suburb-page-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 8px;
}

.suburb-page-meta {
  font-size: 13px;
  color: #999;
  margin: 0;
}

.suburb-communities-section {
  margin-bottom: 36px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e0e0e0;
}

.suburb-communities-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.suburb-community-chip {
  padding: 10px 18px;
  background: #f0f0f0;
  border: 1px solid #d0d0d0;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  color: #1a1a1a;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
}

.suburb-community-chip:hover {
  background: #e0e0e0;
  border-color: #999;
  transform: translateY(-1px);
}

.suburb-community-chip:active {
  transform: scale(0.96);
}

/* ========== COMMUNITY GROUP (NEW) ========== */

.community-group {
  margin-bottom: 48px;
}

.community-group-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1a1a1a;
  padding-bottom: 12px;
  border-bottom: 2px solid #4caf50;
}

/* ========== COMMUNITY PAGE ========== */

.community-page-header {
  margin-bottom: 32px;
}

.community-page-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 8px;
}

.community-page-meta {
  font-size: 13px;
  color: #999;
  margin: 0;
}

.community-page-with-builder {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 32px;
}

/* ========== RESULTS GRID ========== */

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.result-card {
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  display: flex;
  flex-direction: column;
  transition: all 0.2s ease;
  cursor: pointer;
}

.result-card:hover {
  border-color: #ccc;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-3px);
}

.result-card-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  background: #e0e0e0;
}

.result-card-info {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.result-card-community {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #0071e3;
  margin: 0;
  order: -1;
}

.result-card-title {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
}

.result-card-meta {
  font-size: 11px;
  color: #666;
  margin: 0;
  line-height: 1.3;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.result-card-date {
  font-size: 11px;
  color: #b0b0b0;
  margin: 2px 0 0 0;
  text-align: right;
  line-height: 1.2;
}

.result-card-matches {
  font-size: 12px;
  color: #4CAF50;
  margin: 0;
  font-weight: 500;
}

.result-card-actions {
  padding: 12px 16px 16px 16px;
  border-top: 1px solid #f0f0f0;
  display: flex;
  gap: 8px;
  background: #fafafa;
}

.result-card-share {
  flex: 1;
  padding: 11px 16px;
  background: #0071e3;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
  text-align: center;
}

.result-card-share:hover {
  background: #0066cc;
  box-shadow: 0 2px 8px rgba(0, 113, 227, 0.3);
  transform: translateY(-1px);
}

.result-card-share:active {
  transform: scale(0.96);
  background: #0059b3;
}

.result-card-share.copied {
  background: #4caf50;
  color: #ffffff;
}

/* ========== BUILDER PANEL ========== */

.community-builder-panel {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: fit-content;
  max-height: 75vh;
  position: sticky;
  top: 140px;
}

.builder-panel-header {
  padding: 16px;
  border-bottom: 1px solid #e0e0e0;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #1a1a1a;
  background: #fafafa;
}

.builder-section {
  padding: 16px;
  border-bottom: 1px solid #f0f0f0;
}

.builder-section:last-child {
  border-bottom: none;
}

.builder-name {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.builder-contacts {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.builder-contact {
  background: #f8f8f8;
  padding: 10px;
  border-radius: 6px;
  font-size: 12px;
}

.contact-name {
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 4px 0;
}

.contact-link {
  color: #0071e3;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.contact-link:hover {
  color: #0066cc;
  text-decoration: underline;
}

.builder-contact p {
  margin: 3px 0;
  color: #666;
}

.no-builders {
  padding: 12px 16px;
  text-align: center;
  font-size: 12px;
  color: #999;
}

/* ========== COMMUNITY CARDS GRID & ACCORDION ========== */

.community-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.community-card {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.2s;
}

.community-card-header {
  display: flex;
  gap: 12px;
  padding: 12px;
  cursor: pointer;
  align-items: center;
  background: #fafafa;
  border-bottom: 1px solid #e0e0e0;
  transition: all 0.2s;
}

.community-card:hover {
  border-color: #999;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.community-card:hover .community-card-header {
  background: #f0f0f0;
}

.community-card.expanded {
  border-color: #4caf50;
  box-shadow: 0 4px 16px rgba(76, 175, 80, 0.15);
}

.community-card.expanded .community-card-header {
  background: #f1f8f5;
  border-bottom-color: #4caf50;
}

.community-card-preview {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 4px;
  background: #e0e0e0;
  flex-shrink: 0;
}

.community-card-meta {
  flex: 1;
  min-width: 0;
}

.community-card-name {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
  margin-bottom: 2px;
}

.community-card-count {
  font-size: 12px;
  color: #999;
  margin: 0;
}

.community-card-header .expand-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
  color: #666;
  flex-shrink: 0;
  transition: all 0.2s;
}

.community-card-content {
  padding: 16px;
  background: #fafafa;
}

.community-card-content .results-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

/* ========== BUILDER ACCORDION ========== */

.builder-accordion {
  display: flex;
  flex-direction: column;
  background: #fffbf4;
}

.builder-row {
  border-bottom: 1px solid #f0f0f0;
}

.builder-row:last-child {
  border-bottom: none;
}

.builder-row-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  cursor: pointer;
  background: #ffffff;
  transition: all 0.2s;
  border-bottom: 1px solid #e0e0e0;
}

.builder-row:hover .builder-row-header {
  background: #fff5e6;
}

.builder-row.expanded .builder-row-header {
  background: #fff0e0;
  border-bottom-color: #ff9800;
}

.builder-row-name {
  font-size: 13px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
}

.builder-row-header .expand-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  color: #666;
  flex-shrink: 0;
  transition: all 0.2s;
}

.builder-row-content {
  padding: 8px 16px 12px 16px;
  background: #fafafa;
  border-bottom: 1px solid #e0e0e0;
}

.builder-row-content .builder-contact {
  background: #ffffff;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 12px;
  margin-bottom: 6px;
  border: 1px solid #e0e0e0;
}

.builder-row-content .builder-contact:last-child {
  margin-bottom: 0;
}

/* ========== LOADING STATES ========== */

.loading,
.error,
.no-results {
  padding: 48px 24px;
  text-align: center;
  font-size: 16px;
  color: #666;
}

.error {
  color: #d32f2f;
}

/* ========== RESPONSIVE ========== */

@media (max-width: 1000px) {
  .community-page-with-builder {
    grid-template-columns: 1fr;
  }

  .community-builder-panel {
    position: static;
    top: auto;
    max-height: 50vh;
    margin-top: 24px;
  }
}

@media (max-width: 768px) {
  .header-content {
    padding: 0 16px;
    gap: 16px;
  }

  .header-logo {
    height: 40px;
  }

  .nav-tabs {
    padding: 10px 16px;
    gap: 8px;
  }

  .nav-tab {
    padding: 8px 16px;
    font-size: 12px;
  }

  .chip-drawer {
    padding: 0;
  }

  .chip-drawer-header {
    padding: 12px 16px 6px 16px;
    font-size: 11px;
  }

  .chip-drawer-content {
    padding: 6px 16px 12px 16px;
    gap: 8px;
  }

  .chip {
    padding: 6px 12px;
    font-size: 12px;
  }

  #homepage {
    padding: 32px 16px;
  }

  .featured-compact-container {
    grid-template-columns: 340px 1fr;
    gap: 24px;
    align-items: stretch;
  }

  .featured-compact-label {
    font-size: 11px;
    margin-bottom: 4px;
  }

  .featured-compact-title {
    font-size: 26px;
    margin-bottom: 8px;
  }

  .featured-compact-summary {
    font-size: 13px;
    line-height: 1.5;
    -webkit-line-clamp: 4;
  }

  .featured-compact-watch,
  .featured-compact-share {
    padding: 10px 20px;
    font-size: 12px;
  }

  .featured-compact-actions {
    gap: 10px;
    margin-top: auto;
  }

  .curated-title {
    font-size: 18px;
    margin-bottom: 24px;
  }

  .curated-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .curated-card-share {
    opacity: 1;
  }

  #results {
    padding: 24px 16px;
  }

  .suburb-page-title,
  .community-page-title {
    font-size: 28px;
  }

  .results-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .result-card-img {
    height: 140px;
  }

  .result-card-share {
    padding: 9px 12px;
    font-size: 12px;
  }

  .suburb-communities-chips {
    gap: 8px;
  }

  .suburb-community-chip {
    padding: 8px 14px;
    font-size: 12px;
  }

  .community-group-title {
    font-size: 16px;
    margin-bottom: 16px;
  }

  .community-cards-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }

  .community-card-content .results-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .app-header {
    padding: 12px 0;
  }

  .header-content {
    gap: 12px;
    padding: 0 12px;
  }

  .header-logo {
    height: 36px;
  }

  .header-search-bar {
    max-width: 100%;
    gap: 6px;
  }

  .search-input {
    padding: 8px 12px;
    font-size: 13px;
  }

  .search-btn {
    padding: 8px 14px;
    font-size: 12px;
  }

  .nav-tabs {
    padding: 8px 12px;
    gap: 6px;
  }

  .nav-tab {
    padding: 6px 12px;
    font-size: 11px;
  }

  .chip-drawer-header {
    padding: 10px 12px 4px 12px;
    font-size: 10px;
  }

  .chip-drawer-content {
    padding: 4px 12px 10px 12px;
    gap: 6px;
  }

  .chip {
    padding: 5px 10px;
    font-size: 11px;
  }

  #homepage {
    padding: 24px 12px;
  }

  .featured-compact-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .featured-compact-thumbnail {
    aspect-ratio: 16 / 9;
  }

  .featured-compact-label {
    font-size: 11px;
    margin-bottom: 4px;
  }

  .featured-compact-title {
    font-size: 26px;
    margin-bottom: 8px;
  }

  .featured-compact-summary {
    font-size: 13px;
    line-height: 1.5;
    -webkit-line-clamp: 4;
  }

  .featured-compact-watch,
  .featured-compact-share {
    padding: 10px 20px;
    font-size: 12px;
  }

  .featured-compact-actions {
    gap: 10px;
    margin-top: auto;
  }

  .curated-title {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .curated-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .curated-card-share {
    opacity: 1;
  }

  #results {
    padding: 16px 12px;
  }

  .suburb-page-title,
  .community-page-title {
    font-size: 24px;
  }

  .results-grid {
    gap: 12px;
  }

  .suburb-communities-section {
    margin-bottom: 24px;
    padding-bottom: 16px;
  }

  .suburb-communities-chips {
    gap: 6px;
  }

  .suburb-community-chip {
    padding: 6px 12px;
    font-size: 11px;
  }

  .community-group {
    margin-bottom: 36px;
  }

  .community-group-title {
    font-size: 14px;
    margin-bottom: 12px;
  }

  .community-cards-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .community-card-content .results-grid {
    grid-template-columns: 1fr;
  }

  .community-card-preview {
    width: 50px;
    height: 50px;
  }

  .community-card-name {
    font-size: 13px;
  }

  .builder-row-name {
    font-size: 12px;
  }
}
