:root {
  --report-bg: #f3f6f7;
  --report-surface: #ffffff;
  --report-ink: #16232d;
  --report-muted: #66737f;
  --report-line: #d8e1e5;
  --report-teal: #0b766b;
  --report-teal-soft: #d9f1ec;
  --report-blue: #276f9f;
  --report-blue-soft: #e5f0f7;
  --report-amber: #9a5a00;
  --report-amber-soft: #fff0d4;
  --report-red: #b12d3b;
  --report-shadow: 0 16px 44px rgba(28, 38, 48, 0.08);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

body.report-page {
  margin: 0;
  min-width: 320px;
  background: var(--report-bg);
  color: var(--report-ink);
  font-family: "Inter", "Pretendard", "Noto Sans KR", "Segoe UI", Arial, sans-serif;
}

.report-page a {
  color: inherit;
}

.report-page button,
.report-page input,
.report-page select {
  font: inherit;
}

.report-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1240px, calc(100% - 40px));
  min-height: 70px;
  margin: 0 auto;
  border-bottom: 1px solid var(--report-line);
}

.report-brand {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  color: var(--report-ink);
  font-size: 21px;
  font-weight: 900;
  text-decoration: none;
}

.report-brand span {
  color: var(--report-teal);
  font-size: 11px;
  font-weight: 900;
}

.report-header nav,
.report-footer nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.report-header nav a,
.report-header nav button {
  min-height: 36px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--report-muted);
  padding: 8px 10px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.report-header nav a:hover,
.report-header nav a[aria-current="page"],
.report-header nav button:hover {
  background: var(--report-teal-soft);
  color: var(--report-teal);
}

.report-shell {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  padding: 20px 0 64px;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  min-height: 30px;
  color: var(--report-muted);
  font-size: 12px;
}

.breadcrumbs a {
  color: var(--report-teal);
  font-weight: 800;
  text-decoration: none;
}

.report-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  align-items: end;
  gap: 44px;
  padding: 46px 0 38px;
}

