:root {
  --bg-col: #f6f6f6;
  --bg-light: #f0f2f0;
  --bg-light-hi: #e1e5e1;

  --text-color: #111;
  --text-color-light: #777;

  --bg-banner-notice: #f0f2f0;
}

body {
  /* background: white; */
  background-color: var(--bg-col);
  color: var(--text-color);

  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji",
    "Segoe UI Symbol";

  margin: 0;
  padding: 0;
  padding-bottom: 2em; /* account for ad at the bottom */

  font-size: 1rem;
  line-height: 1.4rem;
}

h1,
h2,
h3 {
  letter-spacing: -0.01em;
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 0px;
}

h1 {
  font-size: 1.6rem;
}

h2 {
  font-size: 1.4rem;
}

h3 {
  font-size: 1.25rem;
}

.page-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 0.75em;
}

img {
  border: 0;
}

blockquote {
  font-style: italic;
}

td {
  padding-right: 1rem;
}

div#tophdr {
  font-size: 10pt;
  font-weight: bold;
  margin: 0px;
  padding: 6pt;
  padding-left: 16px;
  padding-right: 16px;
}

div.centered {
  text-align: center;
}

div.centered table {
  margin: 0 auto;
  text-align: left;
}

#content {
  display: flex;
  justify-content: center;
}

hr {
  border: 0;
  border-top: 1px solid #eee;
}

.lvl1 {
  margin-left: 1em;
}

.lvl2 {
  margin-left: 2em;
}

.lvl3 {
  margin-left: 3em;
}

.lvl4 {
  margin-left: 4em;
}

.column-list {
  display: flex;
  width: 100%;
}

/* size all columns equally */
.column-list > div {
  flex: 1;
}

.title {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-around;
  column-gap: 4px;
  row-gap: 8px;
  margin-block-end: 0.5em !important;
}

.article-date {
  margin-top: 0.3rem;
  color: var(--text-color-light);
  font-size: 70%;
}

a {
  background: transparent;
  text-decoration: underline;
  text-underline-offset: 4px;
  color: var(--text-color);
}

a:hover {
  /* color: #044978; */
  color: var(--text-color-light);
  /* text-decoration: underline; */
  /* background-color: rgba(173, 216, 230, 0.094); */
}

a.hdr {
  text-decoration: none;
}

.taglink {
  /* color: var(--text-color); */
  /* color: red; */
  color: rgb(107 114 128);
  /* color: rgb(75 85 99);
  color: rgb(55 65 81); */
  text-decoration: none;
}

.article-header {
  margin-top: 16px;
}

.tryonline {
  font-size: 80%;
  position: absolute;
  bottom: 0.5rem;
  right: 0.5rem;
  padding: 0.25rem 0.5rem;
  color: #484848;
  border: 1px solid #b8b8b8;
  /* border-radius: 0.5rem; */
  &:hover {
    color: #484848;
    background-color: #f8f8f8;
    /* background-color: var(--text-col); */
  }
}

.hdr-image:hover {
  filter: grayscale(100%);
}

.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.wrap {
  width: calc(100% - 2rem);
  /* max-width: 960px; */
  max-width: 80ch;
  margin-left: auto;
  margin-right: auto;
}

.selected-img {
  border: 1px solid lightskyblue;
}

.img-wrapper-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.img-wrapper {
  position: relative;
}

.img-wrapper > img {
  object-fit: scale-down;
  max-width: 95vw;
  max-height: 480px;
}

.nav-icon-left {
  position: absolute;
  left: -16px;
  top: calc(50% - 24px);
}

.nav-icon-right {
  position: absolute;
  right: -16px;
  top: calc(50% - 24px);
}

a.for-nav-icon {
  display: flex;

  text-decoration: none;
  font-size: 0px;
  justify-content: center;
  align-items: center;

  fill: gray;
  width: 40px;
  height: 40px;

  border-radius: 24px;
  background-color: hsl(0, 0%, 100%);
  box-shadow:
    0 4px 4px rgba(0, 0, 0, 0.3),
    0 0 4px rgba(0, 0, 0, 0.2);
}

a.for-nav-icon:hover {
  fill: #555;
  background-color: hsl(0, 0%, 95%);
}

