:root {
  --intinet-ink: #111827;
  --intinet-muted: #596477;
  --intinet-line: #e3e8f0;
  --intinet-surface: #ffffff;
  --intinet-soft: #f7f9fc;
  --intinet-blue: #1f5fbf;
  --intinet-blue-dark: #123f86;
  --intinet-teal: #0f9f9a;
  --intinet-gold: #f2a900;
  --intinet-green: #188766;
  --intinet-violet: #6956c9;
  --intinet-slate: #1f2937;
  --intinet-danger: #c43b3b;
  --intinet-radius: 8px;
  --intinet-shadow: 0 18px 45px rgba(17, 24, 39, 0.10);
}

body {
  color: var(--intinet-ink);
  background: var(--intinet-soft);
  letter-spacing: 0;
}

a,
.text-link {
  color: var(--intinet-blue);
}

a:hover,
.text-link:hover {
  color: #17498f;
}

.primary-background,
.header,
#header {
  background: var(--intinet-surface) !important;
  color: var(--intinet-ink);
}

.header,
#header {
  border-bottom: 1px solid var(--intinet-line);
  box-shadow: none;
}

.header a,
.header .text-link,
.header .header-links a,
#header a,
#header .text-link,
#header .header-links a,
.header .mobile-menu-toggle,
#header .mobile-menu-toggle {
  color: var(--intinet-ink) !important;
}

.header .logo,
#header .logo {
  color: var(--intinet-ink) !important;
  min-width: 0;
}

.header .logo-image,
#header .logo-image {
  max-height: 34px;
}

.header .logo-image.intinet-brand-logo,
#header .logo-image.intinet-brand-logo {
  display: block;
  width: 128px;
  max-width: 34vw;
  max-height: none;
  height: auto;
}

.header .logo-text,
#header .logo-text {
  font-weight: 700;
  letter-spacing: 0;
  color: var(--intinet-ink) !important;
}

.header .logo-text.intinet-brand-hidden,
#header .logo-text.intinet-brand-hidden {
  display: none !important;
}

.header .header-links .links,
#header .header-links .links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.header .header-links a,
#header .header-links a {
  border-radius: 999px;
  padding: 8px 10px;
  transition: background-color 140ms ease, color 140ms ease;
}

.header .header-links a:hover,
#header .header-links a:hover {
  background: #eef4ff;
  color: var(--intinet-blue-dark);
}

.tri-layout-left,
.tri-layout-right,
.card,
.book-card,
.shelf-card {
  border-radius: var(--intinet-radius);
}

body.intinet-guest.tri-layout .tri-layout-container {
  grid-template-columns: minmax(0, 1fr) !important;
}

body.intinet-guest.tri-layout .tri-layout-sides,
body.intinet-guest.tri-layout .tri-layout-mobile-tabs {
  display: none !important;
}

body.intinet-guest.tri-layout .tri-layout-middle {
  grid-column: 1 / -1 !important;
  width: 100% !important;
  max-width: none !important;
}

body.intinet-guest.tri-layout .tri-layout-middle-contents {
  width: 100% !important;
  max-width: none !important;
}

body.intinet-guest.tri-layout .content-wrap {
  width: min(100%, 1800px) !important;
  max-width: 1800px !important;
  margin-right: auto;
  margin-left: auto;
}

body.intinet-guest.tri-layout #main-content .grid.third {
  grid-template-columns: repeat(auto-fit, minmax(min(360px, 100%), 1fr)) !important;
}

.button,
button,
input[type="submit"] {
  border-radius: 6px;
}

.button.primary,
button.primary,
input[type="submit"].primary {
  background-color: var(--intinet-blue);
  border-color: var(--intinet-blue);
}

.button.primary:hover,
button.primary:hover,
input[type="submit"].primary:hover {
  background-color: #17498f;
  border-color: #17498f;
}

.page-content h1,
.page-content h2,
.page-content h3 {
  color: var(--intinet-ink);
}