.report-eyebrow {
  margin: 0 0 8px;
  color: var(--report-teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.report-hero h1,
.directory-hero h1,
.not-found-report h1 {
  max-width: 850px;
  margin: 0;
  font-size: 44px;
  line-height: 1.14;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.report-hero > div:first-child > p:last-child,
.directory-hero > p:last-child,
.not-found-report > p {
  max-width: 780px;
  margin: 14px 0 0;
  color: #465663;
  font-size: 16px;
  line-height: 1.7;
}

.hero-metric {
  min-width: 0;
  padding: 4px 0 4px 28px;
  border-left: 4px solid var(--report-teal);
}

.hero-metric span,
.hero-metric small {
  display: block;
  color: var(--report-muted);
  font-size: 13px;
  font-weight: 800;
}

.hero-metric strong {
  display: block;
  margin: 8px 0;
  color: var(--report-teal);
  font-size: 32px;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.report-disclosure {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  padding: 15px 18px;
  border: 1px solid #edc98f;
  border-radius: 6px;
  background: var(--report-amber-soft);
  color: #70470b;
  font-size: 13px;
  line-height: 1.55;
}

.report-disclosure strong {
  flex: 0 0 auto;
  color: var(--report-red);
}

.report-disclosure b {
  color: #4c3718;
}

.report-kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 26px;
}

.report-kpi-grid article {
  min-width: 0;
  min-height: 132px;
  padding: 18px;
  border: 1px solid var(--report-line);
  border-radius: 8px;
  background: var(--report-surface);
  box-shadow: 0 8px 24px rgba(28, 38, 48, 0.05);
}

.report-kpi-grid span,
.report-kpi-grid small {
  display: block;
  color: var(--report-muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.45;
}

.report-kpi-grid strong {
  display: block;
  margin: 13px 0 10px;
  font-size: 25px;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.report-kpi-grid article:first-child strong,
.report-kpi-grid article:last-child strong {
  color: var(--report-teal);
}

.report-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  align-items: start;
  gap: 34px;
}

.report-main-column {
  min-width: 0;
}

.report-section {
  padding: 32px 0 38px;
  border-top: 1px solid var(--report-line);
}

.report-section:first-child {
  border-top: 0;
  padding-top: 12px;
}

.report-section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.report-section-heading h2,
.report-sponsor h2,
.report-source-box h2,
.report-faq h2,
.directory-partner h2 {
  margin: 0;
  font-size: 22px;
  line-height: 1.3;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.report-section-heading > span,
.report-section-heading > a {
  flex: 0 0 auto;
  color: var(--report-muted);
  font-size: 12px;
  font-weight: 800;
}

.report-section-heading > a {
  color: var(--report-teal);
  text-decoration: none;
}

.report-analysis > p {
  max-width: 850px;
  margin: 0 0 15px;
  color: #3e4e5a;
  font-size: 16px;
  line-height: 1.78;
}

.report-analysis > p:last-child {
  margin-bottom: 0;
}

.report-analysis strong {
  color: var(--report-ink);
}

.trend-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.trend-figure {
  min-width: 0;
  margin: 0;
  padding: 16px;
  border: 1px solid var(--report-line);
  border-radius: 8px;
  background: var(--report-surface);
  box-shadow: 0 8px 26px rgba(28, 38, 48, 0.05);
}

.trend-figure figcaption {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  min-height: 42px;
  margin-bottom: 6px;
}

.trend-figure figcaption strong {
  font-size: 14px;
}

.trend-figure figcaption span {
  color: var(--report-teal);
  font-size: 13px;
  font-weight: 900;
  text-align: right;
  overflow-wrap: anywhere;
}

.trend-figure svg {
  display: block;
  width: 100%;
  aspect-ratio: 760 / 250;
  overflow: visible;
}

.trend-figure polyline {
  fill: none;
  stroke: var(--report-teal);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
}

.trend-figure.profit-trend polyline {
  stroke: var(--report-blue);
}

.chart-dots circle {
  fill: var(--report-surface);
  stroke: var(--report-teal);
  stroke-width: 3;
}

.profit-trend .chart-dots circle {
  stroke: var(--report-blue);
}

.chart-grid line {
  stroke: #e7edef;
  stroke-width: 1;
}

.chart-grid line.zero-line {
  stroke: #9aa7b0;
  stroke-width: 1.5;
}

.chart-grid text,
.chart-years text {
  fill: var(--report-muted);
  font-size: 11px;
}

.report-table-wrap {
  width: 100%;
  overflow-x: auto;
  border: 1px solid var(--report-line);
  border-radius: 8px;
  background: var(--report-surface);
  box-shadow: 0 8px 26px rgba(28, 38, 48, 0.05);
}

.report-data-table {
  width: 100%;
  min-width: 930px;
  border-collapse: collapse;
}

.report-data-table th,
.report-data-table td {
  padding: 13px 14px;
  border-bottom: 1px solid var(--report-line);
  font-size: 13px;
  text-align: left;
  white-space: nowrap;
}

.report-data-table th {
  background: #f8fafb;
  color: var(--report-muted);
  font-size: 11px;
  font-weight: 900;
}

.report-data-table tbody tr:last-child td {
  border-bottom: 0;
}

.report-data-table tbody tr:hover {
  background: #f6fbfa;
}

.report-data-table .number-cell {
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.report-basis-badge {
  display: block;
  width: max-content;
  margin: 4px 0 0 auto;
  padding: 2px 5px;
  border: 1px solid var(--report-line);
  border-radius: 4px;
  color: var(--report-muted);
  background: #f8fafb;
  font-size: 10px;
  font-weight: 900;
}

.report-basis-badge.matched {
  border-color: rgba(11, 118, 107, 0.24);
  color: var(--report-teal);
  background: var(--report-teal-soft);
}

.report-basis-badge.mixed {
  border-color: rgba(182, 107, 0, 0.24);
  color: #865000;
  background: var(--report-amber-soft);
}

.report-data-table .report-payout,
.report-data-table a {
  color: var(--report-teal);
  font-weight: 900;
}

.collection-switch,
.year-link-strip {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 14px 0;
  overflow-x: auto;
  scrollbar-width: thin;
}

.collection-switch a,
.year-link-strip a {
  flex: 0 0 auto;
  padding: 9px 12px;
  border: 1px solid var(--report-line);
  border-radius: 6px;
  background: var(--report-surface);
  color: var(--report-ink);
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
}

.collection-switch a[aria-current="page"],
.year-link-strip a[aria-current="page"] {
  border-color: var(--report-teal);
  background: var(--report-teal);
  color: #fff;
}

.collection-table-section {
  margin-top: 18px;
}

.collection-ranking-table {
  min-width: 980px;
}

.landing-company-cell a {
  display: block;
  width: max-content;
  max-width: 250px;
}

.landing-company-cell small {
  display: block;
  margin-top: 4px;
  color: var(--report-muted);
  font-size: 11px;
}

.collection-context > p {
  margin: 0;
  padding: 0 22px 16px;
  color: var(--report-muted);
  font-size: 14px;
  line-height: 1.75;
}

.collection-context > p:first-of-type {
  padding-top: 20px;
}

.sector-link-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  padding: 18px;
}

.sector-link-grid a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 11px 12px;
  border: 1px solid var(--report-line);
  border-radius: 6px;
  color: var(--report-ink);
  text-decoration: none;
}

.sector-link-grid a:hover,
.compact-sector-links a:hover {
  border-color: var(--report-teal);
  color: var(--report-teal);
}

.sector-link-grid span {
  color: var(--report-muted);
  font-size: 11px;
}

.compact-sector-links {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 2px 22px 22px;
}

.compact-sector-links a {
  padding: 7px 9px;
  border: 1px solid var(--report-line);
  border-radius: 5px;
  color: var(--report-ink);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.collection-partner {
  margin-top: 22px;
}

.current-nav-label {
  color: var(--report-muted);
  font-size: 11px;
  font-weight: 900;
}

.advertise-hero .hero-metric strong {
  font-size: 20px;
}

.advertise-offer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.advertise-offer-grid article {
  min-width: 0;
  padding: 24px;
  border-right: 1px solid var(--report-line);
}

.advertise-offer-grid article:last-child {
  border-right: 0;
}

.advertise-offer-grid article > span {
  color: var(--report-teal);
  font-size: 11px;
  font-weight: 900;
}

.advertise-offer-grid h3 {
  margin: 8px 0 10px;
  font-size: 19px;
}

.advertise-offer-grid p,
.advertise-offer-grid li {
  color: var(--report-muted);
  font-size: 13px;
  line-height: 1.7;
}

.advertise-offer-grid ul {
  margin: 14px 0 0;
  padding-left: 18px;
}

.advertise-checklist {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.advertise-checklist p {
  margin: 0;
  padding: 22px;
  border-right: 1px solid var(--report-line);
}

.advertise-checklist p:last-child {
  border-right: 0;
}

.advertise-checklist strong,
.advertise-checklist span {
  display: block;
}

.advertise-checklist span {
  margin-top: 8px;
  color: var(--report-muted);
  font-size: 13px;
  line-height: 1.65;
}

.advertise-process ol {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

.advertise-process li {
  padding: 22px;
  border-right: 1px solid var(--report-line);
}

.advertise-process li:last-child {
  border-right: 0;
}

.advertise-process li strong,
.advertise-process li span {
  display: block;
}

.advertise-process li span {
  margin-top: 8px;
  color: var(--report-muted);
  font-size: 13px;
  line-height: 1.65;
}

.negative-value {
  color: var(--report-red);
}

.report-method ol {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: method;
}

.report-method li {
  min-height: 160px;
  padding: 18px;
  border-left: 3px solid var(--report-teal);
  background: var(--report-surface);
  counter-increment: method;
}

.report-method li::before {
  content: "0" counter(method);
  display: block;
  margin-bottom: 18px;
  color: var(--report-teal);
  font-size: 12px;
  font-weight: 900;
}

.report-method li strong,
.report-method li span {
  display: block;
}

.report-method li strong {
  margin-bottom: 8px;
  font-size: 14px;
}

.report-method li span {
  color: var(--report-muted);
  font-size: 13px;
  line-height: 1.6;
}

.report-side-column {
  position: sticky;
  top: 18px;
  display: grid;
  gap: 14px;
}

.report-sponsor,
.report-source-box {
  padding: 22px;
  border-radius: 8px;
  box-shadow: var(--report-shadow);
}

.report-sponsor {
  background: var(--report-ink);
  color: #ffffff;
}

.report-sponsor > span,
.directory-partner > div > span {
  display: block;
  margin-bottom: 10px;
  color: #63d7c7;
  font-size: 11px;
  font-weight: 900;
}

.report-sponsor p {
  margin: 13px 0 18px;
  color: #c8d2d8;
  font-size: 13px;
  line-height: 1.65;
}

.report-sponsor a,
.directory-partner > a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 6px;
  background: #ffffff;
  color: var(--report-ink);
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
}

.report-sponsor small {
  display: block;
  margin-top: 13px;
  color: #9eabb4;
  font-size: 10px;
  line-height: 1.5;
}

.report-source-box {
  border: 1px solid var(--report-line);
  background: var(--report-surface);
}

.report-source-box h2 {
  font-size: 17px;
}

.report-source-box dl {
  margin: 16px 0;
}

.report-source-box dl div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--report-line);
}

.report-source-box dt,
.report-source-box dd {
  margin: 0;
  font-size: 12px;
}

.report-source-box dt {
  color: var(--report-muted);
}

.report-source-box dd {
  font-weight: 800;
  text-align: right;
}

.report-source-box > a {
  color: var(--report-teal);
  font-size: 12px;
  font-weight: 900;
}

.related-section,
.report-faq {
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--report-line);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.related-company {
  display: grid;
  min-width: 0;
  min-height: 158px;
  padding: 17px;
  border: 1px solid var(--report-line);
  border-radius: 8px;
  background: var(--report-surface);
  text-decoration: none;
  transition: border-color 160ms ease, transform 160ms ease;
}

.related-company:hover {
  border-color: var(--report-teal);
  transform: translateY(-2px);
}

.related-company span,
.related-company small {
  color: var(--report-muted);
  font-size: 11px;
}

.related-company strong {
  margin: 9px 0 5px;
  font-size: 15px;
  overflow-wrap: anywhere;
}

.related-company b {
  align-self: end;
  margin-top: 12px;
  color: var(--report-teal);
  font-size: 14px;
  overflow-wrap: anywhere;
}

.report-faq {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.4fr);
  gap: 0 34px;
}

.report-faq > div {
  grid-row: 1 / 4;
}

.report-faq details {
  border-top: 1px solid var(--report-line);
  padding: 17px 2px;
}

.report-faq details:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.report-faq summary {
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
}

.report-faq details p {
  margin: 10px 0 0;
  color: var(--report-muted);
  font-size: 13px;
  line-height: 1.65;
}

.report-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  padding: 24px 0 38px;
  border-top: 1px solid var(--report-line);
}

.report-footer > div {
  display: grid;
  gap: 4px;
}

.report-footer strong {
  font-size: 15px;
}

.report-footer span,
.report-footer a {
  color: var(--report-muted);
  font-size: 11px;
}

.report-footer a {
  padding: 5px;
  text-decoration: none;
}

.directory-hero {
  padding: 46px 0 30px;
}

.directory-controls {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 220px auto;
  align-items: end;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--report-line);
  border-radius: 8px;
  background: var(--report-surface);
  box-shadow: var(--report-shadow);
}

.directory-controls label {
  display: grid;
  gap: 7px;
}

.directory-controls label span {
  color: var(--report-muted);
  font-size: 11px;
  font-weight: 900;
}

.directory-controls input,
.directory-controls select {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--report-line);
  border-radius: 6px;
  background: #ffffff;
  color: var(--report-ink);
  padding: 9px 12px;
  outline: none;
}