.nav-icon {
  width: 24px;
  height: 24px;
  pointer-events: none;
  display: block;
}

.ib {
  display: inline-block;
}

/* https://stackoverflow.com/questions/19390690/css-media-queries-to-hide-and-show-page-elements
TODO: it still loads the image if it's inside div hidden with this trick, at least in Chrome's device simulator
See: https://timkadlec.com/2012/04/media-query-asset-downloading-results/
*/
@media only screen and (max-width: 767px), only screen and (max-device-width: 767px) {
  .hide-mobile {
    display: none;
  }
}

/* based on https://gomakethings.com/how-to-break-an-image-out-of-its-parent-container-with-css/ */

/* .page-cover-image {
  left: calc(50% - 8px);
  margin-left: -50vw;
  margin-right: -50vw;
  max-width: 100vw;
  position: relative;
  right: 50%;
  width: 100vw;
  overflow: hidden;

  height: 30vh;
  object-fit: cover;
  display: block;
  width: 100vw;
  margin-top: 10px;
} */

.page-cover-image {
  /* margin-top: 12px; */
  width: 100%;
}

/* was 768px but half size of my 15ich laptop screen is ~760 so it wasn't showing */
/* must update article.tmpl.html <source media="..."> */
@media (max-width: 748px) {
  .page-cover-image {
    display: none;
  }
}

.table_of_contents-item {
  display: block;
  font-size: 0.875rem;
  line-height: 1.3;
  padding: 0.125rem;
}

.table_of_contents-indent-1 {
  margin-left: 1.5rem;
}

.table_of_contents-indent-2 {
  margin-left: 3rem;
}

.table_of_contents-indent-3 {
  margin-left: 4.5rem;
}

.table_of_contents-link {
  text-decoration: none;
  opacity: 0.7;
  border-bottom: 1px solid rgba(55, 53, 47, 0.18);
}

nav div {
  margin-block-end: 0 !important;
}

.block-color-gray {
  color: rgba(55, 53, 47, 0.6);
  fill: rgba(55, 53, 47, 0.6);
}

.article-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 10pt;
  line-height: 1.6;
  margin-top: 1rem;

  /* border-radius: 2rem; */
  padding: 0.5rem 1rem;

  color: gray;
  background-color: var(--bg-light);
}

div.indented {
  margin-left: 1em;
}

div#post div {
  min-height: 1em;
  /* line-height: 1.5em; */
  margin-block-start: 0;
  margin-block-end: 1rem;
}

div#post div.page {
  margin-block-end: 0;
}

#post {
  margin-top: 1rem;
  /* padding-bottom: 1rem; */
}

/* inline SVG diagrams in markdown articles (not header-anchor icons) */
#post .notion-page > svg {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 1.25em 0 1.5em;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

.notion-callout {
  display: flex;
  background-color: var(--bg-light);
  padding: 0.5em 0.5em;
  padding-top: 1em;
  /* margin-block-start: -1em; */
}

.notion-page {
  /* TODO: why margin-top doesn't work? */
  /* padding-top: 1em; */
  /* background-image: linear-gradient(180deg,#e7f8f3,#fff); */
  margin-left: 1.5rem;
}

.notion-figure-icon-wrap {
  padding-right: 0.3em;
}

.notion-date {
  opacity: 0.5;
}

.notion-video {
  max-width: 100%;
}

hr.notion-divider {
  margin-top: 1em;
  margin-bottom: 1em;

  border: 0;
  border-top: 1px solid #eee;
}

/* Note: there might be more elements we need to add here */
details.notion-toggle > div,
details.notion-toggle > details {
  margin-left: 1.4em;
}

/* neutralize dy margin at the top and the bottom of lists
   when nested inside toggle list */
details.notion-toggle > ul,
details.notion-toggle > ol {
  margin-block-start: 0;
  margin-block-end: 0;
}

details.notion-toggle > summary::-webkit-details-marker:hover {
  color: gray;
  cursor: pointer;
}

img.notion-image {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}

div.column-list {
  display: flex;
  width: 100%;
}

/* size all columns equally */
div.column {
  flex: 1;
  padding-right: 8px;
}

