:root {
  --earth-bg: #f6f8fb;
  --earth-card: #fff;
  --earth-text: #111827;
  --earth-muted: #4b5563;
  --earth-soft: #6b7280;
  --earth-line: #edf1f5;
  --earth-blue: #2563eb;
  --earth-shadow: 0 6px 18px rgba(15, 23, 42, .06);
  --earth-shadow-hover: 0 10px 28px rgba(15, 23, 42, .1);
}

* { box-sizing: border-box; }

html,
body {
  min-height: 100%;
  margin: 0;
  padding: 0;
}

body {
  color: var(--earth-text);
  background: var(--earth-bg);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  font-size: 14px;
  line-height: 1.65;
}

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

.earth-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.earth-header {
  position: sticky;
  top: 0;
  z-index: 10;
  height: 64px;
  padding: 12px 0;
  background: #fff;
  box-shadow: 0 1px 6px rgba(15, 23, 42, .08);
}

.earth-header__inner {
  width: 100%;
  max-width: 1520px;
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.earth-header__left,
.earth-nav,
.earth-actions {
  display: flex;
  align-items: center;
}

.earth-header__left { gap: 24px; }
.earth-nav { gap: 32px; }
.earth-actions { gap: 16px; }

.earth-title {
  font-size: 18px;
  font-weight: 600;
  color: #111827;
}

.earth-nav a {
  position: relative;
  color: var(--earth-muted);
  font-size: 14px;
  font-weight: 500;
  transition: color .2s ease;
}

.earth-nav a:hover,
.earth-nav a.active {
  color: var(--earth-blue);
}

.earth-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -19px;
  height: 2px;
  background: var(--earth-blue);
}

.earth-actions a {
  color: var(--earth-muted);
  font-size: 16px;
  transition: color .2s ease;
}

.earth-actions a:hover { color: var(--earth-blue); }

.earth-main {
  flex: 1 0 auto;
  width: 100%;
  padding-bottom: 92px;
}

.earth-shell {
  width: 100%;
  max-width: 1520px;
  margin: 24px auto 0;
  padding: 0 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 400px;
  gap: 24px;
  align-items: start;
}

.earth-content { min-width: 0; }

.earth-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.earth-filter a {
  height: 36px;
  display: inline-flex;
  align-items: center;
  border-radius: 6px;
  padding: 0 12px;
  color: var(--earth-soft);
  font-size: 15px;
  font-weight: 500;
  transition: all .2s ease;
}

.earth-filter a:hover,
.earth-filter a.active {
  color: #111827;
  background: #eef2f7;
}

.earth-post-list {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.earth-post-card {
  overflow: hidden;
  border-radius: 12px;
  background: var(--earth-card);
  box-shadow: var(--earth-shadow);
  transition: box-shadow .25s ease, transform .25s ease;
}

.earth-post-card:hover {
  box-shadow: var(--earth-shadow-hover);
}

.earth-post-card__body {
  padding: 24px 28px 14px;
}

.earth-post-card h2 {
  margin: 0 0 8px;
  color: #111827;
  font-size: 24px;
  line-height: 1.35;
  font-weight: 600;
}

.earth-post-card h2 a:hover {
  color: #4b5563;
  text-decoration: underline;
}

.earth-post-card__excerpt {
  margin: 0;
  color: #374151;
  line-height: 1.75;
}

.earth-post-card__meta {
  padding: 14px 28px 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #4b5563;
  font-size: 12px;
  font-weight: 300;
}

.earth-post-card__meta strong {
  color: #111827;
  font-size: 13px;
  font-weight: 600;
}

.earth-author-icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #dbeafe;
  border-radius: 999px;
  color: #2563eb;
  box-shadow: 0 1px 4px rgba(37, 99, 235, .18);
}

.earth-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.earth-card {
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
  background: var(--earth-card);
  padding: 16px;
  box-shadow: var(--earth-shadow);
  transition: box-shadow .25s ease;
}

.earth-card:hover { box-shadow: var(--earth-shadow-hover); }

.earth-profile {
  text-align: center;
}

.earth-profile--photo {
  padding-top: 0;
}

