:root {
  --bg: #fffdfa;
  --bg-soft: #f1eadf;
  --card: #fffdf9;
  --text: #18231f;
  --soft: #5d665f;
  --muted: #8a928c;
  --primary: #073f38;
  --primary-hover: #052f2a;
  --primary-soft: #eef5f1;
  --gold: #c6a063;
  --border: #e8e1d6;
  --border-soft: #f0e9dd;
  --shadow: 0 16px 36px rgba(29, 32, 28, .08);
  --shadow-soft: 0 4px 12px rgba(29, 32, 28, .035);
  --radius: 8px;
  --radius-lg: 22px;
  --container: 1216px;
  --font-ui: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-serif: "Playfair Display", "Cormorant Garamond", Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }

.tgv-body {
  min-height: 100vh;
  margin: 0;
  background:
    linear-gradient(180deg, #fffdf9 0, #fbf6ed 486px, #fffdfa 486px),
    var(--bg);
  color: var(--text);
  font-family: var(--font-ui);
  font-size: 13px;
  line-height: 1.7;
}

.tgv-body a {
  color: inherit;
  text-decoration: none;
}

.tgv-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

.tgv-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(232, 225, 214, .9);
  background: rgba(255, 253, 249, .97);
  backdrop-filter: blur(18px);
}

.tgv-header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.tgv-mobile-menu,
.tgv-mobile-tools {
  display: none;
}

.tgv-brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  flex-shrink: 0;
  color: var(--primary);
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -.02em;
}

.tgv-brand-mark,
.tgv-icon-button {
  display: grid;
  place-items: center;
}

.tgv-brand-mark {
  width: 30px;
  height: 30px;
}

.tgv-brand-mark svg,
.tgv-search svg,
.tgv-icon-button svg {
  width: 19px;
  height: 19px;
}

.tgv-nav {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 34px;
  color: #263c38;
  font-size: 13px;
  font-weight: 500;
}

.tgv-nav a:hover {
  color: var(--primary);
}

.tgv-search {
  width: 274px;
  height: 36px;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--border-soft);
  border-radius: 6px;
  background: #f8f5ef;
  padding: 0 13px;
  color: var(--muted);
}

.tgv-search input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
  font-size: 13px;
}

.tgv-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.tgv-actions .tgv-button {
  height: 31px;
  border-radius: 5px;
  padding: 0 12px;
  font-size: 11px;
}

.tgv-button,
.tgv-btn {
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 0 28px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 600;
  transition: .2s ease;
  white-space: nowrap;
}

.tgv-button-primary,
.tgv-btn-primary {
  background: var(--primary);
  color: #fff !important;
  box-shadow: none;
}

.tgv-button-primary:hover,
.tgv-btn-primary:hover {
  background: var(--primary-hover);
}

.tgv-button-ghost,
.tgv-btn-outline {
  border-color: #bfc9c4;
  background: rgba(255, 255, 255, .72);
  color: var(--primary);
}

.tgv-hero-actions .tgv-btn,
.tgv-hero-feature .tgv-btn {
  min-width: 104px;
  height: 31px;
  border-radius: 12px;
  padding: 0 16px;
  font-size: 11px;
}

.tgv-hero-actions .tgv-btn-outline {
  min-width: 98px;
}

.tgv-actions .tgv-button-ghost {
  border-color: #d8d8d3;
  background: #fffdfa;
  color: #1d2823;
}

.tgv-actions .tgv-button-primary {
  background: var(--primary);
  color: #fff !important;
}

.tgv-icon-button {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  color: #263c38;
}

.tgv-hero-shell {
  position: relative;
  overflow: hidden;
  padding: 0;
  background: #fffdfa;
  border-bottom: 0;
}

.tgv-hero-shell::before,
.tgv-hero-shell::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.tgv-hero-shell::before {
  display: none;
}

.tgv-hero-shell::after {
  display: none;
}

.tgv-hero-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 356px 724px;
  justify-content: space-between;
  gap: 38px;
  align-items: center;
  min-height: 448px;
  overflow: hidden;
  background: linear-gradient(90deg, #fffdfa 0%, #fbf7ef 56%, #f7efe3 100%);
  padding: 0 28px 18px;
}