table.notion-table {
  background-color: white;
}

table.notion-table th {
  color: rgb(165, 165, 165);
  font-weight: normal;
  border-right: 1px solid rgb(243, 243, 243);
  border-bottom: 1px solid rgb(221, 225, 227);
  border-top: 1px solid rgb(221, 225, 227);
  padding: 1px 8px 1px;
  margin: 0px;
}

table.notion-table td {
  border-right: 1px solid rgb(243, 243, 243);
  border-bottom: 1px solid rgb(221, 225, 227);
  padding: 1px 8px 1px;
  margin: 0px;
}

.ad {
  font-family: geneva, helvetica, arial, sans-serif;
  font-size: 12pt;
  background-color: #fbf0fa;
  padding: 4px 8px;
}

.adl {
  color: green;
}

.light {
  color: #999999;
}

.blog-img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}

#container {
  margin-left: 16pt;
  margin-right: 16pt;
}

.hdr-small {
  padding: 4px 8px;
  /* border-bottom: 1px solid #0894f1; */
  box-shadow: 4px 3px 4px -4px #0894f1;
}

.hdr {
  padding-top: 2px;
  /* border-bottom: 1px solid #0894f1; */
  /* box-shadow: 0px 3px 4px -4px #0894f1; */
}

.footer {
  margin-top: 1.5rem;
  margin-bottom: 3rem;
  /* border-top: 1px solid #0894f1; */
  /* box-shadow: 0px 3px 4px -4px #0894f1; */
}

/* header with link anchor */
.hdr-with-anchor {
  display: flex;
  align-items: baseline;
}

.hdr-with-anchor:hover .header-anchor {
  display: block;
}

h1 .header-anchor {
  transform: translateY(3px);
}

h2 .header-anchor {
  transform: translateY(2px);
}

h3 .header-anchor {
  transform: translateY(1px);
}

.header-anchor {
  margin-left: 0.5rem;
  /* background-color: lightblue;; */
  font-size: 70%;
  color: black;
  display: none;
}

/* used in homepage.html */

.underline {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 4px;
  margin-bottom: 24px;
}

.book-cover {
  width: 160px;
  height: 160px;
  margin-left: 4px;
  margin-right: 4px;
  object-fit: contain;
}

.book-list-headline {
  margin-bottom: 1em;
  margin-top: 0.5em;

  text-align: center;
  font-weight: bold;
}

#books-list {
  justify-content: center;
}

.headline {
  line-height: 1.4em;
}

#soft-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}

.soft-title {
  align-self: center;
  margin-top: 8px;

  font-weight: bold;
}

.soft-card {
  display: flex;
  flex-direction: column;
  padding: 15px;
  margin-left: 16px;
  box-shadow:
    0 7px 14px 0 rgba(60, 66, 87, 0.1),
    0 3px 6px 0 rgba(0, 0, 0, 0.07);
}

.shadow {
  box-shadow:
    0 7px 14px 0 rgba(60, 66, 87, 0.1),
    0 3px 6px 0 rgba(0, 0, 0, 0.07);
}

.soft-desc {
  font-size: 90%;
  max-width: 240px; /* same as soft-card-img */
  margin-top: 8px;
}

.soft-card-img {
  width: 240px;
  height: 240px;
  /* object-fit: contain; */
}

.banner-notice {
  background-color: var(--bg-banner-notice);
  position: absolute;
  /* border-radius: 1rem; */

  padding: 0.5rem 1rem;
  margin-top: 1.5rem;

  .bhdr {
    font-weight: bold;
    position: absolute;
    padding: 0.2rem 1rem;
    top: -1.1rem;
    background-color: var(--bg-banner-notice);
    /* border-radius: 1rem; */
  }

  div {
    background-color: transparent;
    max-width: 80ch;
  }

  a {
    font-weight: bold;
    font-size: 120%;
    line-height: 150%;
    margin-top: 0.5rem;
    text-decoration: underline;
  }
}