.page-content {
  font-size: 16px;
  line-height: 1.7;
}

.page-content h1 {
  font-size: 36px;
  line-height: 1.18;
}

.page-content blockquote {
  border-left-color: var(--intinet-teal);
  background: #eef8f7;
}

.page-content code {
  background: #eef2f7;
  color: #22314d;
  border-radius: 4px;
}

.page-content table {
  border-color: var(--intinet-line);
}

.page-content th {
  background: #edf3fb;
  color: var(--intinet-ink);
}

.search-box {
  border-radius: var(--intinet-radius);
}

.search-box input {
  border-color: var(--intinet-line);
  border-radius: 6px;
}

.search-box input::placeholder {
  color: #667085;
  opacity: 1;
}

.tags .tag {
  border-radius: 999px;
  background: #eef3fa;
  color: var(--intinet-muted);
}

body.intinet-help-home {
  background: #ffffff;
}

body.intinet-help-home #header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "brand nav"
    "hero hero";
  align-items: start;
  gap: 34px 24px;
  min-height: 340px;
  padding: 26px max(24px, calc((100vw - 1180px) / 2)) 58px !important;
  border-bottom: 0;
  overflow: visible;
  background:
    linear-gradient(180deg, #ffffff 0%, #ffffff 72%, #f6f8fb 100%) !important;
}

body.intinet-help-home #header > .flex-container-row {
  grid-area: brand;
}

body.intinet-help-home #header > .flex-container-column {
  grid-area: hero;
  width: 100%;
  position: relative;
  z-index: 5;
}

body.intinet-help-home #header > .flex-container-column.hide-under-l {
  display: flex !important;
  align-items: stretch;
}

body.intinet-help-home #header > nav {
  grid-area: nav;
  display: flex !important;
  align-items: flex-start;
  justify-content: flex-end;
  justify-self: end;
  margin-bottom: 0;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

body.intinet-help-home #header .header-links .links {
  justify-content: flex-end;
  flex-wrap: nowrap;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

body.intinet-help-home #header .header-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  font-size: 14px;
}

body.intinet-help-home #header .header-links a[href$="/search"] {
  display: none !important;
}

body.intinet-help-home #header .mobile-menu-toggle {
  display: none !important;
}

body.intinet-help-home .intinet-hero-copy {
  max-width: 760px;
  margin: 28px auto 24px;
  text-align: center;
}

body.intinet-help-home .intinet-hero-eyebrow {
  margin: 0 0 12px;
  color: var(--intinet-blue);
  font-size: 14px;
  font-weight: 700;
}

body.intinet-help-home .intinet-hero-copy h1 {
  margin: 0;
  color: var(--intinet-ink);
  font-size: 42px;
  font-weight: 700;
  line-height: 1.15;
}

body.intinet-help-home .intinet-hero-note {
  margin-top: 14px;
  color: var(--intinet-muted);
  font-size: 16px;
  line-height: 1.55;
}

body.intinet-help-home #header .search-box {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  align-items: center;
  position: relative;
  z-index: 20;
  width: min(720px, calc(100vw - 48px));
  max-width: min(720px, calc(100vw - 48px)) !important;
  min-height: 60px;
  margin: 0 auto;
  overflow: visible;
  border: 1px solid #d6dde9;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: var(--intinet-shadow);
}

body.intinet-help-home #header .search-box.search-active {
  z-index: 100;
}

body.intinet-help-home #header .search-box input {
  grid-column: 2;
  width: 100%;
  min-height: 58px;
  padding-left: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  color: var(--intinet-ink) !important;
  font-size: 17px;
  line-height: 58px;
}

body.intinet-help-home #header .search-box input::placeholder {
  color: #475467 !important;
  opacity: 1 !important;
}

body.intinet-help-home #header .search-box button {
  grid-column: 1;
  width: 58px;
  min-height: 58px;
  border: 0;
  background: transparent;
  box-shadow: none;
  color: #475467;
}

