:root {
  color-scheme: dark;
  --ink: #07111f;
  --ink-soft: #111d2d;
  --panel: #162232;
  --panel-strong: #1d2b3c;
  --paper: #f7f8f5;
  --paper-muted: #e9eef0;
  --text: #f8fafc;
  --muted: #a9bdca;
  --dark-text: #0c1727;
  --cyan: #29d3d0;
  --gold: #ffcb66;
  --rose: #ef7aa7;
  --line: rgba(255, 255, 255, 0.12);
  --line-dark: rgba(7, 17, 31, 0.14);
  --shadow: 0 22px 70px rgba(2, 8, 18, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

button,
input,
select,
textarea {
  font: inherit;
}

.shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(7, 17, 31, 0.94);
  backdrop-filter: blur(18px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1240px, calc(100% - 40px));
  height: 76px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-weight: 700;
  text-decoration: none;
}

.brand__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--paper);
  color: var(--dark-text);
  font-size: 0.82rem;
}

.brand__name {
  font-size: 0.82rem;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  padding: 10px 13px;
  border-radius: 8px;
  color: #cbd5e1;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.09);
  color: var(--text);
  outline: none;
}

.site-nav .site-nav__cta {
  margin-left: 8px;
  background: var(--paper);
  color: var(--dark-text);
}

.site-nav .site-nav__cta:hover,
.site-nav .site-nav__cta:focus-visible {
  background: var(--cyan);
  color: var(--dark-text);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 4px 0;
  background: var(--text);
}

.blog-hero {
  position: relative;
  min-height: min(630px, 72svh);
  display: flex;
  align-items: end;
  overflow: hidden;
  background-image:
    linear-gradient(90deg, rgba(7, 17, 31, 0.98), rgba(7, 17, 31, 0.84) 58%, rgba(7, 17, 31, 0.64)),
    url("/images/hero-system-map.png");
  background-position: center;
  background-size: cover;
}

.blog-hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 34%;
  height: 6px;
  background: var(--cyan);
  content: "";
}

.blog-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 70px;
  align-items: end;
  padding: 100px 0 86px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.blog-hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2.7rem, 7vw, 5.8rem);
  font-weight: 650;
  line-height: 1.02;
}

.blog-hero__inner > div > p:last-child {
  max-width: 720px;
  margin: 28px 0 0;
  color: #d5e0e7;
  font-size: 1.12rem;
  line-height: 1.8;
}

.blog-hero__aside {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
  box-shadow: var(--shadow);
}

.blog-hero__aside span {
  padding: 18px 20px;
  background: rgba(9, 24, 40, 0.88);
  color: #dbe7ec;
  font-size: 0.92rem;
  font-weight: 650;
}

.blog-hero__aside span:nth-child(2) {
  color: var(--gold);
}

.blog-hero__aside span:nth-child(4) {
  color: var(--rose);
}

.blog-browser {
  padding: 96px 0 120px;
  background: var(--paper);
  color: var(--dark-text);
}

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

.section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
}

.rss-link {
  color: #155f6a;
  font-weight: 750;
  text-decoration: none;
}

.rss-link:hover,
.rss-link:focus-visible {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.blog-tools {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(180px, 0.4fr) minmax(180px, 0.4fr);
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 40px rgba(7, 17, 31, 0.08);
}

.blog-tools label {
  display: grid;
  gap: 7px;
}

.blog-tools label > span {
  color: #526475;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.blog-tools input,
.blog-tools select {
  width: 100%;
  min-height: 48px;
  border: 1px solid #cbd5df;
  border-radius: 6px;
  background: #f9fbfb;
  color: var(--dark-text);
  padding: 0 14px;
  outline: none;
}

.blog-tools input:focus,
.blog-tools select:focus {
  border-color: #0a8d93;
  box-shadow: 0 0 0 3px rgba(41, 211, 208, 0.2);
}

.results-count {
  min-height: 24px;
  margin: 22px 0;
  color: #526475;
  font-size: 0.92rem;
}

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

.post-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 55px rgba(7, 17, 31, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 65px rgba(7, 17, 31, 0.14);
}

.post-card[hidden] {
  display: none;
}

.post-card__media {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--ink-soft);
}

.post-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.post-card:hover .post-card__media img {
  transform: scale(1.025);
}

.post-card__placeholder {
  display: grid;
  width: 100%;
  height: 100%;
  place-content: center;
  gap: 10px;
  border-bottom: 5px solid var(--cyan);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 42px 42px;
  color: #dce8ed;
  text-align: center;
}

.post-card__placeholder span {
  margin: 0 auto;
  color: var(--cyan);
  font-size: 2.8rem;
  font-weight: 800;
}

.post-card__placeholder strong {
  font-size: 0.78rem;
  text-transform: uppercase;
}

.post-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 28px;
}

