.frame-atlas-wordpress {
  --fac-ink: #17211d;
  --fac-muted: #737b76;
  --fac-line: #dedfd8;
  --fac-panel: #fff;
  --fac-paper: #fbfaf6;
  --fac-green: #1e5948;
  --fac-orange: #d57935;
  width: 100%;
  color: var(--fac-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.4;
}

.frame-atlas-wordpress *,
.frame-atlas-wordpress *::before,
.frame-atlas-wordpress *::after {
  box-sizing: border-box;
}

.frame-atlas-wordpress button,
.frame-atlas-wordpress select {
  font: inherit;
}

.fac-loading,
.fac-error {
  padding: 36px;
  border: 1px solid var(--fac-line);
  border-radius: 10px;
  color: var(--fac-muted);
  background: var(--fac-paper);
  text-align: center;
  font-size: 13px;
}

.fac-error {
  color: #9a3f2d;
  border-color: #e3b7aa;
  background: #fff8f5;
}

.fac-shell {
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--fac-line);
  border-radius: 12px;
  background: var(--fac-paper);
  box-shadow: 0 14px 45px rgba(23, 33, 29, 0.06);
}

.fac-header {
  padding: 28px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--fac-line);
  background: linear-gradient(135deg, #f7f6f0, #fff);
}

