/* Readable browser presentation for server-rendered crawl/archive surfaces. */
:root {
  --crawler-ink: #171714;
  --crawler-muted: #6f706b;
  --crawler-rule: #d9d8d2;
  --crawler-paper: #fbfaf7;
  --crawler-accent: #2f6d4f;
}

body:has(> .korthos-crawler-listing) {
  margin: 0;
  color: var(--crawler-ink);
  background: var(--crawler-paper);
  font-family: Inter, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.korthos-crawler-listing {
  box-sizing: border-box;
  width: min(100% - 48px, 1480px);
  margin: 0 auto;
  padding: 72px 0 64px;
}

.korthos-crawler-listing > h1 {
  max-width: 980px;
  margin: 0;
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: clamp(48px, 5vw, 76px);
  font-weight: 400;
  line-height: .95;
  letter-spacing: .01em;
  text-transform: uppercase;
}

.korthos-crawler-listing > p {
  max-width: 820px;
  margin: 18px 0 48px;
  color: var(--crawler-muted);
  font-size: 15px;
  line-height: 1.55;
}

.korthos-crawler-listing .korthos-feed-ssr-list {
  display: block;
  visibility: visible;
  border-top: 1px solid var(--crawler-rule);
}

.korthos-crawler-listing .profile-timeline-events__label {
  margin: 0;
  padding: 22px 0 12px;
  font-size: 13px;
  line-height: 1;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.korthos-crawler-listing .feed-evidence-empty {
  margin: 0 0 22px;
  color: var(--crawler-muted);
  font-size: 13px;
}

.korthos-crawler-listing a {
  color: inherit;
  text-decoration-color: rgba(23, 23, 20, .35);
  text-underline-offset: 3px;
}

.korthos-crawler-listing .event-ledger-row {
  padding: 22px 0;
  border-top: 1px solid var(--crawler-rule);
}

.korthos-crawler-listing .event-ledger-row__summary {
  display: grid;
  grid-template-columns: 104px 140px minmax(160px, 220px) minmax(280px, 1fr) 140px;
  gap: 20px;
  align-items: start;
}

.korthos-crawler-listing .event-ledger-date,
.korthos-crawler-listing .event-ledger-type,
.korthos-crawler-listing .event-ledger-segment {
  color: var(--crawler-muted);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.korthos-crawler-listing .event-ledger-company {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
}

.korthos-crawler-listing .event-ledger-title {
  margin: 0;
  font-size: 16px;
  line-height: 1.35;
}

.korthos-crawler-listing .event-ledger-detail {
  margin: 16px 0 0 404px;
  padding-left: 20px;
  border-left: 2px solid #dce8df;
  color: #4f504c;
  font-size: 13px;
  line-height: 1.55;
}

.korthos-crawler-listing .event-ledger-detail p,
.korthos-crawler-listing .event-ledger-detail ul {
  margin: 8px 0;
}

.korthos-crawler-listing .event-ledger-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 12px;
  color: var(--crawler-accent);
  font-weight: 600;
}

.korthos-crawler-listing .korthos-event-archive-pagination {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0 0;
  border-top: 1px solid var(--crawler-rule);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}

body:has(> .korthos-crawler-listing) > .site-footer--crawler {
  width: min(100% - 48px, 1480px);
  margin: 0 auto;
  padding: 28px 0 48px;
  border-top: 1px solid var(--crawler-rule);
}

body:has(> .korthos-crawler-listing) > .site-footer--crawler h2 {
  margin: 0 0 16px;
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

body:has(> .korthos-crawler-listing) > .site-footer--crawler ul {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

body:has(> .korthos-crawler-listing) > .site-footer--crawler a {
  color: var(--crawler-muted);
  font-size: 12px;
  text-decoration: none;
}

@media (max-width: 900px) {
  .korthos-crawler-listing {
    width: min(100% - 32px, 1480px);
    padding-top: 40px;
  }

  .korthos-crawler-listing .event-ledger-row__summary {
    grid-template-columns: 1fr 1fr;
    gap: 8px 16px;
  }

  .korthos-crawler-listing .event-ledger-title,
  .korthos-crawler-listing .event-ledger-company {
    grid-column: 1 / -1;
  }

  .korthos-crawler-listing .event-ledger-company {
    grid-row: 1;
  }

  .korthos-crawler-listing .event-ledger-title {
    grid-row: 2;
  }

  .korthos-crawler-listing .event-ledger-detail {
    margin-left: 0;
  }

  body:has(> .korthos-crawler-listing) > .site-footer--crawler {
    width: min(100% - 32px, 1480px);
  }
}

@media (max-width: 520px) {
  .korthos-crawler-listing > h1 {
    font-size: 44px;
  }

  .korthos-crawler-listing > p {
    margin-bottom: 32px;
  }
}
