/* ============================================================================
   Nigel — attempted thought
   Minimalist personal site.
   Type: Gambetta (serif, headings) + General Sans (sans, body).
   ========================================================================== */

:root {
  /* Palette — warm off-white, slate ink, restrained accent */
  --bg: #fbfaf7;
  --ink: #24252b;
  --muted: #8a8b86;
  --hairline: #e7e5df;
  --accent: #2f4fe0;
  --rail-bg: rgba(255, 255, 255, 0.72);
  --rail-border: rgba(0, 0, 0, 0.06);

  /* Type */
  --sans: "General Sans", ui-sans-serif, system-ui, sans-serif;
  --serif: "Gambetta", ui-serif, Georgia, "Times New Roman", serif;

  /* Layout */
  --measure: 640px;
  --gutter: clamp(1.25rem, 5vw, 2.5rem);
}

/* Dark palette applies when the OS prefers dark — unless the visitor has
   overridden to light via the toggle (html[data-theme="light"]). */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg: #15161a;
    --ink: #e9e8e3;
    --muted: #8c8d88;
    --hairline: #2a2c33;
    --accent: #8ea2ff;
    --rail-bg: rgba(28, 30, 36, 0.72);
    --rail-border: rgba(255, 255, 255, 0.08);
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem; /* keep anchors clear of the mobile top rail */
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection {
  background: var(--accent);
  color: #fff;
}

/* ─────────────────────────── Layout ─────────────────────────── */

main {
  max-width: var(--measure);
  margin-inline: auto;
  padding: clamp(4rem, 12vh, 8rem) var(--gutter) 5rem;
}

@media (min-width: 900px) {
  /* leave room for the left icon rail */
  main {
    margin-left: max(calc(50% - var(--measure) / 2), 7rem);
    margin-right: auto;
  }
}

.section {
  padding-block: clamp(2.5rem, 7vh, 4.5rem);
}

.section--hero {
  padding-top: 0;
}

/* Hero header: name + title on the left, portrait floated top-right.
   The portrait is line art on a white disc, so it reads on either ground —
   only the ring adapts between light and dark. */
.hero-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.25rem;
}

.hero-headline {
  min-width: 0;
}

.hero-headline h1 {
  margin-bottom: 0;
}

.hero-avatar {
  flex: none;
  width: clamp(84px, 22vw, 112px);
  height: clamp(84px, 22vw, 112px);
  border-radius: 50%;
  background: #fff;
  object-fit: cover;
  border: 1px solid var(--hairline);
  box-shadow: 0 3px 14px rgba(20, 20, 25, 0.12);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .hero-avatar {
    border-color: rgba(255, 255, 255, 0.16);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.5);
  }
}

html[data-theme="dark"] .hero-avatar {
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.5);
}

.divider {
  border: 0;
  border-top: 1px dashed var(--hairline);
  margin: 0;
}

/* ─────────────────────────── Typography ─────────────────────────── */

h1,
h2 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.05;
  color: var(--ink);
  margin: 0 0 1rem;
  overflow-wrap: break-word;
}

h1 {
  font-size: clamp(2.75rem, 8vw, 4.25rem);
}

h2 {
  font-size: clamp(2rem, 5vw, 2.75rem);
}

.period {
  color: var(--accent);
}

.eyebrow {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 1rem;
}

.lede {
  font-size: 1.2rem;
  line-height: 1.55;
  color: var(--ink);
}

p {
  margin: 0 0 1.1rem;
  color: var(--ink);
}

.section-note {
  color: var(--muted);
  margin-top: -0.25rem;
  margin-bottom: 2rem;
}

em {
  color: var(--muted);
  font-style: italic;
  font-family: var(--serif);
}

a {
  color: inherit;
  text-decoration: none;
}

/* ─────────────────────────── Inline link rows ─────────────────────────── */

.inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1.75rem;
}

.inline-links a {
  position: relative;
  font-weight: 500;
  color: var(--ink);
  padding-bottom: 2px;
  background-image: linear-gradient(var(--accent), var(--accent));
  background-size: 0% 1.5px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.25s ease, color 0.2s ease;
}

.inline-links a:hover {
  color: var(--accent);
  background-size: 100% 1.5px;
}

/* ─────────────────────────── Post / project feed ───────── */

/* Small "Post" / "Project" tag next to the date in the home feed. */
.entry-kind {
  margin-left: 0.6rem;
  padding: 0.1rem 0.45rem;
  border-radius: 999px;
  border: 1px solid var(--hairline);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  vertical-align: 0.05em;
}