.fac-header small,
.fac-numbers-head small {
  color: var(--fac-green);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.fac-header h2,
.fac-numbers-head h3 {
  margin: 5px 0 0;
  color: var(--fac-ink);
  font-family: Georgia, "Songti SC", serif;
  font-weight: 500;
  line-height: 1.12;
}

.fac-header h2 {
  font-size: clamp(28px, 4vw, 40px);
}

.fac-header p {
  margin: 9px 0 0;
  color: var(--fac-muted);
  font-size: 11px;
}

.fac-header > span {
  flex: 0 0 auto;
  padding: 7px 10px;
  border: 1px solid var(--fac-line);
  border-radius: 99px;
  color: var(--fac-muted);
  background: rgba(255, 255, 255, 0.72);
  font-size: 10px;
}

.fac-pickers {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: var(--fac-panel);
}

.fac-picker {
  min-width: 0;
  padding: 24px;
}

.fac-picker + .fac-picker {
  border-left: 1px solid var(--fac-line);
}

.fac-picker-head {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.fac-picker-head > i {
  width: 22px;
  height: 5px;
  flex: 0 0 auto;
  border-radius: 99px;
}

.fac-picker-head > div {
  min-width: 0;
}

.fac-picker-head small,
.fac-picker-head strong {
  display: block;
}

.fac-picker-head small {
  color: var(--fac-muted);
  font-size: 9px;
  letter-spacing: 0.08em;
}

.fac-picker-head strong {
  margin-top: 3px;
  overflow: hidden;
  color: var(--fac-ink);
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.fac-clear {
  flex: 0 0 auto;
  margin-left: auto;
  padding: 6px 9px;
  border: 1px solid var(--fac-line);
  border-radius: 5px;
  color: var(--fac-muted);
  background: transparent;
  cursor: pointer;
  font-size: 9px;
}

.fac-clear:hover {
  border-color: var(--fac-green);
  color: var(--fac-green);
}

.fac-select-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
  margin-top: 18px;
}

.fac-select-grid label {
  display: block;
  margin: 0;
}

.fac-select-grid label > span {
  display: block;
  margin: 0 0 6px;
  color: var(--fac-muted);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.06em;
}

.fac-select-grid select {
  width: 100%;
  height: 42px;
  margin: 0;
  padding: 0 30px 0 10px;
  border: 1px solid var(--fac-line);
  border-radius: 6px;
  outline: none;
  color: var(--fac-ink);
  background-color: white;
  font-size: 11px;
}

.fac-select-grid select:focus {
  border-color: var(--fac-green);
  box-shadow: 0 0 0 3px rgba(30, 89, 72, 0.09);
}

.fac-select-grid select:disabled {
  color: #9b9f9c;
  background-color: #f3f3ef;
  cursor: not-allowed;
}

.fac-picker-status {
  min-height: 16px;
  margin: 11px 0 0;
  color: var(--fac-muted);
  font-size: 9px;
}

.fac-picker-status.ready {
  color: var(--fac-green);
  font-weight: 700;
}

.fac-toolbar {
  padding: 10px 22px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 20px;
  border-top: 1px solid var(--fac-line);
  border-bottom: 1px solid var(--fac-line);
  background: #f7f7f3;
}

.fac-toolbar > div {
  display: flex;
  align-items: center;
  gap: 4px;
}

.fac-toolbar span {
  margin-right: 5px;
  color: var(--fac-muted);
  font-size: 9px;
}

.fac-toolbar button {
  padding: 7px 10px;
  border: 1px solid var(--fac-line);
  border-radius: 4px;
  color: var(--fac-ink);
  background: white;
  cursor: pointer;
  font-size: 9px;
}

.fac-toolbar button.active {
  border-color: var(--fac-green);
  color: white;
  background: var(--fac-green);
}

.fac-overlay {
  position: relative;
  min-height: 500px;
  background: radial-gradient(circle at 50% 58%, #ffffff 0, #fbfaf7 60%, #f1f0e9 100%);
}

.fac-overlay canvas {
  width: 100%;
  height: 500px;
  display: block;
  cursor: crosshair;
}

.fac-canvas-message {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: min(440px, calc(100% - 40px));
  padding: 18px;
  transform: translate(-50%, -50%);
  border: 1px solid var(--fac-line);
  border-radius: 8px;
  color: var(--fac-muted);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 30px rgba(23, 33, 29, 0.07);
  text-align: center;
  font-size: 10px;
  line-height: 1.6;
}

.fac-canvas-message strong,
.fac-canvas-message span,
.fac-canvas-message small {
  display: block;
}

.fac-canvas-message strong {
  margin-bottom: 6px;
  color: var(--fac-ink);
  font-family: Georgia, "Songti SC", serif;
  font-size: 16px;
}

.fac-canvas-message small {
  margin-top: 6px;
}

.fac-legend,
.fac-hover-card,
.fac-hover-hint {
  position: absolute;
  z-index: 4;
  border: 1px solid rgba(222, 223, 216, 0.92);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 30px rgba(23, 33, 29, 0.07);
  backdrop-filter: blur(8px);
}

.fac-legend {
  top: 16px;
  left: 16px;
  max-width: min(430px, calc(50% - 24px));
  display: grid;
  gap: 8px;
  padding: 11px 13px;
}

.fac-legend:empty {
  display: none;
}

.fac-legend > div {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.fac-legend i,
.fac-hover-value i {
  width: 18px;
  height: 4px;
  flex: 0 0 auto;
  margin-top: 5px;
  border-radius: 99px;
}

.fac-legend strong,
.fac-legend small,
.fac-legend em {
  display: block;
}

.fac-legend strong {
  color: var(--fac-ink);
  font-size: 10px;
}

.fac-legend small,
.fac-legend em {
  margin-top: 2px;
  color: var(--fac-muted);
  font-size: 8px;
  font-style: normal;
}

.fac-legend em {
  color: #a65122;
}

.fac-hover-card {
  top: 16px;
  right: 16px;
  width: min(330px, calc(50% - 24px));
  padding: 12px 13px;
  pointer-events: none;
}

.fac-hover-title,
.fac-hover-delta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.fac-hover-title {
  padding-bottom: 8px;
  border-bottom: 1px solid var(--fac-line);
}

.fac-hover-title span {
  color: var(--fac-green);
  font-size: 9px;
  font-weight: 800;
}

.fac-hover-title strong {
  font-family: Georgia, "Songti SC", serif;
  font-size: 14px;
}

.fac-hover-value {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr) auto;
  gap: 7px;
  align-items: center;
  margin-top: 8px;
}

.fac-hover-value span {
  overflow: hidden;
  color: var(--fac-muted);
  font-size: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.fac-hover-value strong,
.fac-hover-delta strong {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
}

.fac-hover-delta {
  margin-top: 9px;
  padding-top: 8px;
  border-top: 1px solid var(--fac-line);
}

.fac-hover-delta span {
  color: var(--fac-muted);
  font-size: 8px;
}

.fac-hover-hint {
  right: 16px;
  bottom: 16px;
  padding: 8px 10px;
  color: var(--fac-muted);
  pointer-events: none;
  font-size: 8px;
}

.fac-note {
  margin: 0;
  padding: 10px 16px;
  border-top: 1px solid var(--fac-line);
  color: var(--fac-muted);
  background: white;
  font-size: 9px;
  line-height: 1.6;
}

.fac-insights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--fac-line);
  background: white;
}

.fac-insights > div {
  min-height: 70px;
  padding: 14px;
  border-right: 1px solid var(--fac-line);
}

.fac-insights > div:last-child {
  border-right: 0;
}

.fac-insights span,
.fac-insights strong {
  display: block;
}

.fac-insights span {
  color: var(--fac-green);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.fac-insights strong {
  margin-top: 8px;
  font-size: 12px;
}

.fac-numbers {
  border-top: 1px solid var(--fac-line);
}

.fac-numbers-head {
  padding: 22px 24px 15px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.fac-numbers-head h3 {
  font-size: 25px;
}

.fac-difference-key {
  display: flex;
  gap: 12px;
  color: var(--fac-muted);
  font-size: 8px;
}

.fac-difference-key span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.fac-difference-key i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.fac-difference-key i.close {
  background: #43886f;
}

.fac-difference-key i.medium {
  background: #d59d35;
}

.fac-difference-key i.large {
  background: #b85a3c;
}

.fac-table-wrap {
  overflow-x: auto;
  border-top: 1px solid var(--fac-line);
  background: white;
}

.fac-table-wrap table {
  width: 100%;
  min-width: 720px;
  margin: 0;
  border: 0;
  border-collapse: collapse;
  color: var(--fac-ink);
  background: white;
  font-size: 11px;
}

.fac-table-wrap table.single {
  min-width: 520px;
}

.fac-table-wrap th,
.fac-table-wrap td {
  padding: 12px 14px;
  border: 0;
  border-right: 1px solid var(--fac-line);
  border-bottom: 1px solid var(--fac-line);
  background: white;
  text-align: right;
  font-variant-numeric: tabular-nums;
  transition: background 140ms ease, box-shadow 140ms ease;
}

.fac-table-wrap th:first-child,
.fac-table-wrap td:first-child {
  text-align: left;
}

.fac-table-wrap th:last-child,
.fac-table-wrap td:last-child {
  border-right: 0;
}

.fac-table-wrap thead th {
  color: var(--fac-muted);
  background: #f7f7f3;
  font-size: 9px;
  letter-spacing: 0.03em;
}

.fac-table-wrap tbody th {
  min-width: 170px;
  font-weight: 650;
}

.fac-table-wrap tbody tr.highlighted th,
.fac-table-wrap tbody tr.highlighted td {
  background: #e7f0eb;
  box-shadow:
    inset 0 1px 0 rgba(30, 89, 72, 0.28),
    inset 0 -1px 0 rgba(30, 89, 72, 0.28);
}

.fac-table-wrap tbody tr.highlighted th {
  box-shadow:
    inset 4px 0 0 var(--fac-green),
    inset 0 1px 0 rgba(30, 89, 72, 0.28),
    inset 0 -1px 0 rgba(30, 89, 72, 0.28);
}

.fac-table-wrap tbody tr:focus {
  outline: 2px solid rgba(30, 89, 72, 0.5);
  outline-offset: -2px;
}

.fac-table-wrap mark {
  padding: 4px 7px;
  border-radius: 99px;
  color: #276651;
  background: #e3f0e9;
}

.fac-table-wrap mark.medium {
  color: #835321;
  background: #fff1dc;
}

.fac-table-wrap mark.large {
  color: #9a382f;
  background: #ffe4df;
}

.fac-table-provenance th,
.fac-table-provenance td {
  background: #f5f4ee;
  vertical-align: top;
}

.fac-table-provenance td > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 7px;
}

.fac-table-provenance span {
  display: inline-flex;
  padding: 6px 9px;
  border: 1px solid rgba(30, 89, 72, 0.24);
  border-radius: 99px;
  color: var(--fac-green);
  background: #edf4f0;
  font-size: 14px;
  font-weight: 700;
}

.fac-table-empty {
  padding: 28px !important;
  color: var(--fac-muted);
  text-align: center !important;
}

/* Main comparison content uses a readable 14–16px type scale. */
.fac-loading,
.fac-error,
.fac-header > span,
.fac-picker-head small,
.fac-clear,
.fac-select-grid label > span,
.fac-picker-status,
.fac-toolbar span,
.fac-toolbar button,
.fac-canvas-message,
.fac-legend strong,
.fac-legend small,
.fac-legend em,
.fac-hover-title span,
.fac-hover-value span,
.fac-hover-delta span,
.fac-hover-hint,
.fac-note,
.fac-insights span,
.fac-difference-key,
.fac-table-wrap thead th,
.fac-table-provenance th {
  font-size: 14px;
}

.fac-header p,
.fac-picker-head strong,
.fac-select-grid select,
.fac-canvas-message strong,
.fac-hover-title strong,
.fac-hover-value strong,
.fac-hover-delta strong,
.fac-insights strong,
.fac-table-wrap table,
.fac-table-wrap tbody th,
.fac-table-wrap tbody td {
  font-size: 16px;
}

.frame-atlas-wordpress [hidden] {
  display: none !important;
}

.fac-detail-mode .fac-header,
.fac-detail-mode .fac-picker[data-slot="1"],
.fac-detail-mode .fac-picker-head small,
.fac-detail-mode .fac-picker-head .fac-clear,
.fac-detail-mode .fac-picker-status,
.fac-detail-mode .fac-select-grid label:nth-child(-n + 3) {
  display: none;
}

.fac-detail-mode .fac-pickers {
  grid-template-columns: 1fr;
}

.fac-detail-mode .fac-picker {
  border: 0;
}

.fac-detail-mode .fac-select-grid {
  max-width: 360px;
  grid-template-columns: 1fr;
}

.frame-atlas-library {
  --fal-ink: #17211d;
  --fal-muted: #66716b;
  --fal-line: #dedfd8;
  --fal-paper: #fbfaf6;
  --fal-green: #1e5948;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(38px, 7vw, 88px) 0;
  color: var(--fal-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

.frame-atlas-library *,
.frame-atlas-library *::before,
.frame-atlas-library *::after {
  box-sizing: border-box;
}

.fal-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  color: var(--fal-muted);
  font-size: 14px;
}

.fal-breadcrumb a {
  color: var(--fal-green);
  text-decoration: none;
}

.fal-hero {
  max-width: 850px;
  margin-bottom: clamp(42px, 7vw, 76px);
}

.fal-eyebrow,
.fal-section-heading > p,
.fal-provenance > div:first-child > p {
  margin: 0 0 10px;
  color: var(--fal-green);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.fal-hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 6vw, 72px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.fal-hero > p:not(.fal-eyebrow),
.fal-hero-copy {
  max-width: 720px;
  margin: 22px 0 0;
  color: var(--fal-muted);
  font-size: 18px;
}

.fal-hero-copy p {
  margin: 0 0 12px;
}

.fal-hero-copy p:last-child {
  margin-bottom: 0;
}

.fal-hero-copy a {
  color: var(--fal-green);
}

.fal-button {
  display: inline-flex;
  margin-top: 22px;
  padding: 11px 16px;
  border-radius: 6px;
  color: #fff;
  background: var(--fal-green);
  text-decoration: none;
}

.fal-section {
  margin-top: clamp(42px, 7vw, 78px);
}

.fal-section-heading {
  margin-bottom: 22px;
}

.fal-section-heading h2,
.fal-provenance h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 500;
  line-height: 1.1;
}

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

.fal-brand-grid a,
.fal-record-card > a {
  min-height: 132px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  border: 1px solid var(--fal-line);
  border-radius: 10px;
  color: var(--fal-ink);
  background: #fff;
  text-decoration: none;
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.fal-brand-grid a:hover,
.fal-record-card > a:hover {
  border-color: rgba(30, 89, 72, 0.6);
  box-shadow: 0 12px 32px rgba(23, 33, 29, 0.08);
  transform: translateY(-2px);
}

.fal-brand-grid strong {
  font-size: 20px;
}

.fal-brand-grid span,
.fal-record-card p,
.fal-record-year {
  color: var(--fal-muted);
  font-size: 14px;
}

.fal-record-card {
  margin: 0;
}

.fal-record-card h2 {
  margin: 8px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 500;
  line-height: 1.14;
}

.fal-record-card p {
  margin: 0 0 18px;
}

.fal-record-link {
  color: var(--fal-green);
  font-size: 14px;
  font-weight: 750;
}

.fal-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: -24px 0 52px;
  border: 1px solid var(--fal-line);
  border-radius: 10px;
  background: var(--fal-paper);
}

.fal-facts > div {
  padding: 18px 20px;
}

.fal-facts > div + div {
  border-left: 1px solid var(--fal-line);
}

.fal-facts span,
.fal-facts strong {
  display: block;
}

.fal-editorial-highlights {
  margin: 0 0 clamp(42px, 7vw, 72px);
  padding: clamp(24px, 5vw, 40px);
  border: 1px solid rgba(30, 89, 72, 0.22);
  border-radius: 12px;
  background: #edf4f0;
}

.fal-editorial-highlights h2 {
  margin: 0 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 500;
}

.fal-editorial-highlights ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 28px;
  margin: 0;
  padding-left: 20px;
}

.fal-editorial-highlights li {
  padding-left: 4px;
}

.fal-facts span {
  color: var(--fal-muted);
  font-size: 14px;
}

.fal-facts strong {
  margin-top: 5px;
  font-size: 16px;
}

.fal-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--fal-line);
  border-radius: 10px;
  background: #fff;
}

.fal-geometry-table {
  width: 100%;
  min-width: 680px;
  margin: 0;
  border-collapse: collapse;
  font-size: 16px;
}

.fal-geometry-table th,
.fal-geometry-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--fal-line);
  text-align: right;
}