body.intinet-help-home #header .search-box button:hover,
body.intinet-help-home #header .search-box button:focus {
  background: transparent;
  color: var(--intinet-blue);
}

body.intinet-help-home #header .global-search-suggestions {
  grid-column: 1 / -1;
  position: absolute !important;
  top: calc(100% + 10px) !important;
  right: 0 !important;
  left: 0 !important;
  z-index: 120 !important;
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: min(430px, calc(100vh - 390px));
  margin: 0 !important;
  padding: 0 !important;
  overflow-x: hidden;
  overflow-y: auto;
  box-sizing: border-box;
  border-radius: var(--intinet-radius);
  border: 1px solid var(--intinet-line);
  box-shadow: var(--intinet-shadow);
}

body.intinet-help-home #header .global-search-suggestions [refs="global-search@suggestion-results"] {
  padding: 12px 24px !important;
  overflow-x: hidden;
}

body.intinet-help-home #header .global-search-suggestions .entity-list-item,
body.intinet-help-home #header .global-search-suggestions .entity-list-item .content {
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

body.intinet-help-home #header .global-search-suggestions .entity-list-item {
  padding-right: 14px !important;
  padding-left: 28px !important;
}

body.intinet-help-home #header .global-search-suggestions .card-footer-link {
  display: block;
  width: 100%;
  min-height: auto;
  padding: 12px 16px;
  border-top: 1px solid var(--intinet-line);
  border-radius: 0 0 var(--intinet-radius) var(--intinet-radius);
  background: #ffffff;
  color: var(--intinet-blue);
  text-align: center;
  white-space: nowrap;
}

body.intinet-help-home #main-content > .container.px-xl.py-s {
  display: none;
}

body.intinet-help-home #home-default {
  max-width: 1180px;
  margin-top: 0;
  padding: 24px 24px 76px;
}

body.intinet-help-home #home-default .grid.third {
  display: block;
  column-count: 1 !important;
  column-gap: 0 !important;
  column-width: auto !important;
}

body.intinet-help-home #home-default .grid.third > * {
  width: 100% !important;
  max-width: none !important;
}

body.intinet-help-home.intinet-help-home #main-content #home-default.container .grid.third.gap-x-xxl.no-row-gap > div {
  width: 100% !important;
  max-width: none !important;
  flex-basis: 100% !important;
  box-sizing: border-box;
}

body.intinet-help-home #recent-pages,
body.intinet-help-home #recent-activity {
  display: none !important;
}

body.intinet-help-home #recent-books {
  width: 100% !important;
  margin: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

body.intinet-help-home #recent-books .card-title {
  margin: 0;
  padding: 0;
  border: 0;
  color: var(--intinet-ink);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.25;
}

body.intinet-help-home .intinet-topic-intro {
  max-width: 720px;
  margin: 8px 0 32px;
  color: var(--intinet-muted);
  font-size: 15px;
  line-height: 1.6;
}

body.intinet-help-home #recent-books > .px-m {
  padding: 0 !important;
}

body.intinet-help-home #recent-books .entity-list.compact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 30px 72px;
}

body.intinet-help-home #recent-books .entity-list-item {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  align-items: start;
  gap: 16px;
  min-height: 112px;
  padding: 12px 8px;
  border: 1px solid transparent;
  border-radius: var(--intinet-radius);
  background: transparent;
  color: var(--intinet-ink);
  transition: border-color 140ms ease, background-color 140ms ease, transform 140ms ease;
}

body.intinet-help-home #recent-books .entity-list-item:hover {
  border-color: var(--intinet-line);
  background: #fbfcff;
  transform: translateY(-1px);
}

body.intinet-help-home #recent-books .entity-list-item .icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin: 0;
  border-radius: var(--intinet-radius);
  background: #151515;
  color: #ffffff;
}

