:root {
  --black: #111111;
  --gray-dark: #565656;
  --gray-black: #676767;
  --gray-deep: #e9ebea;
  --gray-light: #f4f4f4;
  --gray-smoke: #f1f3f2;
  --white: #ffffff;
  --green-mid: #00aab0;
  --teal-text: #00727a;
  --teal-text-dk: #005a61;
  --blue: #d4ebed;
  --orange: #fff0d1;
  --orange-deep: #f99736;
  --ff: "IBM Plex Sans", Arial, Helvetica, sans-serif;
  --radius: 16px;
  --radius-sm: 12px;
  --pill: 50px;
}
html { background: var(--gray-smoke); scroll-behavior: auto; }
body { background: var(--gray-smoke); color: var(--black); font-family: var(--ff); font-size: 17px; line-height: 1.5; }
a { color: inherit; }
img { display: block; max-width: 100%; height: auto; }
.monitor { max-width: 900px; margin: 0 auto; padding: 40px 20px 60px; }
.card { background: var(--white); border-radius: var(--radius); padding: 40px; margin-bottom: 20px; }
.head__kicker { color: var(--teal-text); font-weight: 600; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 8px; }
h1, h2, h3 { font-weight: 600; line-height: 1.2; }
h1 { font-size: 36px; margin-bottom: 10px; }
h2 { font-size: 28px; }
h3 { font-size: 20px; }
.head__date { color: var(--gray-dark); margin-bottom: 24px; }
.head__hero { width: 100%; aspect-ratio: 21 / 6; object-fit: cover; object-position: 50% 50%; border-radius: var(--radius-sm); }
.toc h2 { margin-bottom: 20px; }
.toc__list { display: grid; gap: 10px; }
.toc__link { display: grid; grid-template-columns: 46px 1fr 18px; gap: 14px; align-items: center; text-decoration: none; padding: 14px 0; border-top: 1px solid var(--gray-deep); }
.toc__list li:first-child .toc__link { border-top: 0; padding-top: 0; }
.toc__num { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: var(--blue); color: var(--teal-text); font-weight: 600; }
.toc__ttl { display: block; font-weight: 600; line-height: 1.3; }
.toc__sub { display: block; margin-top: 3px; color: var(--gray-black); font-size: 15px; line-height: 1.4; }
.toc__chev { width: 9px; height: 9px; border-right: 2px solid var(--green-mid); border-top: 2px solid var(--green-mid); transform: rotate(45deg); }
.news { scroll-margin-top: 14px; }
.news__head { display: grid; grid-template-columns: 200px 1fr; gap: 26px; align-items: center; margin-bottom: 25px; }
.news__photo { width: 200px; aspect-ratio: 1; object-fit: cover; object-position: 50% 25%; border-radius: var(--radius-sm); }
.news__meta { color: var(--teal-text); font-weight: 600; text-transform: uppercase; letter-spacing: .03em; font-size: 14px; margin-bottom: 8px; }
.news__source { color: var(--gray-black); font-size: 14px; margin-top: 9px; }
.callout { background: var(--gray-light); border-radius: var(--radius-sm); padding: 24px; margin: 25px 0; }
.callout--key { background: var(--blue); }
.callout__label { display: block; color: var(--teal-text); font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: .03em; margin-bottom: 8px; }
.block { margin: 25px 0; }
.block h3 { color: var(--teal-text); margin-bottom: 12px; }
.points { padding-left: 22px; }
.points li { position: relative; margin: 8px 0; }
.points li::before { content: ""; position: absolute; left: -18px; top: .63em; width: 7px; height: 7px; border-radius: 50%; background: var(--teal-text); }
.facts { counter-reset: fact; }
.facts li { counter-increment: fact; position: relative; padding: 15px 0 15px 50px; border-top: 1px solid var(--gray-deep); }
.facts li:first-child { border-top: 0; padding-top: 3px; }
.facts li::before { content: counter(fact); position: absolute; left: 0; top: 12px; width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center; background: var(--blue); color: var(--teal-text); font-weight: 600; }
.facts li:first-child::before { top: 0; }
.practice { background: var(--blue); }
.sources { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.src { display: inline-flex; align-items: center; gap: 10px; max-width: 100%; padding: 10px 15px; border-radius: var(--pill); background: var(--teal-text); color: var(--white); font-size: 14px; font-weight: 600; text-decoration: none; overflow-wrap: anywhere; }
.src::after { content: ""; width: 7px; height: 7px; border-top: 2px solid #fff; border-right: 2px solid #fff; transform: rotate(45deg); flex: 0 0 auto; }
.src:hover, .src:focus { background: var(--teal-text-dk); }
.back { display: inline-block; margin-top: 18px; color: var(--teal-text); font-weight: 600; text-decoration: none; }
.foot h2 { margin-bottom: 16px; }
.foot__list { display: grid; gap: 9px; }
.foot__list a { color: var(--teal-text); overflow-wrap: anywhere; }
.foot__note { margin-top: 24px; color: var(--gray-black); font-size: 14px; }
strong, b { font-weight: 600; }
@media (max-width: 767px) {
  body { font-size: 16px; }
  .monitor { padding: 24px 14px 42px; }
  .card { padding: 24px 20px; }
  h1 { font-size: 26px; }
  h2 { font-size: 22px; }
  h3 { font-size: 18px; }
  .head__hero { aspect-ratio: 16 / 9; object-position: 50% 52%; }
  .news__head { grid-template-columns: 1fr; gap: 18px; }
  .news__photo { width: 100%; aspect-ratio: 16 / 9; object-position: 50% 30%; }
}
@media (max-width: 480px) {
  .toc__link { grid-template-columns: 40px 1fr 12px; gap: 10px; }
  .toc__num { width: 36px; height: 36px; }
  .card { padding: 22px 18px; }
  .facts li { padding-left: 44px; }
}