.fal-geometry-table th:first-child {
  text-align: left;
}

.fal-geometry-table thead th {
  color: var(--fal-muted);
  background: var(--fal-paper);
  font-size: 14px;
}

.fal-geometry-table tbody th {
  font-weight: 650;
}

.fal-geometry-table tbody th small {
  color: var(--fal-muted);
  font-size: 12px;
  font-weight: 500;
}

.fal-geometry-table tbody tr:last-child th,
.fal-geometry-table tbody tr:last-child td {
  border-bottom: 0;
}

.fal-provenance {
  margin-top: clamp(42px, 7vw, 78px);
  padding: clamp(24px, 5vw, 42px);
  border: 1px solid var(--fal-line);
  border-radius: 12px;
  background: var(--fal-paper);
}

.fal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0;
}

.fal-tags span {
  padding: 7px 11px;
  border: 1px solid rgba(30, 89, 72, 0.25);
  border-radius: 99px;
  color: var(--fal-green);
  background: #edf4f0;
  font-size: 14px;
  font-weight: 700;
}

.fal-provenance dl {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 40px;
  margin: 0;
}

.fal-provenance dl > div {
  min-width: 180px;
}

.fal-provenance dt {
  color: var(--fal-muted);
  font-size: 14px;
}

.fal-provenance dd {
  margin: 3px 0 0;
  font-size: 16px;
}