.post-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  color: #657786;
  font-size: 0.78rem;
  font-weight: 650;
}

.post-card h2 {
  margin: 18px 0 0;
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.2;
}

.post-card h2 a {
  text-decoration: none;
}

.post-card h2 a:hover,
.post-card h2 a:focus-visible {
  color: #087982;
}

.post-card__body > p {
  margin: 16px 0 0;
  color: #4f6170;
  line-height: 1.75;
}

.post-card__tags,
.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 20px;
}

.post-card__tags a,
.article-tags a {
  border: 1px solid #cdd9df;
  border-radius: 999px;
  padding: 5px 9px;
  color: #315566;
  font-size: 0.74rem;
  font-weight: 700;
  text-decoration: none;
}

.post-card__tags a:hover,
.post-card__tags a:focus-visible {
  border-color: #0a8d93;
  color: #08636b;
}

.post-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  margin-top: auto;
  padding-top: 24px;
  color: var(--dark-text);
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
}

.post-card__link span {
  color: #078891;
  font-size: 1.2rem;
}

.blog-empty {
  padding: 70px 24px;
  border: 1px dashed #9fb0ba;
  border-radius: 8px;
  background: #edf2f3;
  text-align: center;
}

.blog-empty h2 {
  margin: 0;
}

.blog-empty p {
  margin: 12px 0 0;
  color: #5c6d79;
}

.blog-empty--initial {
  margin-bottom: 24px;
}

.article-page {
  background: var(--paper);
  color: var(--dark-text);
}

.article-hero {
  padding: 88px 0 76px;
  background: var(--ink);
  color: var(--text);
}

.article-shell {
  width: min(850px, calc(100% - 40px));
  margin: 0 auto;
}

.breadcrumbs {
  display: flex;
  gap: 10px;
  color: #9db4c7;
  font-size: 0.82rem;
}

.breadcrumbs a {
  text-decoration: none;
}

.article-hero .article-tags a {
  border-color: rgba(41, 211, 208, 0.35);
  color: var(--cyan);
}

.article-hero h1 {
  margin: 24px 0 0;
  font-size: clamp(2.5rem, 7vw, 5.2rem);
  font-weight: 650;
  line-height: 1.04;
}

.article-lead {
  max-width: 760px;
  margin: 28px 0 0;
  color: #c6d5df;
  font-size: 1.18rem;
  line-height: 1.8;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 34px;
  color: #9db4c7;
  font-size: 0.84rem;
}

.article-meta strong {
  color: var(--text);
}

.article-cover {
  margin: 0;
  padding-top: 56px;
}