.banner-notice-compact {
  align-self: center;
  background-color: var(--bg-banner-notice);
  /* border-radius: 1rem; */

  padding: 0.5rem 1rem;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  max-width: 600px;

  font-size: 14px;

  .bhdr {
    padding: 0.2rem 1rem;
    top: -1.1rem;
    background-color: var(--bg-banner-notice);
    /* border-radius: 1rem; */
  }

  div {
    background-color: transparent;
    max-width: 80ch;
  }

  a {
    font-weight: bold;
    font-size: 120%;
    line-height: 150%;
    margin-top: 0.5rem;
    text-decoration: underline;
  }
}

.edit-link {
  color: transparent;
}

.edit-link:hover {
  color: #0894f1;
}

#msg-for-chris {
  width: 100%;
  height: 8em;
}

textarea {
  font-size: 12pt;
}

#contact-form {
  padding: 1em 2em;
  width: 75vw;
  position: fixed;
  right: 8px;
  bottom: 2em;
  z-index: 99;
  background-color: var(--bg-light);
  border: 1px solid lightgray;
  box-shadow:
    0 4px 4px rgba(0, 0, 0, 0.3),
    0 0 4px rgba(0, 0, 0, 0.2);

  /* initially hidden */
  display: none;
}

#contact-form button {
  padding: 8px 8px;
}

#contact-page-url {
  font-size: 85%;
  border: 0;
  color: grey;
  margin-left: 2px;
  background-color: inherit;
}

form > input {
  width: 100%;
}

form > button {
  border: 1px solid lightgray;
}

form > button:hover {
  background-color: lightgray;
}

.contact-light {
  font-size: 85%;
  color: gray;
  margin-left: 2px;
  margin-bottom: 4px;
}

/* mini tailwindcss */
/*
https://github.com/tachyons-css/tachyons-flexbox
http://tachyons.io/docs/
*/
.sticky {
  position: sticky;
}

.hidden {
  display: none;
}

.top-0 {
  top: 0;
}

.left-0 {
  left: 0;
}

.right-0 {
  right: 0;
}

.bg-white {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}

.relative {
  position: relative;
}

.fixed {
  position: fixed;
}

.pb-4 {
  padding-bottom: 1rem;
}