body.intinet-help-home #recent-books .entity-list-item .icon svg {
  width: 34px;
  height: 34px;
}

body.intinet-help-home #recent-books .entity-list-item[href*="/login-akun"] .icon {
  background: var(--intinet-blue-dark);
}

body.intinet-help-home #recent-books .entity-list-item[href*="/mail-admin"] .icon {
  background: var(--intinet-green);
}

body.intinet-help-home #recent-books .entity-list-item[href*="/webmail-sogo"] .icon {
  background: var(--intinet-violet);
}

body.intinet-help-home #recent-books .entity-list-item[href*="/nextcloud-drive"] .icon {
  background: #0e7490;
}

body.intinet-help-home #recent-books .entity-list-item[href*="/faq-umum"] .icon {
  background: #b45309;
}

body.intinet-help-home #recent-books .entity-list-item[href*="/aplikasi-internal"] .icon {
  background: var(--intinet-slate);
}

body.intinet-help-home #recent-books .entity-list-item[href*="/books/testing"] {
  display: none !important;
}

body.intinet-help-home #recent-books .entity-list-item-name {
  margin: 3px 0 8px;
  color: var(--intinet-ink);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
}

body.intinet-help-home #recent-books .entity-item-snippet {
  display: block !important;
}

body.intinet-help-home #recent-books .entity-item-snippet p {
  margin: 0;
  color: var(--intinet-muted);
  font-size: 14px;
  line-height: 1.55;
}

:root.dark-mode body {
  background: #111827;
  color: #e5e7eb;
}

:root.dark-mode .primary-background,
:root.dark-mode .header,
:root.dark-mode #header,
:root.dark-mode body.intinet-help-home #header {
  background: #111827 !important;
  color: #e5e7eb;
  border-color: #243041;
}

:root.dark-mode .header a,
:root.dark-mode .header .text-link,
:root.dark-mode .header .header-links a,
:root.dark-mode .header .logo,
:root.dark-mode .header .logo-text,
:root.dark-mode #header a,
:root.dark-mode #header .text-link,
:root.dark-mode #header .header-links a,
:root.dark-mode #header .logo,
:root.dark-mode #header .logo-text,
:root.dark-mode body.intinet-help-home .intinet-hero-copy h1,
:root.dark-mode body.intinet-help-home #recent-books .card-title,
:root.dark-mode body.intinet-help-home #recent-books .entity-list-item-name {
  color: #f8fafc !important;
}

:root.dark-mode body.intinet-help-home #header {
  background:
    linear-gradient(180deg, #111827 0%, #111827 72%, #0f172a 100%) !important;
}

:root.dark-mode body.intinet-help-home #header .search-box,
:root.dark-mode body.intinet-help-home #recent-books .entity-list-item:hover {
  background: #172033;
  border-color: #2e3b52;
}

:root.dark-mode body.intinet-help-home #header .search-box input {
  color: #f8fafc !important;
}

:root.dark-mode body.intinet-help-home .intinet-hero-note,
:root.dark-mode body.intinet-help-home .intinet-topic-intro,
:root.dark-mode body.intinet-help-home #recent-books .entity-item-snippet p {
  color: #b9c2d0;
}