.article-cover img {
  width: 100%;
  max-height: 560px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.article-body {
  padding: 64px 0 80px;
  color: #24384a;
  font-size: 1.08rem;
  line-height: 1.9;
}

.article-body > :first-child {
  margin-top: 0;
}

.article-body h2,
.article-body h3,
.article-body h4 {
  color: var(--dark-text);
  line-height: 1.2;
}

.article-body h2 {
  margin: 64px 0 20px;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
}

.article-body h3 {
  margin: 44px 0 16px;
  font-size: 1.6rem;
}

.article-body p,
.article-body ul,
.article-body ol {
  margin: 0 0 24px;
}

.article-body li + li {
  margin-top: 9px;
}

.article-body a {
  color: #087982;
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.article-body blockquote {
  margin: 38px 0;
  border-left: 5px solid var(--cyan);
  padding: 18px 24px;
  background: #e8f1f1;
  color: #1b3f4d;
  font-size: 1.18rem;
}

.article-body pre {
  max-width: 100%;
  overflow-x: auto;
  margin: 32px 0;
  border-radius: 8px;
  background: #07111f;
  padding: 24px;
  color: #e7f0f4;
  font-size: 0.9rem;
  line-height: 1.7;
}

.article-body :not(pre) > code,
.article-body kbd {
  border: 1px solid #cbd5df;
  border-radius: 4px;
  background: #edf2f3;
  padding: 2px 6px;
  font-size: 0.9em;
}

.article-body figure {
  margin: 38px 0;
}

.article-body figure img,
.article-body > img {
  width: 100%;
  border-radius: 8px;
}

.article-body figcaption {
  margin-top: 10px;
  color: #647684;
  font-size: 0.82rem;
  text-align: center;
}

.article-body table {
  width: 100%;
  margin: 34px 0;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.article-body th,
.article-body td {
  border: 1px solid #c7d4db;
  padding: 12px;
  text-align: left;
  vertical-align: top;
}

.article-body th {
  background: #e4edef;
}

.article-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-top: 1px solid #cad6dc;
  padding: 34px 0 70px;
}

.article-footer p {
  margin: 4px 0;
  color: #647684;
  font-size: 0.8rem;
}

.article-footer a {
  font-weight: 800;
  text-decoration: none;
}

.article-interactions {
  border-top: 1px solid #cad6dc;
  background: #e8eef0;
  color: var(--dark-text);
  padding: 86px 0 100px;
}

.interaction-shell {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.interaction-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 34px;
}

.interaction-heading .eyebrow {
  color: #087982;
}

.interaction-heading h2 {
  margin: 0;
  font-size: 2.45rem;
  line-height: 1.12;
}

.like-control {
  flex: 0 0 auto;
}

.like-button {
  display: inline-flex;
  min-width: 148px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid #aebdc5;
  border-radius: 7px;
  background: #fff;
  color: #173047;
  padding: 10px 14px;
  cursor: pointer;
  font-weight: 800;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease, transform 160ms ease;
}

.like-button:hover,
.like-button:focus-visible,
.like-button.is-liked {
  border-color: #b92f64;
  background: #fff2f6;
  color: #a42153;
}

.like-button:active {
  transform: translateY(1px);
}

.like-button:disabled,
.comment-submit:disabled {
  cursor: wait;
  opacity: 0.62;
}

.like-button__icon {
  width: 22px;
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1;
}

.like-button strong {
  min-width: 24px;
  border-left: 1px solid #d5dee3;
  padding-left: 9px;
  text-align: center;
}

.comments-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  gap: 42px;
  align-items: start;
}

.comment-form {
  position: relative;
  display: grid;
  gap: 16px;
  border: 1px solid #c3d0d6;
  border-radius: 8px;
  background: #fff;
  padding: 28px;
  box-shadow: 0 16px 45px rgba(7, 17, 31, 0.08);
}

.comment-form__heading h3,
.comments-panel__heading h3 {
  margin: 0;
  font-size: 1.28rem;
  line-height: 1.3;
}

.comment-form__heading p {
  margin: 7px 0 0;
  color: #607282;
  font-size: 0.86rem;
}

.comment-form label {
  display: grid;
  gap: 7px;
}

.comment-form label > span {
  color: #3b5063;
  font-size: 0.75rem;
  font-weight: 800;
}

.comment-form input,
.comment-form textarea {
  width: 100%;
  border: 1px solid #b9c7cf;
  border-radius: 6px;
  background: #f9fbfb;
  color: var(--dark-text);
  padding: 11px 12px;
  outline: none;
}

.comment-form input {
  min-height: 46px;
}

.comment-form textarea {
  min-height: 150px;
  line-height: 1.55;
  resize: vertical;
}

.comment-form input:focus,
.comment-form textarea:focus {
  border-color: #087f83;
  box-shadow: 0 0 0 3px rgba(41, 211, 208, 0.22);
}

.comment-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.comment-privacy,
.comment-form__status {
  margin: 0;
  color: #667886;
  font-size: 0.76rem;
  line-height: 1.55;
}

.comment-submit {
  min-height: 47px;
  border: 1px solid var(--dark-text);
  border-radius: 7px;
  background: var(--dark-text);
  color: #fff;
  padding: 10px 16px;
  cursor: pointer;
  font-weight: 800;
}

.comment-submit:hover,
.comment-submit:focus-visible {
  border-color: #087f83;
  background: #087f83;
}

.comment-form__status {
  min-height: 20px;
  font-weight: 700;
}

.comment-form__status.is-success {
  color: #17633e;
}

.comment-form__status.is-error {
  color: #a21e35;
}

.comments-panel {
  min-width: 0;
}

.comments-panel__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 54px;
  border-bottom: 1px solid #becbd1;
  margin-bottom: 18px;
  padding-bottom: 16px;
}

.comments-panel__heading span {
  color: #5d7080;
  font-size: 0.78rem;
  font-weight: 800;
}