.tgv-hero-panel::before {
  content: "";
  position: absolute;
  right: 12px;
  top: 2px;
  width: 224px;
  height: 158px;
  opacity: .95;
  background: url("../images/willow-branch.svg") center / contain no-repeat;
  pointer-events: none;
  z-index: 0;
}

.tgv-hero-panel::after {
  display: none;
}

.tgv-hero-copy,
.tgv-hero-carousel,
.tgv-hero-art,
.tgv-hero-feature {
  position: relative;
  z-index: 1;
}

.tgv-hero-copy h1 {
  max-width: 340px;
  margin: 0;
  color: #073e37;
  font-family: var(--font-serif);
  font-size: 44px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
  text-shadow: 0 1px 0 rgba(7, 63, 56, .18);
}

.tgv-hero-copy p {
  max-width: 350px;
  margin: 24px 0 0;
  color: var(--soft);
  font-size: 13px;
  line-height: 1.95;
}

.tgv-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.tgv-hero-carousel {
  min-height: 386px;
}

.tgv-hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 282px 380px;
  gap: 48px;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(4px);
  transition: opacity .35s ease, transform .35s ease;
}

.tgv-hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.tgv-hero-art {
  display: block;
  position: relative;
  width: 282px;
  max-width: 282px;
  aspect-ratio: 282 / 386;
  overflow: hidden;
  border-radius: 8px;
  background: var(--bg-soft);
  box-shadow: var(--shadow);
}

.tgv-hero-art img,
.tgv-update-story img,
.tgv-rank-book img,
.tgv-complete-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tgv-hero-art span {
  height: 100%;
  display: grid;
  place-items: center;
  padding: 28px;
  color: var(--primary);
  text-align: center;
  font-family: var(--font-serif);
  font-size: 31px;
  font-weight: 600;
}

.tgv-hero-art strong,
.tgv-hero-art small,
.tgv-hero-art b {
  display: none;
}

.tgv-hero-feature > span {
  display: inline-flex;
  border-radius: 6px;
  background: #f0ede5;
  padding: 4px 9px;
  color: var(--primary);
  font-size: 10px;
  font-weight: 600;
}

.tgv-hero-feature h2 {
  max-width: 380px;
  margin: 12px 0 0;
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 500;
  color: #073e37;
  line-height: 1.22;
  letter-spacing: -.015em;
}

.tgv-author-line {
  margin: 12px 0 0;
  color: var(--soft);
  font-size: 12px;
  font-weight: 600;
}

.tgv-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.tgv-tag-row a {
  border-radius: 6px;
  background: #f1eadf;
  padding: 6px 11px;
  color: var(--soft);
  font-size: 11px;
  font-weight: 600;
}

.tgv-hero-feature > p:not(.tgv-author-line) {
  max-width: 350px;
  margin: 18px 0 0;
  color: var(--soft);
  font-size: 13px;
  line-height: 1.75;
}

.tgv-mini-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  max-width: 330px;
  margin: 22px 0 24px;
  color: var(--soft);
  font-size: 13px;
}

.tgv-mini-meta span {
  color: #2d3934;
  font-size: 12px;
}

.tgv-hero-cta-row {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-top: 0;
}

.tgv-dots {
  display: flex;
  gap: 8px;
  z-index: 3;
}

.tgv-dots i {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #d9d1c4;
  transition: background .25s ease, transform .25s ease;
}

.tgv-dots i.is-active {
  background: var(--primary);
  transform: scale(1.05);
}

.tgv-section {
  padding: 22px 0;
}

.tgv-home-section {
  padding-top: 10px;
}

.tgv-section-title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.tgv-section-title h2 {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -.015em;
}

.tgv-section-title a {
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
}

.tgv-home-grid,
.tgv-split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 306px;
  gap: 24px;
  align-items: start;
}

.tgv-main-column {
  min-width: 0;
}

.tgv-rank-block,
.tgv-complete-block {
  margin-top: 34px;
}