/* Home "Latest" feed — posts + projects with a small thumbnail. */
.feed {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
  display: grid;
  gap: 1.4rem;
}

.feed-link {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.feed-thumb {
  flex: none;
  width: 96px;
  height: 66px;
  border-radius: 9px;
  overflow: hidden;
  border: 1px solid var(--hairline);
  background: var(--hairline);
  transition: transform 0.2s ease;
}

.feed-link:hover .feed-thumb {
  transform: translateY(-2px);
}

.feed-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.feed-mono {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-family: var(--serif);
  font-size: 1.5rem;
  color: hsl(0 0% 40%);
  background: hsl(0 0% 90%);
  box-shadow: inset 0 0 0 1px hsl(0 0% 84%);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .feed-mono {
    color: hsl(0 0% 72%);
    background: hsl(0 0% 23%);
    box-shadow: inset 0 0 0 1px hsl(0 0% 32%);
  }
}

.feed-text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.feed-titlerow {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.9rem;
}

.feed-title {
  min-width: 0;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--ink);
  transition: color 0.2s ease;
}

.feed-link:hover .feed-title {
  color: var(--accent);
}

.feed-meta {
  flex: none;
  font-size: 0.82rem;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}

.feed-desc {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 520px) {
  .feed-titlerow {
    flex-direction: column;
    gap: 0.1rem;
  }
  .feed-desc {
    -webkit-line-clamp: 1;
  }
}

/* ─────────────────────────── Project cards ─────────────────────────── */

.card-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.card a {
  display: block;
  padding: 1.4rem;
  border: 1px solid var(--hairline);
  border-radius: 14px;
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.card a:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.card-title {
  display: block;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
}

.card-desc {
  display: block;
  color: var(--muted);
  font-size: 0.98rem;
}

.card-tags {
  display: block;
  margin-top: 0.9rem;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--muted);
  text-transform: uppercase;
}

/* ───────────────────── Project write-ups (with thumbnails) ───────────────────── */

.project-list {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  gap: 4rem;
}

.project {
  display: grid;
  gap: 1.1rem;
}

.project-media {
  display: block;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--hairline);
  background: var(--card, rgba(0, 0, 0, 0.03));
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.project-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1000 / 625;
  object-fit: cover;
}

.project-media:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
}

.project-date {
  margin: 0 0 0.35rem;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--muted);
  text-transform: uppercase;
}

.project-title {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  margin: 0 0 0.5rem;
}

.project-desc {
  color: var(--ink);
  margin: 0;
}

.project-tags {
  margin: 0.9rem 0 0;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--muted);
  text-transform: uppercase;
}

.project-links {
  margin: 0.75rem 0 0;
  display: flex;
  gap: 1.25rem;
  font-size: 0.95rem;
}

.project-links a {
  font-weight: 500;
}

/* ─────────────────────────── Contact ─────────────────────────── */

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-list li {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 0.7rem 0;
  border-top: 1px solid var(--hairline);
}

.contact-list li:first-child {
  border-top: 0;
}

.contact-list span {
  width: 6rem;
  flex: none;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-list a {
  font-weight: 500;
  background-image: linear-gradient(var(--accent), var(--accent));
  background-size: 0% 1.5px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.25s ease, color 0.2s ease;
}

.contact-list a:hover {
  color: var(--accent);
  background-size: 100% 1.5px;
}

/* Email rendered as an image (anti-scraping). Dark ink by default;
   inverted to a light tone when the page is in dark mode. */
.email-img {
  height: 1.1em;
  width: auto;
  vertical-align: -0.2em;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .email-img {
    filter: invert(1) brightness(1.35);
  }
}

/* ─────────────────────────── Footer ─────────────────────────── */

.footer {
  margin-top: 4rem;
  padding-top: 1.5rem;
  border-top: 1px dashed var(--hairline);
  color: var(--muted);
  font-size: 0.85rem;
}

.footer p {
  margin: 0;
  color: var(--muted);
}

/* ═══════════════════════════ Icon rail navigation ═══════════════════════════
   Mobile-first: a horizontal pill pinned to the top, centered.
   ≥900px: rotates to a vertical pill pinned to the left, vertically centered.
*/

.rail {
  position: fixed;
  z-index: 50;
  top: 0.9rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--rail-bg);
  border: 1px solid var(--rail-border);
  border-radius: 999px;
  padding: 0.4rem;
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
}

.rail ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  gap: 0.15rem;
}