.comments-list {
  display: grid;
  gap: 14px;
}

.comment-card {
  min-width: 0;
  border: 1px solid #c5d1d7;
  border-radius: 8px;
  background: #f9fbfb;
  padding: 20px;
}

.comment-card header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.comment-avatar {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  place-items: center;
  border-radius: 7px;
  background: #123149;
  color: #cffffc;
  font-size: 0.8rem;
  font-weight: 900;
}

.comment-card h3 {
  overflow-wrap: anywhere;
  margin: 0;
  color: #142a3d;
  font-size: 0.96rem;
}

.comment-card time {
  display: block;
  margin-top: 3px;
  color: #687b89;
  font-size: 0.72rem;
}

.comment-card > p {
  margin: 16px 0 0;
  color: #354c5e;
  font-size: 0.92rem;
  line-height: 1.72;
  overflow-wrap: anywhere;
  white-space: pre-wrap;
}

.comments-empty {
  margin: 0;
  border-left: 3px solid #149c9d;
  padding: 12px 0 12px 16px;
  color: #5b6e7d;
  line-height: 1.65;
}

.related-posts {
  padding: 90px 0 110px;
  border-top: 1px solid var(--line);
  background: var(--ink-soft);
}

.related-posts .section-heading h2 {
  color: var(--text);
}

.post-grid--related {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.post-grid--related .post-card__body {
  padding: 22px;
}

.post-grid--related .post-card h2 {
  font-size: 1.35rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #050d18;
  color: var(--text);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr;
  gap: 40px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 62px 0;
}

.site-footer p {
  color: var(--muted);
  font-size: 0.86rem;
}

.site-footer__links {
  display: grid;
  align-content: start;
  justify-content: end;
  gap: 10px;
}

.site-footer__links a {
  color: #d8e3e9;
  font-size: 0.9rem;
  text-decoration: none;
}

.site-footer__links a:hover,
.site-footer__links a:focus-visible {
  color: var(--cyan);
}

.site-footer__legal {
  grid-column: 1 / -1;
  margin: 12px 0 0;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

@media (max-width: 920px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 76px;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    max-height: calc(100svh - 76px);
    overflow-y: auto;
    border-bottom: 1px solid var(--line);
    background: #07111f;
    padding: 18px 20px 24px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px;
  }

  .site-nav .site-nav__cta {
    margin: 8px 0 0;
    text-align: center;
  }

  .blog-hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .blog-hero__aside {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-tools {
    grid-template-columns: 1fr 1fr;
  }

  .search-field {
    grid-column: 1 / -1;
  }

  .post-grid--related {
    grid-template-columns: 1fr;
  }

  .comments-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .shell,
  .article-shell,
  .site-header__inner,
  .site-footer__inner {
    width: min(100% - 32px, 1180px);
  }

  .brand__name {
    display: none;
  }

  .blog-hero {
    min-height: auto;
  }

  .blog-hero__inner {
    padding: 76px 0 62px;
  }

  .blog-hero h1 {
    font-size: clamp(2.6rem, 13vw, 4.2rem);
  }

  .blog-hero__inner > div > p:last-child {
    font-size: 1rem;
  }

  .blog-hero__aside {
    grid-template-columns: 1fr;
  }

  .blog-browser {
    padding: 68px 0 86px;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }

  .blog-tools,
  .post-grid {
    grid-template-columns: 1fr;
  }

  .search-field {
    grid-column: auto;
  }

  .post-card__body {
    padding: 22px;
  }

  .article-hero {
    padding: 56px 0 52px;
  }

  .article-hero h1 {
    overflow-wrap: anywhere;
    font-size: clamp(2.4rem, 13vw, 4rem);
  }

  .article-lead {
    font-size: 1.04rem;
  }

  .article-cover {
    padding-top: 32px;
  }

  .article-body {
    padding: 46px 0 58px;
    font-size: 1rem;
  }

  .article-body h2 {
    margin-top: 48px;
  }

  .article-body table {
    display: block;
    overflow-x: auto;
  }

  .article-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .article-interactions {
    padding: 64px 0 74px;
  }

  .interaction-shell {
    width: min(100% - 32px, 1120px);
  }

  .interaction-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .interaction-heading h2 {
    font-size: 2rem;
  }

  .like-button,
  .comment-submit {
    width: 100%;
  }

  .comment-form {
    padding: 22px 18px;
  }

  .comments-panel__heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .site-footer__links {
    justify-content: start;
  }

  .site-footer__legal {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
