/* Base app styles (global element defaults). */

@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;600;800&display=swap");

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

body {
  font-family: var(--font-family-base);
  background: var(--primary-bg-tint);
  color: var(--text-primary);
}

button { cursor: pointer; font-family: inherit; }

/* Links */
a {
  color: var(--link-active);
  text-decoration: underline;
  cursor: pointer;
}
a:hover { color: var(--link-active); }
a:visited { color: var(--link-active); }
a[aria-disabled="true"],
a.disabled {
  color: var(--link-disabled);
  pointer-events: none;
  text-decoration: none;
}

/* Semantic heading scale */
h1 {
  font-size: var(--type-xxl-size);
  line-height: var(--type-xxl-line);
  font-weight: var(--font-weight-semibold);
  color: var(--text-primary);
}
h2 {
  font-size: var(--type-xl-size);
  line-height: var(--type-xl-line);
  font-weight: var(--font-weight-semibold);
  color: var(--text-primary);
}
h3 {
  font-size: var(--type-lg-title-size);
  line-height: var(--type-lg-title-line);
  font-weight: var(--font-weight-regular);
  color: var(--text-primary);
}
h4 {
  font-size: var(--type-title-size);
  line-height: var(--type-title-line);
  font-weight: var(--font-weight-semibold);
  color: var(--text-primary);
}
h5 {
  font-size: var(--type-subtitle-size);
  line-height: var(--type-subtitle-line);
  font-weight: var(--font-weight-semibold);
  color: var(--text-primary);
}

p { font-size: var(--type-body-size); line-height: var(--type-body-line); font-weight: var(--font-weight-regular); }

.listings-toolbar {
  grid-template-columns: auto minmax(0, 1fr);
  gap: 32px;
}

.listings-toolbar .portal-search-row {
  width: 100%;
}