@media (max-width: 560px) {
  body.intinet-guest:not(.intinet-help-home) #header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "brand nav";
    gap: 12px;
    padding: 14px 16px !important;
  }

  body.intinet-guest:not(.intinet-help-home) #header > .flex-container-row {
    grid-area: brand;
    width: auto;
  }

  body.intinet-guest:not(.intinet-help-home) .intinet-guest-search-row {
    padding: 4px 16px 18px;
    border-bottom: 1px solid var(--intinet-line);
    background: #ffffff;
  }

  body.intinet-guest:not(.intinet-help-home) .intinet-guest-search-row > .flex-container-column {
    display: flex !important;
    align-items: stretch;
    width: 100%;
  }

  body.intinet-guest:not(.intinet-help-home) #header > nav.header-links {
    grid-area: nav;
    display: flex !important;
    position: static !important;
    align-items: flex-start;
    justify-content: flex-end;
    width: auto;
    min-width: 0;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  body.intinet-guest:not(.intinet-help-home) #header .header-links .links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  body.intinet-guest:not(.intinet-help-home) #header .header-links a:not([href$="/login"]) {
    display: none !important;
  }

  body.intinet-guest:not(.intinet-help-home) #header .header-links a[href$="/login"] {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 8px 14px;
    border: 1px solid var(--intinet-line);
    border-radius: 999px;
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(17, 24, 39, 0.06);
    font-size: 14px;
    font-weight: 600;
  }

  body.intinet-guest:not(.intinet-help-home) #header .mobile-menu-toggle {
    display: none !important;
  }

  body.intinet-guest:not(.intinet-help-home) #header .logo-image.intinet-brand-logo {
    width: 108px;
    max-width: 32vw;
  }

  body.intinet-guest:not(.intinet-help-home) .intinet-guest-search-row .search-box {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    align-items: center;
    position: relative !important;
    width: 100%;
    max-width: 100% !important;
    min-height: 52px;
    margin: 0;
    overflow: visible;
    border: 1px solid #d6dde9;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 12px 32px rgba(17, 24, 39, 0.08);
  }

  body.intinet-guest:not(.intinet-help-home) .intinet-guest-search-row .search-box.search-active {
    z-index: 50;
  }

  body.intinet-guest:not(.intinet-help-home) .intinet-guest-search-row .search-box input {
    grid-column: 2;
    width: 100%;
    height: 50px;
    min-height: 50px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    color: var(--intinet-ink) !important;
    font-size: 14px;
    line-height: 50px;
  }

  body.intinet-guest:not(.intinet-help-home) .intinet-guest-search-row .search-box input::placeholder {
    color: #475467 !important;
    opacity: 1 !important;
  }

  body.intinet-guest:not(.intinet-help-home) .intinet-guest-search-row .search-box button {
    grid-column: 1;
    display: grid;
    place-items: center;
    position: static !important;
    inset: auto !important;
    width: 46px;
    height: 50px;
    min-height: 50px;
    border: 0;
    background: transparent;
    box-shadow: none;
    color: #475467 !important;
    opacity: 1 !important;
  }

  body.intinet-guest:not(.intinet-help-home) .intinet-guest-search-row .search-box button svg,
  body.intinet-guest:not(.intinet-help-home) .intinet-guest-search-row .search-box button .svg-icon {
    display: block;
    width: 16px;
    height: 16px;
  }

  body.intinet-guest:not(.intinet-help-home) .intinet-guest-search-row .global-search-suggestions {
    position: absolute !important;
    top: calc(100% + 8px) !important;
    right: 0 !important;
    left: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    max-height: min(360px, calc(100vh - 180px));
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden;
    overflow-y: auto;
    box-sizing: border-box;
    border-radius: 12px;
    z-index: 80 !important;
  }

  body.intinet-guest:not(.intinet-help-home) .intinet-guest-search-row .search-box.search-active .global-search-suggestions {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  body.intinet-guest:not(.intinet-help-home) .intinet-guest-search-row .global-search-suggestions [refs="global-search@suggestion-results"] {
    padding: 8px 12px !important;
    overflow-x: hidden;
  }

  body.intinet-guest:not(.intinet-help-home) .intinet-guest-search-row .global-search-suggestions .entity-list-item,
  body.intinet-guest:not(.intinet-help-home) .intinet-guest-search-row .global-search-suggestions .entity-list-item .content {
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  body.intinet-guest:not(.intinet-help-home) .intinet-guest-search-row .global-search-suggestions .entity-list-item {
    padding-right: 10px !important;
    padding-left: 10px !important;
    overflow: hidden;
  }

  body.intinet-guest:not(.intinet-help-home) .intinet-guest-search-row .global-search-suggestions .entity-list-item-name,
  body.intinet-guest:not(.intinet-help-home) .intinet-guest-search-row .global-search-suggestions .entity-item-snippet {
    overflow-wrap: anywhere;
  }

  body.intinet-guest:not(.intinet-help-home) .intinet-guest-search-row .global-search-suggestions .card-footer-link {
    display: block;
    width: 100%;
    min-height: auto;
    padding: 12px 16px;
    border-top: 1px solid var(--intinet-line);
    border-radius: 0 0 12px 12px;
    background: #ffffff;
    color: var(--intinet-blue);
    text-align: center;
    white-space: nowrap;
  }

  body.intinet-help-home #header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "brand nav"
      "hero hero";
    gap: 16px 12px;
    min-height: 250px;
    padding: 18px 16px 28px !important;
  }

  body.intinet-help-home #header > .flex-container-row {
    margin-bottom: 0;
  }

  body.intinet-help-home #header > nav {
    display: flex !important;
    align-items: flex-start;
    justify-content: flex-end;
    margin-bottom: 0;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  body.intinet-help-home #header .header-links .links {
    justify-content: flex-end;
    flex-wrap: nowrap;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  body.intinet-help-home #header .header-links a:not([href$="/login"]) {
    display: none !important;
  }

  body.intinet-help-home #header .header-links a[href$="/login"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 8px 14px;
    border: 1px solid var(--intinet-line);
    border-radius: 999px;
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(17, 24, 39, 0.06);
    font-size: 14px;
    font-weight: 600;
  }

  body.intinet-help-home #header .mobile-menu-toggle {
    display: none !important;
  }

  body.intinet-help-home #header .logo-image.intinet-brand-logo {
    width: 108px;
    max-width: 32vw;
  }

  body.intinet-help-home #header > .flex-container-column.hide-under-l {
    display: flex !important;
    align-items: stretch;
  }

  body.intinet-help-home .intinet-hero-copy {
    max-width: 100%;
    margin: 18px auto 18px;
  }

  body.intinet-help-home .intinet-hero-copy h1 {
    font-size: 26px;
    line-height: 1.18;
  }

  body.intinet-help-home .intinet-hero-note {
    display: none;
  }

  body.intinet-help-home #header .search-box {
    grid-template-columns: 46px minmax(0, 1fr);
    width: 100%;
    max-width: 100% !important;
    min-height: 52px;
    border-radius: 12px;
  }

  body.intinet-help-home #header .search-box input {
    min-height: 50px;
    font-size: 14px;
    line-height: 50px;
  }

  body.intinet-help-home #header .search-box button {
    width: 46px;
    min-height: 50px;
  }

  body.intinet-help-home #header .global-search-suggestions {
    top: calc(100% + 8px) !important;
    max-height: min(360px, calc(100vh - 265px));
  }

  body.intinet-help-home #home-default {
    padding: 20px 16px 48px;
  }

  body.intinet-help-home #recent-books .card-title {
    font-size: 24px;
  }

  body.intinet-help-home .intinet-topic-intro {
    margin-bottom: 24px;
    font-size: 14px;
  }

  body.intinet-help-home #recent-books .entity-list.compact {
    gap: 10px;
    padding: 0 16px;
    box-sizing: border-box;
  }

  body.intinet-help-home #recent-books .entity-list-item {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 12px;
    min-height: 0;
    padding: 8px 0;
  }

  body.intinet-help-home #recent-books .entity-list-item .icon {
    width: 44px;
    height: 44px;
  }

  body.intinet-help-home #recent-books .entity-list-item .icon svg {
    width: 25px;
    height: 25px;
  }

  body.intinet-help-home #recent-books .entity-list-item-name {
    margin: 0 0 4px;
    font-size: 17px;
  }

  body.intinet-help-home #recent-books .entity-item-snippet p {
    font-size: 13px;
    line-height: 1.45;
  }
}
