html {
  position: relative;
  overflow-x: hidden; }

body {
  overflow-x: hidden;
  background-image: url("../img/kidsil_bg.jpg");
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #1a202c;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  margin: 0;
  padding: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

#bg-layout {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  background: rgba(15, 23, 42, 0.18);
  pointer-events: none; }

.announcement-bar {
  align-items: center;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  display: flex;
  font-size: 14px;
  justify-content: space-between;
  padding: 10px 20px;
  position: relative; }
  @media (min-width: 768px) {
    .announcement-bar {
      font-size: 15px;
      justify-content: center;
      gap: 24px; } }
  .announcement-bar a {
    color: #fff;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px; }
    .announcement-bar a:hover, .announcement-bar a:active, .announcement-bar a:focus {
      color: #fff;
      text-decoration: none; }
  .announcement-bar .close-button {
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    font-size: 14px;
    padding: 2px 6px;
    transition: color 0.15s ease; }
    .announcement-bar .close-button:hover {
      color: #fff; }

a {
  color: #2563eb;
  text-decoration: none;
  transition: color 0.15s ease; }
  a:hover, a:active, a:focus {
    color: #1d4ed8;
    text-decoration: underline;
    text-underline-offset: 3px; }

p, hr, dl, pre, form, address, blockquote {
  margin: 1.25em 0; }

p {
  word-wrap: break-word; }

ul {
  list-style-type: disc;
  padding-left: 20px; }

.container {
  margin: 0 auto;
  max-width: 1440px;
  padding: 0 28px; }

#header {
  color: #1a202c;
  margin-top: 28px;
  padding: 0;
  position: relative; }

#logo {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.1);
  margin-bottom: 16px;
  padding: 22px 28px 24px; }

.site-name {
  display: block;
  font-size: 2.4rem;
  line-height: 1.05;
  letter-spacing: -0.02em; }
  .site-name a {
    color: #1a202c;
    font-weight: 800;
    text-decoration: none; }
    .site-name a:hover {
      color: #1a202c;
      text-decoration: none;
      opacity: 0.85; }

.site-description {
  color: #4a5568;
  font-size: 0.98rem;
  font-weight: 400;
  line-height: 1.55;
  margin: 10px 0 0; }
  .site-description a {
    color: #2563eb;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: rgba(37, 99, 235, 0.35);
    transition: text-decoration-color 0.15s ease, color 0.15s ease;
    white-space: nowrap; }
    .site-description a:hover, .site-description a:active, .site-description a:focus {
      color: #1d4ed8;
      text-decoration-color: #1d4ed8; }

#menu-categories {
  align-items: center;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.1);
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0 6px; }
  #menu-categories li {
    margin: 0;
    padding: 0; }
    #menu-categories li a {
      border: 0;
      color: #2d3748;
      display: inline-block;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 0.12em;
      line-height: 1;
      padding: 18px 22px;
      text-decoration: none;
      text-transform: uppercase;
      transition: color 0.15s ease;
      white-space: nowrap; }
      #menu-categories li a:hover, #menu-categories li a:focus {
        color: #2563eb;
        text-decoration: none; }
    #menu-categories li + li:not(.menu-item-right) a {
      box-shadow: inset 1px 0 0 rgba(15, 23, 42, 0.12); }
    #menu-categories li.current-menu-item a {
      color: #2563eb; }
    #menu-categories li.menu-item-right {
      margin-left: auto; }
      #menu-categories li.menu-item-right a {
        color: #2563eb;
        font-weight: 700;
        letter-spacing: 0.16em;
        position: relative; }
        #menu-categories li.menu-item-right a::after {
          background: #2563eb;
          bottom: 12px;
          content: '';
          height: 1px;
          left: 22px;
          position: absolute;
          right: 22px;
          transform: scaleX(0);
          transform-origin: left center;
          transition: transform 0.18s ease; }
        #menu-categories li.menu-item-right a:hover, #menu-categories li.menu-item-right a:focus {
          color: #1d4ed8; }
        #menu-categories li.menu-item-right a:hover::after, #menu-categories li.menu-item-right a:focus::after {
          transform: scaleX(1); }