.pt-4 {
  padding-top: 1rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.w-full {
  width: 100%;
}

.font-bold {
  font-weight: bold;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.grow {
  flex-grow: 1;
}

.flex-1 {
  flex: 1 1 0%; /* or Tailwind: flex-1 */
}

.flex-none {
  flex: 0 0 auto; /* or Tailwind: flex-none */
}

.items-center {
  align-items: center;
}

.justify-self-center {
  justify-self: center;
}

.justify-center {
  justify-content: center;
}

.justify-end {
  justify-content: flex-end;
}

.justify-between {
  justify-content: space-between;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-4 {
  gap: 1rem;
}

.px-1 {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}

.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.flex-row {
  display: flex;
  flex-direction: row;
}

.flex-col {
  display: flex;
  flex-direction: column;
}

.z-10 {
  z-index: 10;
}

.f7 {
  font-size: 0.75rem;
}
.mt1 {
  margin-top: 0.25rem;
}

.mt2 {
  margin-top: 0.5rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-3 {
  margin-top: 0.75rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-8 {
  margin-top: 2rem;
}

.pt-8 {
  padding-top: 2rem;
}

.mb-6 {
  margin-bottom: 2rem;
}

.pa1 {
  padding: 4px;
}

.nowrap {
  white-space: nowrap;
}

.draft {
  color: #ff0591;
}

.homepage-article-link {
  /* margin-left: 1rem; */
}

.daily-note-link {
  /* font-size: 75%; */
  /* justify-self: end; */
}

code {
  background-color: var(--bg-light);
}

.code-block {
  display: block;
  background-color: var(--bg-light);
  overflow-x: visible;
  tab-size: 2;
  padding: 0.5rem;
  font-size: 10pt;
  white-space: pre-wrap;
  box-sizing: border-box;
}

.code-block > code {
  background-color: transparent;
}

.text-gray-50 {
  color: rgb(249 250 251);
}
.text-gray-100 {
  color: rgb(243 244 246);
}
.text-gray-200 {
  color: rgb(229 231 235);
}
.text-gray-300 {
  color: rgb(209 213 219);
}
.text-gray-400 {
  color: rgb(156 163 175);
}
.text-gray-500 {
  color: rgb(107 114 128);
}
.text-gray-600 {
  color: rgb(75 85 99);
}
.text-gray-700 {
  color: rgb(55 65 81);
}
.text-gray-800 {
  color: rgb(31 41 55);
}
.text-gray-900 {
  color: rgb(17 24 39);
}
.text-gray-950 {
  color: rgb(3 7 18);
}

/* Site Header - Charlie Deets Inspired */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.25rem;
  margin-bottom: 1.5rem;
  gap: 1rem;
}

.site-header-search {
  flex: 1 1 0%;
  display: flex;
  justify-content: flex-start;
}

.site-header-nav {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
}

.site-header-social {
  flex: 1 1 0%;
  display: flex;
  justify-content: flex-end;
}

/* Nav Segmented Control */
.nav-filter-track {
  position: relative;
  display: flex;
  align-items: center;
  gap: 2px;
  height: 46px;
  padding: 4px;
  border-radius: 46px;
  background: rgba(235, 235, 238, 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-sizing: border-box;
}

.nav-filter-thumb {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 38px;
  border-radius: 38px;
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.06);
  pointer-events: none;
  opacity: 0;
  transition: left 0.28s cubic-bezier(0.4, 0, 0.2, 1),
              width 0.28s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.2s ease;
  z-index: 1;
}

.nav-filter-segment {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  line-height: 38px;
  padding: 0 18px;
  border-radius: 38px;
  font-size: 15px;
  font-weight: 450;
  color: #434343;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease;
  user-select: none;
  -webkit-user-select: none;
}

.nav-filter-segment:hover {
  color: #111111;
  text-decoration: none;
}

.nav-filter-segment.is-active {
  color: #111111;
  text-decoration: none;
}

/* Search Trigger Pill */
.search-trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 46px;
  padding: 4px 12px 4px 14px;
  border-radius: 46px;
  background: rgba(235, 235, 238, 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.85);
  color: #434343;
  font-family: inherit;
  font-size: 14px;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  box-sizing: border-box;
  text-decoration: none;
  transition: background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.search-trigger:hover {
  background: rgba(245, 245, 248, 0.9);
  border-color: rgba(255, 255, 255, 1);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.11), 0 1px 3px rgba(0, 0, 0, 0.06);
  color: #111111;
}

.search-trigger:focus-visible {
  outline: 2px solid rgba(0, 0, 0, 0.25);
  outline-offset: 2px;
}

.search-icon {
  flex-shrink: 0;
  stroke: #666666;
  transition: stroke 0.2s ease;
}

.search-trigger:hover .search-icon {
  stroke: #111111;
}

.search-text {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.search-kbd {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 26px;
  padding: 0 8px;
  border-radius: 26px;
  background: #ffffff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08), 0 1px 1px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.05);
  font-family: inherit;
  font-size: 11px;
  font-weight: 500;
  color: #555555;
  white-space: nowrap;
  pointer-events: none;
  transition: color 0.2s ease, box-shadow 0.2s ease;
}

.search-trigger:hover .search-kbd {
  color: #111111;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}

/* Social Track Capsule */
.social-track {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  height: 46px;
  padding: 4px;
  border-radius: 46px;
  background: rgba(235, 235, 238, 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-sizing: border-box;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 38px;
  color: #555555;
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.social-link:hover {
  background: #ffffff;
  color: #111111;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.06);
  text-decoration: none;
}

@media (max-width: 680px) {
  .site-header {
    display: grid;
    grid-template-areas:
      "nav nav"
      "search social";
    grid-template-columns: 1fr auto;
    justify-items: center;
    gap: 12px;
  }
  .site-header-nav {
    grid-area: nav;
  }
  .site-header-search {
    grid-area: search;
    justify-self: start;
  }
  .site-header-social {
    grid-area: social;
    justify-self: end;
  }
}

@media (max-width: 440px) {
  .nav-filter-segment {
    padding: 0 12px;
    font-size: 13.5px;
  }
  .search-trigger {
    padding: 4px 10px;
    gap: 6px;
  }
  .search-text {
    display: none;
  }
}