.rail a {
  position: relative;
  display: grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 999px;
  color: var(--ink);
  opacity: 0.4;
  transition: opacity 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.rail a svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.rail a:hover {
  opacity: 0.85;
}

.rail a.is-active {
  opacity: 1;
  color: var(--accent);
  background: color-mix(in srgb, var(--accent) 12%, transparent);
}

/* Tooltip label */
.rail a::after,
.rail .theme-toggle::after {
  content: attr(data-label);
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: var(--ink);
  color: var(--bg);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 0.25rem 0.55rem;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.rail a:hover::after,
.rail .theme-toggle:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Theme-toggle divider: separates the control from the nav links.
   Mobile (horizontal rail) = divider on the left; the desktop @media below
   switches it to the top. Defined before the media query so the override
   wins on desktop. */
.rail-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.3rem;
  padding-left: 0.3rem;
  border-left: 1px solid var(--rail-border);
}

@media (min-width: 900px) {
  /* Float the rail just left of the centered content column, not the window
     edge. Content starts at (50% - measure/2); sit the rail a little left of
     that. (Below 900px the horizontal top rail applies instead.) */
  .rail {
    top: 50%;
    left: calc(50% - var(--measure) / 2 - 4.5rem);
    transform: translateY(-50%);
  }

  .rail ul {
    flex-direction: column;
    gap: 0.15rem;
  }

  /* divider sits above the toggle when the rail is vertical */
  .rail-toggle {
    margin-left: 0;
    padding-left: 0;
    border-left: 0;
    margin-top: 0.3rem;
    padding-top: 0.3rem;
    border-top: 1px solid var(--rail-border);
  }

  /* tooltip moves to the right of the rail */
  .rail a::after,
  .rail .theme-toggle::after {
    top: 50%;
    left: calc(100% + 0.6rem);
    transform: translateY(-50%) translateX(-4px);
  }

  .rail a:hover::after,
  .rail .theme-toggle:hover::after {
    transform: translateY(-50%) translateX(0);
  }
}

/* ─────────────────────────── Theme toggle ───────────────────────────
   Lives as the last item in the rail. Default state follows the OS
   ("auto"); clicking overrides to a forced light theme. */

.theme-toggle {
  position: relative;
  display: grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  padding: 0;
  border: 0;
  background: none;
  border-radius: 999px;
  color: var(--ink);
  cursor: pointer;
  opacity: 0.4;
  transition: opacity 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.theme-toggle:hover {
  opacity: 0.85;
}

.theme-toggle svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Show the sun icon only when light is forced; otherwise show the "auto" icon. */
.theme-toggle .icon-sun {
  display: none;
}
:root[data-theme="light"] .theme-toggle .icon-sun {
  display: block;
}
:root[data-theme="light"] .theme-toggle .icon-auto {
  display: none;
}

/* ─────────────────────────── Sub-pages & posts ─────────────────────────── */

/* The first heading on a page sits flush with the top padding of <main>. */
.section--page,
.post {
  padding-top: 0;
}

.more-link {
  margin-top: 2rem;
}

.post-date {
  display: block;
  margin-bottom: 1.5rem;
  color: var(--muted);
  font-size: 0.9rem;
}

/* Small, decorative post thumbnail — deliberately not enlargeable. */
.post-thumb {
  display: block;
  width: 200px;
  max-width: 55%;
  height: auto;
  margin: 0 0 2rem;
  border-radius: 8px;
  border: 1px solid var(--hairline);
}

.eyebrow .back {
  color: var(--muted);
  transition: color 0.2s ease;
}

.eyebrow .back:hover {
  color: var(--accent);
}

/* Prose styling for rendered Markdown post bodies. */
.post-body {
  font-size: 1.0625rem;
}

.post-body h2 {
  font-size: 1.6rem;
  margin-top: 2.5rem;
}

.post-body h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.25rem;
  margin: 2rem 0 0.5rem;
}

.post-body p {
  margin: 0 0 1.2rem;
}

.post-body ul,
.post-body ol {
  margin: 0 0 1.2rem;
  padding-left: 1.3rem;
}

.post-body li {
  margin-bottom: 0.4rem;
}

.post-body a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
}

.post-body blockquote {
  margin: 1.5rem 0;
  padding-left: 1.1rem;
  border-left: 2px solid var(--hairline);
  color: var(--muted);
  font-family: var(--serif);
  font-style: italic;
}

.post-body code {
  font-family: var(--mono, ui-monospace, SFMono-Regular, Menlo, monospace);
  font-size: 0.9em;
  background: color-mix(in srgb, var(--ink) 7%, transparent);
  padding: 0.12em 0.4em;
  border-radius: 5px;
}