.fal-metadata-details {
  margin-top: 28px;
}

.fal-metadata-details summary {
  color: var(--fal-green);
  cursor: pointer;
  font-size: 15px;
  font-weight: 750;
}

.fal-metadata-details[open] summary {
  margin-bottom: 16px;
}

.fal-metadata-table {
  width: 100%;
  min-width: 1180px;
  border-collapse: collapse;
  background: #fff;
  font-size: 14px;
}

.fal-metadata-table th,
.fal-metadata-table td {
  padding: 11px 12px;
  border-bottom: 1px solid var(--fal-line);
  text-align: left;
  vertical-align: top;
}

.fal-metadata-table thead th {
  color: var(--fal-muted);
  background: #f4f3ed;
}

.fal-empty {
  padding: 24px;
  border: 1px dashed var(--fal-line);
  border-radius: 8px;
  color: var(--fal-muted);
  background: var(--fal-paper);
}

@media (max-width: 780px) {
	.fal-brand-grid,
	.fal-record-grid {
		grid-template-columns: 1fr 1fr;
	}

	.fal-facts {
		grid-template-columns: 1fr 1fr;
	}

	.fal-facts > div:nth-child(3) {
		border-left: 0;
		border-top: 1px solid var(--fal-line);
	}

	.fal-facts > div:nth-child(4) {
		border-top: 1px solid var(--fal-line);
	}

  .fac-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .fac-pickers {
    grid-template-columns: 1fr;
  }

  .fac-picker + .fac-picker {
    border-top: 1px solid var(--fac-line);
    border-left: 0;
  }

  .fac-overlay,
  .fac-overlay canvas {
    min-height: 410px;
    height: 410px;
  }

  .fac-insights {
    grid-template-columns: 1fr 1fr;
  }

  .fac-insights > div:nth-child(2) {
    border-right: 0;
  }

  .fac-insights > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--fac-line);
  }
}