.clearfix {
  clear: both; }

.wrapper .home {
  align-items: flex-start;
  display: flex;
  gap: 32px;
  justify-content: space-between;
  margin-top: 28px; }

.right-sidebar > li, .post-list > li {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 14px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 6px 18px rgba(15, 23, 42, 0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease; }

.left-col {
  flex: 1 1 auto;
  min-width: 0; }

.post-list {
  list-style: none;
  margin: 0;
  padding: 0; }
  .post-list > li {
    margin-bottom: 24px;
    overflow: hidden;
    padding: 32px 36px; }
    .post-list > li:hover {
      box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05), 0 14px 32px rgba(15, 23, 42, 0.12);
      transform: translateY(-2px); }
    .post-list > li > .post-image-wrapper {
      margin: -32px -36px 24px;
      text-align: center; }
      .post-list > li > .post-image-wrapper a {
        aspect-ratio: 21 / 9;
        background: #f7fafc;
        display: block;
        line-height: 0;
        overflow: hidden;
        width: 100%; }
      .post-list > li > .post-image-wrapper img {
        border-radius: 0;
        display: block;
        height: 100%;
        margin: 0;
        object-fit: cover;
        object-position: center;
        width: 100%; }
    .post-list > li h2 {
      font-size: 1.85rem;
      font-weight: 700;
      letter-spacing: -0.015em;
      line-height: 1.2;
      margin: 0 0 8px; }
      .post-list > li h2 a {
        color: #1a202c; }
        .post-list > li h2 a:hover {
          color: #2563eb;
          text-decoration: none; }
    .post-list > li .post-meta {
      color: #718096;
      font-size: 0.85rem;
      margin-bottom: 16px; }
      .post-list > li .post-meta a {
        color: #718096; }
        .post-list > li .post-meta a:hover {
          color: #2563eb; }
    .post-list > li .post-content {
      color: #2d3748;
      font-size: 1rem;
      line-height: 1.7; }
      .post-list > li .post-content p {
        margin: 0 0 1em; }
    .post-list > li .read-more {
      margin-top: 12px; }
      .post-list > li .read-more a {
        color: #2563eb;
        font-weight: 600; }
        .post-list > li .read-more a:hover {
          color: #1d4ed8;
          text-decoration: none; }

.post-taxonomy {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 20px; }

.post-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0; }
  .post-chips li {
    margin: 0; }

.chip {
  background: #f7fafc;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 999px;
  color: #2d3748;
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.4;
  padding: 4px 12px;
  text-transform: none;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease; }
  .chip:hover, .chip:focus {
    background: #2563eb;
    border-color: #2563eb;
    color: #fff;
    text-decoration: none; }
  .chip.chip--cat {
    background: rgba(37, 99, 235, 0.08);
    border-color: rgba(37, 99, 235, 0.18);
    color: #1d4ed8; }
    .chip.chip--cat:hover, .chip.chip--cat:focus {
      background: #2563eb;
      color: #fff; }

.right-sidebar {
  flex: 0 0 320px;
  list-style: none;
  margin: 0;
  padding: 0; }
  .right-sidebar > li {
    margin: 0 0 20px;
    padding: 22px 24px; }
    .right-sidebar > li h3 {
      color: #1a202c;
      font-size: 1rem;
      font-weight: 700;
      letter-spacing: 0.04em;
      margin: 0 0 14px;
      padding: 0;
      text-transform: uppercase; }
    .right-sidebar > li .welcome-description {
      color: #4a5568;
      display: block;
      font-size: 0.95rem;
      margin-bottom: 16px; }
    .right-sidebar > li ul {
      list-style: none;
      padding: 0;
      margin: 0; }
      .right-sidebar > li ul li {
        border-bottom: 1px solid rgba(15, 23, 42, 0.08);
        font-size: 0.95rem;
        line-height: 1.45;
        padding: 10px 0; }
        .right-sidebar > li ul li:first-child {
          padding-top: 0; }
        .right-sidebar > li ul li:last-child {
          border-bottom: 0;
          padding-bottom: 0; }
        .right-sidebar > li ul li a {
          color: #2d3748; }
          .right-sidebar > li ul li a:hover {
            color: #2563eb;
            text-decoration: none; }
    .right-sidebar > li strong {
      color: #1a202c;
      display: block;
      font-size: 0.88rem;
      letter-spacing: 0.04em;
      margin: 4px 0 10px;
      text-transform: uppercase; }

.kid-search .kid-search-input {
  background: #f7fafc;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 8px;
  box-sizing: border-box;
  color: #1a202c;
  font: inherit;
  font-size: 0.95rem;
  outline: none;
  padding: 9px 12px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  width: 100%; }
  .kid-search .kid-search-input::placeholder {
    color: #718096; }
  .kid-search .kid-search-input:focus {
    background: #ffffff;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.18); }

.kid-search .kid-search-results {
  list-style: none;
  margin: 12px 0 0;
  padding: 0; }
  .kid-search .kid-search-results li {
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    font-size: 0.95rem;
    line-height: 1.45;
    padding: 9px 0; }
    .kid-search .kid-search-results li:first-child {
      padding-top: 0; }
    .kid-search .kid-search-results li:last-child {
      border-bottom: 0;
      padding-bottom: 0; }
    .kid-search .kid-search-results li a {
      align-items: baseline;
      color: #2d3748;
      display: flex;
      gap: 8px;
      justify-content: space-between; }
      .kid-search .kid-search-results li a:hover {
        color: #2563eb;
        text-decoration: none; }

.kid-search .kid-search-date {
  color: #718096;
  flex-shrink: 0;
  font-size: 0.8rem;
  font-variant-numeric: tabular-nums; }

.kid-search .kid-search-empty {
  color: #718096;
  font-size: 0.9rem;
  font-style: italic;
  margin: 12px 0 0; }

.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 8px 0 32px; }
  .pagination a, .pagination span {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 8px;
    color: #1a202c;
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 8px 14px;
    text-decoration: none; }
    .pagination a:hover, .pagination span:hover {
      background: #2563eb;
      color: #fff;
      text-decoration: none; }

#breadcrumbs {
  color: rgba(255, 255, 255, 0.95);
  list-style: none;
  margin: 16px 0 18px;
  padding: 0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.55), 0 0 10px rgba(0, 0, 0, 0.45); }
  #breadcrumbs li {
    display: inline-block;
    font-size: 13px; }
    #breadcrumbs li a {
      color: #fff;
      text-decoration: underline;
      text-underline-offset: 3px;
      text-decoration-color: rgba(255, 255, 255, 0.5); }
      #breadcrumbs li a:hover {
        color: #fff;
        text-decoration-color: #fff; }

footer.site-footer {
  color: rgba(255, 255, 255, 0.75);
  margin-top: 48px;
  padding: 28px 0 36px; }
  footer.site-footer .wrapper {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: space-between; }
  footer.site-footer .footer-heading {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0; }
    footer.site-footer .footer-heading a {
      color: #fff;
      font-weight: 600;
      text-decoration: none; }
      footer.site-footer .footer-heading a:hover {
        opacity: 0.85; }
  footer.site-footer .social-media-list {
    align-items: center;
    display: flex;
    gap: 14px;
    list-style: none;
    margin: 0;
    padding: 0; }
    footer.site-footer .social-media-list a {
      align-items: center;
      background: rgba(255, 255, 255, 0.12);
      border: 1px solid rgba(255, 255, 255, 0.18);
      border-radius: 999px;
      color: #fff;
      display: inline-flex;
      height: 36px;
      justify-content: center;
      transition: background 0.15s ease, transform 0.15s ease, color 0.15s ease;
      width: 36px; }
      footer.site-footer .social-media-list a svg {
        fill: currentColor;
        height: 16px;
        width: 16px; }
      footer.site-footer .social-media-list a:hover {
        background: #fff;
        color: #1a202c;
        transform: translateY(-1px); }

img {
  border: 0;
  border-radius: 8px;
  display: block;
  height: auto;
  margin: 1.4em auto;
  max-width: 100%;
  vertical-align: middle; }
  img.thumb {
    display: inline-block; }
  img.alignleft {
    margin-left: 0; }

.post-content {
  color: #2d3748;
  font-size: 1.25rem;
  line-height: 1.75; }
  .post-content ul li {
    margin-left: 8px; }
  .post-content figcaption {
    color: #718096;
    font-size: 0.85rem;
    font-style: italic;
    margin-top: 4px;
    text-align: center; }
  .post-content .post-image-wrapper {
    text-align: center; }
    .post-content .post-image-wrapper a {
      display: inline-block; }
  .post-content blockquote {
    border-left: 3px solid #2563eb;
    color: #4a5568;
    font-style: italic;
    margin: 1.4em 0;
    padding: 0.4em 1.2em; }
  .post-content code {
    background: #f7fafc;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 4px;
    font-size: 0.92em;
    padding: 1px 6px; }
  .post-content pre code {
    background: transparent;
    border: 0;
    padding: 0; }

.single-col {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 14px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 6px 18px rgba(15, 23, 42, 0.08);
  box-sizing: border-box;
  margin: 28px 0;
  padding: 44px 72px 52px;
  position: relative; }

.post-inner {
  margin: 0 auto;
  max-width: 1120px; }

article.post {
  font-size: 1.05rem; }
  article.post #breadcrumbs {
    color: #718096;
    margin: 0 0 14px;
    text-shadow: none; }
    article.post #breadcrumbs li {
      font-size: 12px; }
      article.post #breadcrumbs li a {
        color: #4a5568;
        text-decoration: none;
        text-shadow: none; }
        article.post #breadcrumbs li a:hover {
          color: #2563eb;
          text-decoration: underline;
          text-underline-offset: 3px; }
  article.post h1.post-title {
    color: #1a202c;
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.15;
    margin: 0.2em 0 0.35em;
    text-align: left; }
  article.post h2 {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.015em;
    line-height: 1.25;
    margin: 1.8em 0 0.6em; }
  article.post h3 {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 1.6em 0 0.5em; }
  article.post h4 {
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 1.4em 0 0.4em; }
  article.post .post-meta {
    align-items: center;
    color: #718096;
    display: flex;
    flex-wrap: wrap;
    font-size: 0.875rem;
    gap: 8px;
    line-height: 1.4;
    margin-bottom: 28px;
    text-align: left; }
    article.post .post-meta a {
      color: #718096; }
      article.post .post-meta a:hover {
        color: #2563eb; }
    article.post .post-meta .post-meta-sep {
      color: #718096;
      opacity: 0.5; }
    article.post .post-meta .post-meta-time {
      color: #718096; }
  article.post .navigation {
    align-items: center;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    color: #2d3748;
    display: flex;
    font-size: 0.9rem;
    gap: 16px;
    justify-content: space-between;
    margin: 36px 0 8px;
    padding-top: 18px; }
    article.post .navigation a {
      background: #f7fafc;
      border: 1px solid rgba(15, 23, 42, 0.08);
      border-radius: 8px;
      color: #2d3748;
      display: inline-block;
      max-width: 48%;
      overflow: hidden;
      padding: 10px 14px;
      text-overflow: ellipsis;
      white-space: nowrap; }
      article.post .navigation a:hover {
        background: #2563eb;
        border-color: #2563eb;
        color: #fff;
        text-decoration: none; }
    article.post .navigation .previous {
      margin-right: auto; }
    article.post .navigation .next {
      margin-left: auto; }
  article.post .youtube-clip {
    height: 0;
    padding-bottom: 56.25%;
    padding-top: 25px;
    position: relative; }
    article.post .youtube-clip iframe {
      height: 100%;
      left: 0;
      position: absolute;
      top: 0;
      width: 100%; }
  article.post .post-taxonomy {
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    margin: 36px 0 0;
    padding-top: 22px; }
  article.post .related-posts {
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    margin-top: 36px;
    padding-top: 28px; }
    article.post .related-posts h3 {
      color: #1a202c;
      font-size: 0.85rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      margin: 0 0 14px;
      text-transform: uppercase; }
    article.post .related-posts ul {
      display: grid;
      gap: 12px;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      list-style: none;
      margin: 0;
      padding: 0; }
      article.post .related-posts ul li {
        margin: 0; }
    article.post .related-posts a {
      background: #f7fafc;
      border: 1px solid rgba(15, 23, 42, 0.08);
      border-radius: 8px;
      color: #2d3748;
      display: flex;
      flex-direction: column;
      gap: 6px;
      padding: 14px 16px;
      transition: border-color 0.15s ease, background 0.15s ease; }
      article.post .related-posts a:hover {
        background: #ffffff;
        border-color: #2563eb;
        text-decoration: none; }
    article.post .related-posts .related-title {
      color: #1a202c;
      font-size: 0.95rem;
      font-weight: 600;
      line-height: 1.35; }
    article.post .related-posts .related-date {
      color: #718096;
      font-size: 0.78rem; }
  article.post h2, article.post h3, article.post h4 {
    position: relative; }
    article.post h2 .header-anchor, article.post h3 .header-anchor, article.post h4 .header-anchor {
      color: #718096;
      font-weight: 400;
      margin-left: 8px;
      opacity: 0;
      position: relative;
      text-decoration: none;
      transition: opacity 0.15s ease, color 0.15s ease; }
      article.post h2 .header-anchor:hover, article.post h3 .header-anchor:hover, article.post h4 .header-anchor:hover {
        color: #2563eb;
        text-decoration: none; }
    article.post h2:hover .header-anchor, article.post h2:focus-within .header-anchor, article.post h3:hover .header-anchor, article.post h3:focus-within .header-anchor, article.post h4:hover .header-anchor, article.post h4:focus-within .header-anchor {
      opacity: 1; }
  article.post #disqus_thread {
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    margin-top: 32px;
    padding-top: 24px; }
  article.post table {
    border-collapse: collapse;
    margin: 1.6em 0;
    text-align: left;
    width: 100%; }
    article.post table tr th {
      background: #f7fafc;
      cursor: default;
      font-weight: 700; }
    article.post table tr td, article.post table tr th {
      border: 1px solid rgba(15, 23, 42, 0.08);
      padding: 10px 12px;
      vertical-align: top; }
    article.post table tr td {
      font-size: 0.95rem; }
    article.post table tr:nth-child(even) {
      background-color: #f7fafc; }

article.post table.workout tr th {
  font-size: 16px; }

article.post table.workout tr td {
  font-size: 15px; }

.category-body .left-col #breadcrumbs, .tag-body .left-col #breadcrumbs {
  margin: 0 0 18px; }

.page img {
  display: inline; }

#page-not-found {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 14px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 6px 18px rgba(15, 23, 42, 0.08);
  box-sizing: border-box;
  clear: both;
  margin: 28px auto;
  padding: 36px 40px 40px;
  position: relative; }
  #page-not-found h1.title-404 {
    color: #1a202c;
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0.4em 0 0.4em; }
  #page-not-found h6 {
    color: #4a5568;
    font-size: 1rem;
    font-weight: 500;
    margin: 0 0 1em; }