.post-body pre {
  background: color-mix(in srgb, var(--ink) 6%, transparent);
  border: 1px solid var(--hairline);
  border-radius: 12px;
  padding: 1rem 1.2rem;
  overflow-x: auto;
  margin: 0 0 1.4rem;
}

.post-body pre code {
  background: none;
  padding: 0;
  font-size: 0.875rem;
  line-height: 1.6;
}

/* ─────────────────────────── Papers & Books ───────────────────────────── */

.papers-intro {
  color: var(--muted);
  margin-bottom: 1rem;
}
.papers-intro a {
  color: var(--accent);
}

.papers-group {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.45rem;
  letter-spacing: -0.01em;
  margin: 2.75rem 0 0.75rem;
}

/* Annotated list: cover tile + title + note */
.paper-list {
  list-style: none;
  margin: 0 0 0.5rem;
  padding: 0;
}
.paper-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.15rem 0;
  border-top: 1px solid var(--hairline);
}
.paper-row:first-child {
  border-top: 0;
}
.paper-thumb-link {
  flex: none;
  line-height: 0;
}
.paper-body {
  min-width: 0;
}
.paper-title {
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 500;
  color: var(--ink);
  transition: color 0.2s ease;
}
.paper-title:hover {
  color: var(--accent);
}
.paper-note {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.55;
}
.paper-note a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
}

/* Cover tile — monogram on a tinted background, color from the title hue. */
.paper-thumb,
.book-thumb {
  display: grid;
  place-items: center;
  flex: none;
  width: 3rem;
  height: 4rem;
  border-radius: 7px;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.5rem;
  background: hsl(var(--hue, 220) 45% 92%);
  color: hsl(var(--hue, 220) 38% 38%);
  box-shadow: inset 0 0 0 1px hsl(var(--hue, 220) 35% 84%);
  overflow: hidden;
}

/* Real cover images fill the tile. */
.book-thumb img,
.paper-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Compact grid for link-only papers. */
.paper-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}
.paper-card a {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  height: 100%;
  padding: 0.65rem;
  border-radius: 10px;
  transition: transform 0.2s ease;
}
.paper-card a:hover {
  transform: translateY(-2px);
}
.paper-card .paper-thumb {
  width: 2.3rem;
  height: 3rem;
  font-size: 1.05rem;
  border-radius: 5px;
}
.paper-card-title {
  font-size: 0.92rem;
  line-height: 1.3;
  color: var(--ink);
}

/* Books: cover + title/author + note */
.book-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.book-row {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  padding: 1.25rem 0;
  border-top: 1px solid var(--hairline);
}
.book-row:first-child {
  border-top: 0;
}
.book-thumb {
  width: 4rem;
  height: 6rem;
  font-size: 2rem;
  border-radius: 6px;
}
.book-body {
  min-width: 0;
}
.book-title {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--ink);
}
.book-author {
  display: block;
  margin-top: 0.1rem;
  font-size: 0.9rem;
  color: var(--muted);
}
.book-note {
  margin: 0.5rem 0 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.55;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .paper-thumb,
  :root:not([data-theme="light"]) .book-thumb {
    background: hsl(var(--hue, 220) 26% 24%);
    color: hsl(var(--hue, 220) 45% 78%);
    box-shadow: inset 0 0 0 1px hsl(var(--hue, 220) 22% 32%);
  }
}

/* Papers page tiles — three treatments by group.
   Best of the rest: grayscale (shade via --gl/--gld).
   Must reads: pastel tint of the accent colour (amount via --mix).
   Additional reads: plain white tile, thin black border. */
.papers-page .paper-thumb--gray {
  background: hsl(0 0% var(--gl, 90%));
  color: hsl(0 0% 38%);
  box-shadow: inset 0 0 0 1px hsl(0 0% 82%);
}

.papers-page .paper-thumb--plain {
  background: #ffffff;
  color: #1a1a1a;
  box-shadow: inset 0 0 0 1px #1a1a1a;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .papers-page .paper-thumb--gray {
    background: hsl(0 0% var(--gld, 24%));
    color: hsl(0 0% 72%);
    box-shadow: inset 0 0 0 1px hsl(0 0% 34%);
  }
  :root:not([data-theme="light"]) .papers-page .paper-thumb--plain {
    background: #1b1c20;
    color: #e9e8e3;
    box-shadow: inset 0 0 0 1px #e9e8e3;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
  }
}