.earth-profile__cover {
  height: 112px;
  margin: -16px -16px 0;
  background:
    radial-gradient(circle at 20% 20%, #f59e0b, transparent 24%),
    radial-gradient(circle at 34% 35%, #22c55e, transparent 26%),
    radial-gradient(circle at 45% 10%, #ef4444, transparent 22%),
    radial-gradient(circle at 70% 20%, #111827, transparent 32%),
    linear-gradient(135deg, #f97316, #0ea5e9 46%, #111827 80%);
}

.earth-profile__avatar {
  width: 84px;
  height: 84px;
  margin: -42px auto 12px;
  padding: 5px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(15, 23, 42, .16);
}

.earth-profile__avatar img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 999px;
  object-fit: cover;
}

.earth-profile h2 {
  margin: 0 0 14px;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 600;
}

.earth-stats {
  margin: 0 0 16px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.earth-stats dt {
  color: #111827;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
}

.earth-stats dd {
  margin: 4px 0 0;
  color: var(--earth-muted);
  font-size: 12px;
  font-weight: 300;
}

.earth-social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.earth-social a,
.earth-more {
  color: var(--earth-muted);
  transition: color .2s ease, background .2s ease;
}

.earth-social a {
  display: inline-flex;
  padding: 4px;
  border-radius: 4px;
  font-size: 19px;
}

.earth-social a:hover {
  color: #111827;
  background: #f3f4f6;
}

.earth-card__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.earth-card__title {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #111827;
  font-size: 16px;
  font-weight: 400;
}

.earth-card__title [class^="i-"] {
  font-size: 19px;
}

.earth-more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
}

.earth-more:hover { color: #111827; }

.earth-category-list {
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.earth-category-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0;
  color: var(--earth-muted);
}

.earth-category-list a:hover {
  color: var(--earth-blue);
}

.earth-tag-cloud {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.earth-tag-cloud a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  padding: 4px 10px;
  color: #1f2937;
  background: #fff;
  font-size: 12px;
  font-weight: 500;
  box-shadow: 0 1px 3px rgba(15, 23, 42, .06);
  transition: border-color .2s ease;
}

.earth-tag-cloud a:hover {
  border-color: #818cf8;
}

.earth-footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9;
  margin-top: 0;
  padding: 12px 24px;
  color: var(--earth-muted);
  background: #fff;
  text-align: center;
  font-size: 12px;
  box-shadow: 0 -1px 6px rgba(15, 23, 42, .04);
}

.earth-footer a:hover { text-decoration: underline; }

.pagination {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 38px;
  z-index: 9;
  margin: 0;
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: #111827;
  background: rgba(246, 248, 251, .92);
  backdrop-filter: blur(8px);
  font-size: 12px;
}

.post,
.page,
.page-search,
.archive,
.taxonomy {
  width: min(100% - 48px, 968px);
  margin: 24px auto 0;
  border-radius: 12px;
  background: var(--earth-card);
  padding: 24px;
  box-shadow: var(--earth-shadow);
}

.post-content,
.page-content {
  max-width: 100%;
}

.comments-panel {
  width: min(100% - 48px, 968px);
  margin: 24px auto 0;
  border-radius: 12px;
  background: var(--earth-card);
  padding: 24px;
  box-shadow: var(--earth-shadow);
}

.comments-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.comments-panel__header h2,
.comment-form h3 {
  margin: 0;
  color: #111827;
  font-size: 18px;
  font-weight: 600;
}

.comments-panel__header span,
.comment-empty,
.comment-form__status {
  color: var(--earth-muted);
  font-size: 14px;
}

.comment-list {
  display: grid;
  gap: 16px;
  margin-bottom: 24px;
}

.comment-item {
  display: flex;
  gap: 12px;
  border-bottom: 1px solid var(--earth-line);
  padding-bottom: 16px;
}

.comment-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.comment-item__avatar {
  width: 36px;
  height: 36px;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #2563eb;
  background: #eff6ff;
}

.comment-item__avatar span {
  width: 18px;
  height: 18px;
}

.comment-item__body {
  min-width: 0;
  flex: 1;
}

.comment-item__body header {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
}

.comment-item__body strong {
  color: #111827;
  font-size: 14px;
}

.comment-item__body time {
  color: var(--earth-soft);
  font-size: 12px;
}

.comment-content {
  margin-top: 6px;
  color: #374151;
}

.comment-content p:first-child { margin-top: 0; }
.comment-content p:last-child { margin-bottom: 0; }

.comment-form {
  display: grid;
  gap: 14px;
  border-top: 1px solid var(--earth-line);
  padding-top: 20px;
}

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

.comment-form label {
  display: grid;
  gap: 6px;
  color: #374151;
  font-size: 13px;
  font-weight: 500;
}

.comment-form input,
.comment-form textarea {
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 10px 12px;
  color: #111827;
  background: #fff;
  font: inherit;
}

.comment-form textarea {
  resize: vertical;
}

.comment-form input:focus,
.comment-form textarea:focus {
  border-color: #93c5fd;
  outline: 2px solid #dbeafe;
}

.comment-form__website {
  position: absolute;
  left: -10000px;
}

.comment-form button {
  justify-self: start;
  border: 0;
  border-radius: 8px;
  padding: 9px 16px;
  color: #fff;
  background: var(--earth-blue);
  font-weight: 600;
  cursor: pointer;
}

.comment-form button:hover {
  filter: brightness(1.05);
}

.empty,
.not-found,
.search-meta,
.search-empty {
  color: var(--earth-muted);
}

.post-header h1 { font-size: 2.25rem; margin: 0 0 .5rem; }
.post-meta { color: var(--earth-muted); margin-bottom: 1.5rem; }
.post-content img { max-width: 100%; height: auto; }
.post-content pre { padding: 1rem; overflow-x: auto; border-radius: 6px; background: #fff; border: 1px solid var(--earth-line); }
.post-content blockquote { border-left: 3px solid var(--earth-blue); margin-left: 0; padding-left: 1rem; color: var(--earth-muted); }

.page-search-form,
.site-search {
  display: flex;
  gap: .5rem;
}

.page-search-form input[type="search"],
.site-search input[type="search"] {
  flex: 1;
  padding: .5rem .8rem;
  border: 1px solid var(--earth-line);
  border-radius: 6px;
  background: #fff;
}

.page-search-form button,
.site-search button {
  padding: .5rem 1.2rem;
  border: none;
  border-radius: 6px;
  color: #fff;
  background: var(--earth-blue);
  cursor: pointer;
}

.tag {
  display: inline-block;
  padding: .05rem .4rem;
  border: 1px solid var(--earth-line);
  border-radius: 4px;
  background: #fff;
}

[class^="i-tabler-"],
[class*=" i-tabler-"],
[class^="i-simple-icons-"],
[class*=" i-simple-icons-"] {
  display: inline-block;
  width: 1em;
  height: 1em;
  flex: 0 0 auto;
  line-height: 1;
  text-align: center;
  font-style: normal;
  background-color: currentColor;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

.earth-author-icon [class^="i-"],
.earth-author-icon [class*=" i-"] {
  width: 20px;
  height: 20px;
}

.i-tabler-rss {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 19a1 1 0 1 0 2 0a1 1 0 0 0 -2 0'/%3E%3Cpath d='M4 4a16 16 0 0 1 16 16'/%3E%3Cpath d='M4 11a9 9 0 0 1 9 9'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 19a1 1 0 1 0 2 0a1 1 0 0 0 -2 0'/%3E%3Cpath d='M4 4a16 16 0 0 1 16 16'/%3E%3Cpath d='M4 11a9 9 0 0 1 9 9'/%3E%3C/svg%3E");
}

.i-tabler-search {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0'/%3E%3Cpath d='M21 21l-6 -6'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0'/%3E%3Cpath d='M21 21l-6 -6'/%3E%3C/svg%3E");
}

.i-tabler-world {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0'/%3E%3Cpath d='M3.6 9h16.8'/%3E%3Cpath d='M3.6 15h16.8'/%3E%3Cpath d='M11.5 3a17 17 0 0 0 0 18'/%3E%3Cpath d='M12.5 3a17 17 0 0 1 0 18'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0'/%3E%3Cpath d='M3.6 9h16.8'/%3E%3Cpath d='M3.6 15h16.8'/%3E%3Cpath d='M11.5 3a17 17 0 0 0 0 18'/%3E%3Cpath d='M12.5 3a17 17 0 0 1 0 18'/%3E%3C/svg%3E");
}

.i-tabler-category {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 4h6v6h-6z'/%3E%3Cpath d='M14 4h6v6h-6z'/%3E%3Cpath d='M4 14h6v6h-6z'/%3E%3Cpath d='M14 14h6v6h-6z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 4h6v6h-6z'/%3E%3Cpath d='M14 4h6v6h-6z'/%3E%3Cpath d='M4 14h6v6h-6z'/%3E%3Cpath d='M14 14h6v6h-6z'/%3E%3C/svg%3E");
}

.i-tabler-tags {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7.5 7.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0'/%3E%3Cpath d='M3 6v5.17a2 2 0 0 0 .59 1.42l7.71 7.71a2.41 2.41 0 0 0 3.41 0l5.59 -5.59a2.41 2.41 0 0 0 0 -3.41l-7.71 -7.71a2 2 0 0 0 -1.42 -.59h-5.17a3 3 0 0 0 -3 3z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7.5 7.5m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0'/%3E%3Cpath d='M3 6v5.17a2 2 0 0 0 .59 1.42l7.71 7.71a2.41 2.41 0 0 0 3.41 0l5.59 -5.59a2.41 2.41 0 0 0 0 -3.41l-7.71 -7.71a2 2 0 0 0 -1.42 -.59h-5.17a3 3 0 0 0 -3 3z'/%3E%3C/svg%3E");
}

.i-tabler-user {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0'/%3E%3Cpath d='M6 21v-2a4 4 0 0 1 4 -4h4a4 4 0 0 1 4 4v2'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0'/%3E%3Cpath d='M6 21v-2a4 4 0 0 1 4 -4h4a4 4 0 0 1 4 4v2'/%3E%3C/svg%3E");
}

.i-tabler-chevron-right {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 6l6 6l-6 6'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 6l6 6l-6 6'/%3E%3C/svg%3E");
}

.i-simple-icons-github {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 .5a12 12 0 0 0-3.79 23.39c.6.11.82-.26.82-.58v-2.03c-3.34.73-4.04-1.61-4.04-1.61c-.55-1.39-1.34-1.76-1.34-1.76c-1.09-.75.08-.73.08-.73c1.21.08 1.85 1.24 1.85 1.24c1.07 1.84 2.81 1.31 3.5 1c.11-.78.42-1.31.76-1.61c-2.66-.3-5.47-1.33-5.47-5.93c0-1.31.47-2.38 1.24-3.22c-.12-.3-.54-1.52.12-3.18c0 0 1.01-.32 3.3 1.23a11.5 11.5 0 0 1 6 0c2.29-1.55 3.3-1.23 3.3-1.23c.66 1.66.24 2.88.12 3.18c.77.84 1.24 1.91 1.24 3.22c0 4.61-2.81 5.62-5.49 5.92c.43.37.82 1.1.82 2.22v3.29c0 .32.22.69.83.57A12 12 0 0 0 12 .5z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 .5a12 12 0 0 0-3.79 23.39c.6.11.82-.26.82-.58v-2.03c-3.34.73-4.04-1.61-4.04-1.61c-.55-1.39-1.34-1.76-1.34-1.76c-1.09-.75.08-.73.08-.73c1.21.08 1.85 1.24 1.85 1.24c1.07 1.84 2.81 1.31 3.5 1c.11-.78.42-1.31.76-1.61c-2.66-.3-5.47-1.33-5.47-5.93c0-1.31.47-2.38 1.24-3.22c-.12-.3-.54-1.52.12-3.18c0 0 1.01-.32 3.3 1.23a11.5 11.5 0 0 1 6 0c2.29-1.55 3.3-1.23 3.3-1.23c.66 1.66.24 2.88.12 3.18c.77.84 1.24 1.91 1.24 3.22c0 4.61-2.81 5.62-5.49 5.92c.43.37.82 1.1.82 2.22v3.29c0 .32.22.69.83.57A12 12 0 0 0 12 .5z'/%3E%3C/svg%3E");
}

@media (max-width: 900px) {
  .earth-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .earth-header__inner {
    padding: 0 16px;
  }

  .earth-nav {
    gap: 16px;
  }

  .earth-actions {
    display: none;
  }

  .earth-shell {
    margin-top: 16px;
    padding: 0 16px;
  }

  .earth-stats {
    gap: 10px;
  }
}