.directory-controls input:focus,
.directory-controls select:focus {
  border-color: var(--report-teal);
  box-shadow: 0 0 0 3px rgba(11, 118, 107, 0.12);
}

.directory-controls p {
  min-width: 100px;
  margin: 0 0 12px;
  color: var(--report-teal);
  font-size: 13px;
  font-weight: 900;
  text-align: right;
}

.directory-update {
  margin: 15px 0 12px;
  color: var(--report-muted);
  font-size: 12px;
}

.company-directory-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.company-directory-grid li {
  min-width: 0;
}

.company-directory-grid a {
  display: grid;
  min-height: 126px;
  padding: 15px;
  border: 1px solid var(--report-line);
  border-radius: 8px;
  background: var(--report-surface);
  text-decoration: none;
}

.company-directory-grid a:hover {
  border-color: var(--report-teal);
  background: #f8fcfb;
}

.company-directory-grid strong {
  margin-bottom: 6px;
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.company-directory-grid span,
.company-directory-grid small {
  color: var(--report-muted);
  font-size: 11px;
  line-height: 1.5;
}

.company-directory-grid small {
  align-self: end;
  margin-top: 14px;
}

.directory-empty {
  margin: 24px 0;
  padding: 28px;
  border: 1px dashed var(--report-line);
  color: var(--report-muted);
  text-align: center;
}

.directory-partner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 36px;
  padding: 28px;
  border-radius: 8px;
  background: var(--report-ink);
  color: #ffffff;
}