.highlight {
  border: 1px solid #21262d;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin: 1.5rem 0;
  max-width: 100%;
  overflow: hidden;
  position: relative; }
  .highlight:not(:has(table))::before {
    background: #161b22;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    content: '';
    height: 30px;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1; }
  .highlight:not(:has(table))::after {
    content: url(../img/dots.svg);
    height: 14px;
    left: 12px;
    position: absolute;
    top: 8px;
    width: 52px;
    z-index: 2; }
  .highlight:not(:has(table)) pre {
    background-color: #0d1117 !important;
    border-radius: 0 0 8px 8px;
    margin: 0;
    overflow-x: auto;
    padding: 42px 16px 14px; }
  .highlight:not(:has(table)) code {
    background: transparent;
    color: #E2E8F0;
    display: block;
    font-family: 'JetBrains Mono', 'Fira Code', Monaco, Consolas, monospace;
    font-size: 0.9em;
    line-height: 1.6;
    padding: 0; }
  .highlight > div:has(table) {
    background: #0d1117; }
    .highlight > div:has(table)::before {
      background: #161b22;
      border-top-left-radius: 8px;
      border-top-right-radius: 8px;
      content: '';
      height: 30px;
      left: 0;
      position: absolute;
      right: 0;
      top: 0;
      z-index: 1; }
    .highlight > div:has(table)::after {
      content: url(../img/dots.svg);
      height: 14px;
      left: 12px;
      position: absolute;
      top: 8px;
      width: 52px;
      z-index: 2; }
    .highlight > div:has(table) table {
      background: #0d1117;
      border-spacing: 0;
      margin: 0;
      min-width: 70%;
      max-width: 100%;
      width: 100%; }
      .highlight > div:has(table) table td {
        border: 0;
        padding: 0;
        vertical-align: top; }
        .highlight > div:has(table) table td:first-child pre {
          background: transparent !important;
          color: #7f7f7f;
          padding-left: 14px;
          padding-right: 0.5rem;
          text-align: right;
          user-select: none; }
        .highlight > div:has(table) table td:last-child {
          width: 100%; }
          .highlight > div:has(table) table td:last-child pre {
            background: transparent !important;
            padding-right: 14px; }
        .highlight > div:has(table) table td pre {
          margin: 0;
          padding: 42px 0 14px; }
      .highlight > div:has(table) table code {
        color: #E2E8F0;
        font-family: 'JetBrains Mono', 'Fira Code', Monaco, Consolas, monospace;
        font-size: 0.9em;
        line-height: 1.6; }

pre[tabindex="0"]:not(.highlight pre) {
  background: #0d1117;
  border: 1px solid #21262d;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin: 1.5rem 0;
  overflow-x: auto;
  position: relative; }
  pre[tabindex="0"]:not(.highlight pre)::before {
    background: #161b22;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    content: '';
    height: 30px;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1; }
  pre[tabindex="0"]:not(.highlight pre)::after {
    content: url(../img/dots.svg);
    height: 14px;
    left: 12px;
    position: absolute;
    top: 8px;
    width: 52px;
    z-index: 2; }
  pre[tabindex="0"]:not(.highlight pre) code {
    color: #E2E8F0;
    display: block;
    font-family: 'JetBrains Mono', 'Fira Code', Monaco, Consolas, monospace;
    font-size: 0.9em;
    line-height: 1.6;
    padding: 42px 16px 14px; }

.highlight .c, .highlight .cm, .highlight .c1 {
  color: #94a3b8;
  font-style: italic; }

.highlight .k, .highlight .kc, .highlight .kd, .highlight .kp, .highlight .kr {
  color: #ff7ab2;
  font-weight: bold; }

.highlight .s, .highlight .s1, .highlight .s2 {
  color: #a5d6ff; }

.highlight .na {
  color: #79c0ff; }

.highlight .nt {
  color: #7ee787; }

.highlight .nf {
  color: #d2a8ff; }

.highlight .m, .highlight .mi, .highlight .mf {
  color: #ff9580; }

.highlight .o {
  color: #e2e8f0;
  font-weight: bold; }

.highlight .nb {
  color: #79c0ff; }

.highlight .lineno {
  border-right: 3px solid #6ce26c;
  color: #afafaf;
  margin-right: 1em;
  padding-right: 0.5em;
  user-select: none; }

:not(pre) > code {
  background: #f7fafc;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 4px;
  color: #1a202c;
  font-family: 'JetBrains Mono', 'Fira Code', Monaco, Consolas, monospace;
  font-size: 0.9em;
  padding: 1px 6px; }

.hint, [data-hint] {
  border-bottom: 2px dotted #aaa;
  cursor: pointer;
  display: inline-block;
  position: relative; }
  .hint:before, .hint:after, [data-hint]:before, [data-hint]:after {
    opacity: 0;
    pointer-events: none;
    position: absolute;
    transform: translate3d(0, 0, 0);
    transition: 0.3s ease;
    transition-delay: 0;
    visibility: hidden;
    z-index: 1000000; }
  .hint:hover:before, .hint:hover:after, .hint:focus:before, .hint:focus:after, [data-hint]:hover:before, [data-hint]:hover:after, [data-hint]:focus:before, [data-hint]:focus:after {
    opacity: 1;
    visibility: visible; }
  .hint:hover:before, .hint:hover:after, [data-hint]:hover:before, [data-hint]:hover:after {
    transition-delay: 100ms; }
  .hint:before, [data-hint]:before {
    background: transparent;
    border: 6px solid transparent;
    content: '';
    position: absolute;
    z-index: 1000001; }
  .hint:after, [data-hint]:after {
    background: #2d3748;
    border-radius: 6px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
    color: #fff;
    content: attr(data-hint);
    font-size: 0.75em;
    line-height: 1.3;
    padding: 6px 10px;
    white-space: nowrap; }

[data-hint='']:before, [data-hint='']:after {
  display: none !important; }

.hint--top:before {
  border-top-color: #2d3748;
  margin-bottom: -12px; }

.hint--top:after {
  margin-left: -18px; }

.hint--top:before, .hint--top:after {
  bottom: 100%;
  left: 50%; }

.hint--top:hover:before, .hint--top:hover:after, .hint--top:focus:before, .hint--top:focus:after {
  transform: translateY(-8px); }

@media screen and (max-width: 964px) {
  body {
    background-image: url("../img/kidsil_bg_mobile.jpg");
    background-attachment: scroll; }
  .container {
    padding: 0 18px; }
  #header {
    padding-top: 24px; }
  .site-name {
    font-size: 2rem; }
  .site-description {
    font-size: 0.95rem; }
  #menu-categories {
    border-radius: 14px;
    flex-wrap: wrap;
    gap: 4px;
    justify-content: center; }
    #menu-categories li a {
      font-size: 12px;
      padding: 9px 12px; }
    #menu-categories li.menu-item-right {
      margin-left: 0; }
  .wrapper .home {
    flex-direction: column;
    gap: 18px;
    margin-top: 22px; }
  .left-col {
    width: 100%; }
  .post-list > li {
    padding: 24px 22px; }
    .post-list > li h2 {
      font-size: 1.45rem; }
  .right-sidebar {
    display: none; }
  .single-col {
    margin: 18px auto;
    padding: 28px 22px 32px; }
  article.post h1.post-title {
    font-size: 1.85rem; }
  article.post h2 {
    font-size: 1.3rem; }
  article.post .navigation {
    flex-direction: column;
    gap: 8px; }
    article.post .navigation a {
      max-width: 100%;
      width: 100%; }
  footer.site-footer .wrapper {
    flex-direction: column;
    gap: 14px;
    text-align: center; }
  .highlight {
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; }
  article.post > table,
  article.post > .table-wrapper {
    display: block;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap; }
  .single-col table:not(.highlight table) {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; } }