.tgv-update-table,
.tgv-author-card,
.tgv-event-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fffdf9;
  box-shadow: 0 6px 18px rgba(29, 32, 28, .035);
}

.tgv-update-head {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(166px, .72fr) 112px 92px;
  gap: 0;
  border-bottom: 1px solid var(--border-soft);
  background: #fbf8f2;
  color: #44524c;
  font-size: 11px;
  font-weight: 600;
}

.tgv-update-head span {
  min-width: 0;
  border-right: 1px solid rgba(232, 225, 214, .62);
  padding: 10px 18px;
}

.tgv-update-head span:last-child {
  border-right: 0;
}

.tgv-update-table {
  overflow: hidden;
}

.tgv-update-row {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(166px, .72fr) 112px 92px;
  gap: 0;
  align-items: center;
  border-bottom: 1px solid var(--border-soft);
  min-height: 48px;
  color: #59635d;
  font-size: 11px;
}

.tgv-update-row:last-child {
  border-bottom: 0;
}

.tgv-update-row:hover {
  background: #fbf7ef;
}

.tgv-update-story {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.tgv-update-story i {
  width: 28px;
  height: 36px;
  overflow: hidden;
  border-radius: 5px;
  background: var(--bg-soft);
  box-shadow: 0 5px 12px rgba(30, 36, 33, .08);
}

.tgv-update-story b,
.tgv-update-row span,
.tgv-update-row em,
.tgv-update-row small,
.tgv-update-row time {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tgv-update-story b {
  color: var(--text);
  font-weight: 600;
}

.tgv-update-row > span,
.tgv-update-row > em,
.tgv-update-row > small,
.tgv-update-row > time {
  padding: 8px 18px;
}

.tgv-update-row em {
  font-style: normal;
}

.tgv-side-column {
  display: grid;
  gap: 20px;
}

.tgv-event-card {
  padding: 16px;
}

.tgv-event-card h2 {
  margin: 0 0 12px;
  color: #17231f;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
}

.tgv-event-tile {
  min-height: 208px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  border-radius: 7px;
  background-color: #15231f;
  background-image: linear-gradient(180deg, rgba(12, 16, 14, .56), rgba(8, 10, 9, .82)), var(--event-bg, linear-gradient(135deg, #3b2c20, #15110d));
  background-position: center;
  background-size: cover;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .08);
  color: #fff;
  padding: 20px 18px;
  text-align: center;
}

.tgv-event-tile span {
  color: rgba(255,255,255,.86);
  font-size: 12px;
  font-weight: 700;
}

.tgv-event-tile strong {
  margin-top: 4px;
  font-family: var(--font-serif);
  font-size: 25px;
  font-weight: 700;
  line-height: 1.12;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .42);
}

.tgv-event-tile small {
  margin-top: 7px;
  color: rgba(255,255,255,.9);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
}

.tgv-event-tile b {
  width: fit-content;
  min-width: 134px;
  margin-top: 17px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid rgba(7, 63, 56, .22);
  border-radius: 6px;
  background: #fffaf0;
  padding: 9px 16px;
  color: #28342f;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .22);
}

.tgv-author-card {
  padding: 18px;
}

.tgv-author-card .tgv-section-title h2 {
  font-size: 18px;
}

.tgv-author-item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  border-bottom: 1px solid var(--border-soft);
  padding: 12px 0;
}

.tgv-author-item:last-child {
  border-bottom: 0;
}

.tgv-author-item span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary);
  font-weight: 700;
}