.directory-partner p {
  margin: 10px 0 0;
  color: #c8d2d8;
  font-size: 13px;
}

.directory-partner > a {
  flex: 0 0 160px;
}

.not-found-report {
  padding: 100px 0;
}

.not-found-report > div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.not-found-report > div a {
  min-height: 42px;
  border-radius: 6px;
  background: var(--report-teal);
  color: #ffffff;
  padding: 11px 14px;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

@media (max-width: 1040px) {
  .report-kpi-grid,
  .related-grid,
  .company-directory-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .report-content-grid {
    grid-template-columns: minmax(0, 1fr) 270px;
    gap: 24px;
  }

  .trend-grid,
  .report-method ol {
    grid-template-columns: 1fr;
  }

  .report-method li {
    min-height: 0;
  }
}

@media (max-width: 780px) {
  .sector-link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .current-nav-label {
    display: none;
  }

  .advertise-offer-grid,
  .advertise-checklist,
  .advertise-process ol {
    grid-template-columns: 1fr;
  }

  .advertise-offer-grid article,
  .advertise-checklist p,
  .advertise-process li {
    border-right: 0;
    border-bottom: 1px solid var(--report-line);
  }

  .advertise-offer-grid article:last-child,
  .advertise-checklist p:last-child,
  .advertise-process li:last-child {
    border-bottom: 0;
  }

  .report-header,
  .report-shell,
  .report-footer {
    width: min(100% - 24px, 1240px);
  }

  .report-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding: 15px 0;
  }

  .report-brand {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .report-header nav {
    width: 100%;
  }

  .report-header nav a,
  .report-header nav button {
    flex: 1 1 0;
    text-align: center;
  }

  .report-hero {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 34px 0 28px;
  }

  .report-hero h1,
  .directory-hero h1,
  .not-found-report h1 {
    font-size: 34px;
  }

  .hero-metric {
    padding-left: 18px;
  }

  .report-disclosure {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .report-kpi-grid {
    grid-template-columns: 1fr;
  }

  .report-kpi-grid article {
    min-height: 116px;
  }

  .report-content-grid {
    grid-template-columns: 1fr;
  }

  .report-side-column {
    position: static;
    grid-row: 1;
    grid-template-columns: 1fr 1fr;
  }

  .report-section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .report-faq {
    grid-template-columns: 1fr;
  }

  .report-faq > div {
    grid-row: auto;
    margin-bottom: 22px;
  }

  .directory-hero {
    padding: 34px 0 24px;
  }

  .directory-controls {
    grid-template-columns: 1fr 1fr;
  }

  .directory-controls p {
    grid-column: 1 / -1;
    margin: 0;
    text-align: left;
  }

  .directory-partner,
  .report-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .directory-partner > a {
    flex: 0 0 auto;
    width: 100%;
  }
}

@media (max-width: 540px) {
  .report-shell {
    padding-top: 12px;
  }

  .breadcrumbs {
    max-width: 100%;
    overflow: hidden;
    white-space: nowrap;
  }

  .breadcrumbs span:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero-metric strong {
    font-size: 27px;
  }

  .report-kpi-grid strong {
    font-size: 23px;
  }

  .report-side-column,
  .company-directory-grid,
  .related-grid,
  .directory-controls {
    grid-template-columns: 1fr;
  }

  .directory-controls p {
    grid-column: auto;
  }

  .trend-figure {
    padding: 12px 8px;
  }

  .chart-grid text,
  .chart-years text {
    font-size: 10px;
  }

  .report-analysis > p {
    font-size: 15px;
  }

  .report-footer nav {
    justify-content: flex-start;
  }
}
