.workspace {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 334px;
  align-items: start;
  gap: 40px;
  margin-top: 52px;
}
.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}
.section-heading h2 {
  margin: 0;
}
.result-count {
  font-size: 0.72rem;
  white-space: nowrap;
  border: 1px solid var(--line);
  padding: 6px 10px;
  border-radius: 30px;
  color: var(--muted);
}
.filters {
  display: flex;
  gap: 8px;
}
.filters select {
  font-size: 0.75rem;
  padding-inline: 10px;
  min-width: 0;
  flex: 0 1 auto;
}
.search-box {
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding-left: 12px;
  flex: 1;
  min-width: 120px;
}
.search-box > .icon {
  width: 17px;
  color: var(--muted);
}
.search-box input {
  width: 100%;
  background: transparent;
  border: 0;
  font-size: 0.82rem;
  padding-left: 9px;
}
.saved-filter {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 50px;
  font-size: 0.75rem;
  color: var(--muted);
  width: fit-content;
  cursor: pointer;
}
.saved-filter .icon {
  width: 14px;
  height: 14px;
}
.saved-filter input {
  accent-color: #356d4b;
  min-height: 16px;
  width: 16px;
  height: 16px;
  margin: 0;
}
.rates-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}
.rates-table thead th {
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.rates-table tbody th {
  font-weight: 500;
  width: 52%;
  padding: 22px 6px 22px 0;
}
.rates-table tbody tr {
  border-bottom: 1px solid var(--line);
}
.rates-table td {
  padding: 22px 6px;
}
.numeric {
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.numeric strong {
  font-size: 1.1rem;
  font-weight: 550;
  letter-spacing: -0.025em;
  white-space: nowrap;
}
.office-identity {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 0.9rem;
}
.office-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  flex: none;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 0.66rem;
  font-weight: 600;
  background: var(--surface);
}
.office-type {
  display: block;
  font-size: 0.68rem;
  color: var(--muted);
  margin-top: 5px;
}
.office-details {
  font-size: 0.73rem;
  color: var(--muted);
  margin: 10px 0 0 48px;
}
.office-details summary {
  padding: 6px 0;
  width: fit-content;
  min-height: 28px;
}
.office-details p {
  margin: 10px 0;
  max-width: 290px;
  font-weight: 400;
  overflow-wrap: anywhere;
}
.office-details nav {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  padding-top: 5px;
}
.office-details a {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  text-decoration: underline;
  text-underline-offset: 3px;
  min-height: 36px;
}
.office-details .icon {
  width: 12px;
  height: 12px;
}
.save-cell {
  width: 48px;
  padding-right: 0 !important;
}
.save-office {
  color: var(--muted);
}
.save-office[aria-pressed='true'] {
  color: #8b6630;
}
.save-office[aria-pressed='true'] svg {
  fill: var(--accent);
}
.mobile-label {
  display: none;
}
.fine-print {
  color: var(--muted);
  font-size: 0.73rem;
  line-height: 1.7;
  margin-top: 18px;
  margin-bottom: 0;
}
.empty-state {
  padding: 48px 20px;
  text-align: center;
  border-block: 1px solid var(--line);
}
.empty-state p {
  color: var(--muted);
}