@media (max-width: 520px) {
	.fal-editorial-highlights ul {
		grid-template-columns: 1fr;
	}

	.frame-atlas-library {
		width: min(100% - 22px, 1180px);
	}

	.fal-brand-grid,
	.fal-record-grid,
	.fal-facts {
		grid-template-columns: 1fr;
	}

	.fal-facts > div + div {
		border-top: 1px solid var(--fal-line);
		border-left: 0;
	}

  .fac-header,
  .fac-picker {
    padding: 20px 16px;
  }

  .fac-select-grid {
    grid-template-columns: 1fr;
  }

  .fac-toolbar {
    justify-content: flex-start;
    padding: 10px 14px;
  }

  .fac-overlay,
  .fac-overlay canvas {
    min-height: 340px;
    height: 340px;
  }

  .fac-legend {
    position: static;
    max-width: none;
    margin: 0 12px 12px;
  }

  .fac-hover-card {
    top: auto;
    right: 12px;
    bottom: 34px;
    left: 12px;
    width: auto;
  }

  .fac-hover-hint {
    right: 12px;
    bottom: 10px;
  }

  .fac-insights {
    grid-template-columns: 1fr;
  }

  .fac-insights > div,
  .fac-insights > div:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--fac-line);
  }

  .fac-numbers-head {
    align-items: flex-start;
    flex-direction: column;
  }
}