.tgv-author-item b,
.tgv-author-item small {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tgv-author-item b {
  color: var(--text);
  font-size: 14px;
}

.tgv-author-item small {
  color: var(--muted);
  font-size: 12px;
}

.tgv-rank-tabs {
  display: inline-flex;
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #f5efe5;
  margin-bottom: 14px;
  min-width: 456px;
}

.tgv-rank-tabs button {
  border: 0;
  background: transparent;
  min-width: 152px;
  padding: 10px 22px;
  color: var(--soft);
  font: inherit;
  font-size: 13px;
  font-weight: 600;
}

.tgv-rank-tabs button.is-active {
  background: var(--primary);
  color: #fff;
}

.tgv-rank-showcase {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fffdf9;
  box-shadow: var(--shadow-soft);
}

.tgv-rank-book {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  border-right: 1px solid var(--border-soft);
  padding: 18px 14px 20px;
  text-align: center;
}

.tgv-rank-book:last-child {
  border-right: 0;
}

.tgv-rank-book > span {
  position: absolute;
  top: 14px;
  left: 14px;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 5px;
  background: #e3bf64;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.tgv-rank-book i {
  width: 88px;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 8px;
  background: var(--bg-soft);
  box-shadow: 0 12px 20px rgba(30, 36, 33, .13);
}

.tgv-rank-book b {
  display: -webkit-box;
  min-height: 38px;
  margin-top: 12px;
  overflow: hidden;
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.tgv-rank-book small,
.tgv-rank-book em {
  display: block;
  max-width: 100%;
  overflow: hidden;
  color: var(--muted);
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 12px;
  font-style: normal;
}

.tgv-rank-book em {
  margin-top: 9px;
  color: var(--soft);
}

.tgv-complete-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
}

.tgv-complete-item {
  text-align: center;
}

.tgv-complete-item span {
  display: block;
  width: 100%;
  max-width: 145px;
  aspect-ratio: 3 / 4;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 10px;
  background: var(--bg-soft);
  box-shadow: 0 16px 28px rgba(30, 36, 33, .1);
}

.tgv-complete-item b {
  display: -webkit-box;
  margin-top: 12px;
  overflow: hidden;
  color: var(--text);
  font-size: 13px;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.tgv-complete-item small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.tgv-footer {
  margin-top: 40px;
  border-top: 1px solid var(--border);
  background: #fffdf8;
}

.tgv-footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 30px;
  padding-bottom: 30px;
  color: var(--soft);
  font-size: 14px;
}

.tgv-footer p {
  margin: 6px 0 0;
}

.tgv-footer strong {
  color: var(--text);
}

.tgv-footer a {
  color: var(--primary);
  font-weight: 600;
}

@media (max-width: 1120px) {
  .tgv-search {
    display: none;
  }

  .tgv-hero-panel {
    grid-template-columns: minmax(0, 1fr);
    padding: 38px;
  }

  .tgv-hero-carousel {
    min-height: 372px;
  }

  .tgv-hero-slide {
    grid-template-columns: 270px minmax(280px, 1fr);
    gap: 30px;
  }

  .tgv-rank-showcase {
    grid-template-columns: repeat(5, minmax(150px, 1fr));
    overflow-x: auto;
  }

  .tgv-rank-tabs {
    min-width: 0;
  }
}

@media (max-width: 900px) {
  .tgv-nav {
    display: none;
  }

  .tgv-home-grid,
  .tgv-split-grid {
    grid-template-columns: 1fr;
  }

  .tgv-update-row {
    grid-template-columns: minmax(0, 1fr) 80px;
    gap: 8px 12px;
  }

  .tgv-update-head {
    display: none;
  }

  .tgv-update-row small {
    display: none;
  }

  .tgv-update-row em {
    grid-column: 1 / 2;
    font-size: 12px;
  }

  .tgv-update-row time {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
    text-align: right;
    font-size: 12px;
  }

  .tgv-complete-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .tgv-body {
    background: #fffdf8;
    padding-bottom: 0;
    font-size: 13px;
  }

  .tgv-container {
    padding: 0 14px;
  }

  .tgv-header-inner {
    min-height: 48px;
    gap: 8px;
    padding-inline: 12px;
  }

  .tgv-mobile-menu {
    display: grid;
    width: 28px;
    height: 28px;
    flex: 0 0 auto;
    place-items: center;
    border: 0;
    background: transparent;
    color: #17231f;
    padding: 0;
  }

  .tgv-mobile-menu svg {
    width: 19px;
    height: 19px;
  }

  .tgv-brand {
    flex: 1;
    gap: 5px;
    font-size: 13px;
    line-height: 1;
  }

  .tgv-brand-mark {
    width: 21px;
    height: 21px;
  }

  .tgv-brand-mark svg {
    width: 15px;
    height: 15px;
  }

  .tgv-actions,
  .tgv-actions .tgv-button {
    display: none;
  }

  .tgv-mobile-tools {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
  }

  .tgv-mobile-tools .tgv-icon-button {
    width: 24px;
    height: 24px;
    border-radius: 5px;
  }

  .tgv-mobile-tools .tgv-icon-button svg {
    width: 16px;
    height: 16px;
  }

  .tgv-hero-shell {
    border-bottom: 0;
    background: #fffdf8;
    padding-top: 8px;
  }

  .tgv-hero-panel {
    display: block;
    min-height: 0;
    padding: 0;
  }

  .tgv-hero-panel::before {
    display: none;
  }

  .tgv-hero-copy,
  .tgv-hero-feature {
    display: none;
  }

  .tgv-hero-carousel {
    min-height: auto;
    aspect-ratio: 1.58 / 1;
  }

  .tgv-hero-slide {
    display: block;
  }

  .tgv-hero-art {
    width: 100%;
    max-width: none;
    aspect-ratio: 1.58 / 1;
    border-radius: 8px;
    background: #10241f;
    box-shadow: 0 10px 22px rgba(17, 75, 67, .16);
  }

  .tgv-dots {
    display: none;
  }

  .tgv-hero-art img {
    object-fit: cover;
    object-position: center 38%;
    padding: 0;
    background: #10241f;
  }

  .tgv-hero-art::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 28, 24, .05) 0%, rgba(5, 28, 24, .28) 42%, rgba(5, 28, 24, .78) 100%);
  }

  .tgv-hero-art strong,
  .tgv-hero-art small,
  .tgv-hero-art b {
    position: absolute;
    z-index: 2;
    display: block;
    left: 16px;
    color: #fff;
  }

  .tgv-hero-art strong {
    bottom: 50px;
    max-width: 70%;
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.15;
  }

  .tgv-hero-art small {
    bottom: 34px;
    color: rgba(255,255,255,.82);
    font-size: 10px;
  }

  .tgv-hero-art b {
    bottom: 11px;
    border-radius: 8px;
    background: var(--primary);
    padding: 7px 15px;
    font-size: 10px;
  }

  .tgv-section {
    padding: 18px 0 8px;
  }

  .tgv-section-title {
    margin-bottom: 10px;
  }

  .tgv-section-title h2 {
    font-size: 13.5px;
    letter-spacing: 0;
  }

  .tgv-section-title a {
    font-size: 8px;
  }

  .tgv-update-table,
  .tgv-author-card,
  .tgv-event-card,
  .tgv-rank-showcase {
    border-radius: 0;
    border: 0;
    box-shadow: none;
    background: transparent;
  }

  .tgv-update-row {
    grid-template-columns: minmax(0, 1fr) 52px;
    gap: 4px 8px;
    min-height: 48px;
    padding: 6px 0;
    border-bottom-color: #eee6d9;
    font-size: 9.5px;
  }

  .tgv-update-row > span,
  .tgv-update-row > em,
  .tgv-update-row > small,
  .tgv-update-row > time {
    padding: 0;
  }

  .tgv-update-story {
    grid-template-columns: 27px minmax(0, 1fr);
    gap: 8px;
  }

  .tgv-update-story i {
    width: 27px;
    height: 34px;
    border-radius: 4px;
  }

  .tgv-update-story b {
    font-size: 10px;
    line-height: 1.25;
  }

  .tgv-update-row em {
    padding-left: 35px;
    color: #5f6861;
    font-size: 9px;
    line-height: 1.3;
  }

  .tgv-update-row time {
    color: #2b352f;
    font-size: 9px;
    line-height: 1.3;
  }

  .tgv-rank-tabs {
    width: 100%;
    overflow-x: auto;
  }

  .tgv-rank-tabs button {
    flex: 1 0 auto;
    padding-inline: 16px;
  }

  .tgv-rank-showcase {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .tgv-rank-book {
    min-width: 42%;
    scroll-snap-align: start;
  }

  .tgv-complete-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

}
