/* Figma 1.0 — 首页 Web */
@import url("empty-state.css");

.home-page {
  --home-canvas: 1120px;
  --home-inner: 1072px;
  --home-gutter: 24px;
  --home-column: var(--home-inner);
  --home-page-pad: 60px;
  --home-bg: #100f0f;
  --home-header-bg: #101518;
  --home-panel-bg: #151515;
  --home-card-bg: #201f1f;
  --home-accent: #03c75a;
  --home-hot: #fd5469;
  --home-text: rgba(255, 255, 255, 0.8);
  --home-text-strong: #ffffff;
  --home-muted: rgba(255, 255, 255, 0.5);
  --home-border: rgba(255, 255, 255, 0.1);
  --home-border-strong: rgba(255, 255, 255, 0.3);
  --home-placeholder: #333333;
  --home-panel: #151515;
  --home-panel-2: #201f1f;
  --home-tg-gradient: linear-gradient(90deg, #5b7cfa 0%, #8b6df6 100%);
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--home-bg);
  color: var(--home-text);
  font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.home-page *,
.home-page *::before,
.home-page *::after { box-sizing: border-box; }
.home-page [hidden] { display: none !important; }
.home-page a { color: inherit; text-decoration: none; }
.home-page :focus-visible { outline: 2px solid var(--home-accent); outline-offset: 3px; }
.home-page button,
.home-page input { font: inherit; }
.home-page button { cursor: pointer; }

.home-page .home-canvas {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

/* —— Header 70px —— */
.home-page .home-site-header {
  width: 100%;
  height: 70px;
  background: var(--home-header-bg);
  position: relative;
  z-index: 100;
  overflow: visible;
}
.home-page .home-header-inner {
  height: 70px;
  overflow: visible;
  /* Figma 1920 frame with 60px gutters — content area must stay 1800px wide. */
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 var(--home-page-pad);
  display: flex;
  align-items: center;
  gap: 24px;
}
.home-page .home-header-left {
  display: flex;
  align-items: center;
  gap: 32px;
  min-width: 0;
  flex: 0 1 auto;
}
.home-page .home-brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
}
.home-page .home-brand-logo {
  display: block;
  width: 98px;
  height: 34px;
  object-fit: contain;
}

.home-page .home-main-nav {
  display: flex;
  align-items: stretch;
  gap: 24px;
  min-width: 0;
  flex: 1 1 auto;
  /* Horizontal squeeze is handled by home-nav.js fit ladder — do not clip here:
     overflow-x:clip forces overflow-y to auto and cuts off dropdown menus. */
  overflow: visible;
}
.home-page .home-nav-tab,
.home-page .home-nav-dropdown-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 96px;
  height: 70px;
  padding: 0 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  font-weight: 500;
  line-height: 20px;
  white-space: nowrap;
}
.home-page .home-nav-dropdown-toggle {
  min-width: 0;
  padding: 0;
  gap: 0;
}
.home-page .home-nav-dropdown-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 96px;
  height: 70px;
  margin-right: -6px;
}
.home-page .home-nav-dropdown-chevron {
  display: block;
  width: 12px;
  height: 10px;
  flex: 0 0 24px;
  object-fit: contain;
  object-position: center;
  opacity: 0.5;
}
.home-page .home-nav-tab:hover,
.home-page .home-nav-dropdown-toggle:hover { color: #fff; }
.home-page .home-nav-tab.active,
.home-page .home-nav-dropdown.is-active .home-nav-dropdown-toggle,
.home-page .home-nav-dropdown-toggle.active {
  background: var(--home-accent);
  color: #fff;
  font-weight: 600;
}
.home-page .home-nav-dropdown.is-active .home-nav-dropdown-chevron,
.home-page .home-nav-dropdown-toggle.active .home-nav-dropdown-chevron,
.home-page .home-nav-dropdown-toggle:hover .home-nav-dropdown-chevron {
  opacity: 1;
}
.home-page .home-nav-tab.active::after,
.home-page .home-nav-dropdown.is-active .home-nav-dropdown-toggle::after,
.home-page .home-nav-dropdown-toggle.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 24px;
  height: 6px;
  margin-left: -12px;
  background: #fff;
  border-radius: 4px;
}
.home-page .home-nav-dropdown {
  position: relative;
  padding-bottom: 7px;
  margin-bottom: -7px;
}
.home-page .home-nav-dropdown-toggle::before {
  content: none;
}
.home-page .home-nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 200;
  width: 140px;
  padding: 0;
  border: 0;
  border-radius: 0 0 12px 12px;
  background: #101518;
  overflow: hidden;
}
.home-page .home-nav-dropdown-menu::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 0;
  right: 0;
  height: 7px;
}
.home-page .home-nav-dropdown:hover .home-nav-dropdown-menu,
.home-page .home-nav-dropdown:focus-within .home-nav-dropdown-menu,
.home-page .home-nav-dropdown.is-open .home-nav-dropdown-menu {
  display: block;
}
.home-page .home-nav-dropdown-menu a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  padding: 0;
  border-bottom: 1px solid transparent;
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  font-weight: 400;
  line-height: 19.2px;
  text-align: center;
  white-space: nowrap;
}
.home-page .home-nav-dropdown-menu a:hover {
  color: #fff;
  font-weight: 600;
  border-bottom-color: var(--home-accent);
}

.home-page .home-header-actions {
  display: flex;
  align-items: center;
  gap: 17px;
  flex: 0 0 auto;
  min-width: 0;
  margin-left: auto;
}
/* Fluid search: grows from the nav edge (吃瓜百科) toward TG/auth, capped at
   Figma 600px. Shrinks with the viewport instead of disappearing at a breakpoint. */
.home-page .home-search-form {
  position: relative;
  flex: 1 1 0;
  min-width: 120px;
  max-width: 600px;
  width: auto;
  height: 44px;
  overflow: hidden;
}
.home-page .home-search-input {
  width: 100%;
  height: 44px;
  padding: 0 84px 0 23px;
  border: 1px solid var(--home-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 14px;
  line-height: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.home-page .home-search-input::placeholder { color: var(--home-muted); }
.home-page .home-search-submit {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 72px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: var(--home-accent);
}
.home-page .home-search-icon {
  display: block;
  width: 14px;
  height: 14px;
  object-fit: contain;
}
.home-page .home-search-link--mobile {
  display: none;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--home-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}
.home-page .home-search-link--mobile .home-search-icon {
  display: block;
  width: 14px;
  height: 14px;
  object-fit: contain;
}

.home-page .home-tg-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 16px;
  border-radius: 44px;
  background: var(--home-tg-gradient);
  color: #fefefe;
  font-size: 14px;
  line-height: 20px;
  white-space: nowrap;
}
.home-page .home-tg-icon {
  display: block;
  width: 11px;
  height: 13px;
  object-fit: contain;
  flex: 0 0 auto;
}
.home-page .home-auth-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  color: #fff;
  font-size: 18px;
  line-height: 20px;
  white-space: nowrap;
}
/* Nicknames are user-supplied and unbounded — cap them so the actions column
   has a known maximum width. */
.home-page .home-auth-label {
  min-width: 0;
  max-width: 140px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.home-page .home-auth-icon {
  display: block;
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex: 0 0 auto;
}
.home-page .home-auth-avatar {
  display: none;
  box-sizing: border-box;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #333;
  color: #f2f2f2;
  font-size: 18px;
  font-weight: 500;
  line-height: 44px;
  text-align: center;
  overflow: hidden;
  flex: 0 0 auto;
}
.home-page .home-auth-link.is-logged-in .home-auth-icon {
  display: none;
}
.home-page .home-auth-link.is-logged-in .home-auth-avatar {
  display: block;
}

/* —— Header fit ladder ——
   Stages are applied by assets/js/home-nav.js from a measured overflow test,
   not from guessed viewport widths: the real header width depends on the
   injected nav chevrons, the logged-in nickname and font loading, none of
   which a media query can see. */
.home-page .home-site-header.is-fit-search .home-search-form {
  display: none;
}
.home-page .home-site-header.is-fit-search .home-search-link--mobile {
  display: inline-flex;
}
.home-page .home-site-header.is-fit-compact .home-header-inner {
  gap: 16px;
}
.home-page .home-site-header.is-fit-compact .home-search-form {
  min-width: 100px;
}
.home-page .home-site-header.is-fit-compact .home-header-left {
  gap: 16px;
}
.home-page .home-site-header.is-fit-compact .home-header-actions {
  gap: 10px;
}
.home-page .home-site-header.is-fit-compact .home-main-nav {
  gap: 10px;
}
.home-page .home-site-header.is-fit-compact .home-nav-tab,
.home-page .home-site-header.is-fit-compact .home-nav-dropdown-toggle {
  min-width: 0;
  padding: 0 6px;
  font-size: 15px;
}
.home-page .home-site-header.is-fit-compact .home-nav-dropdown-toggle {
  padding: 0;
}
.home-page .home-site-header.is-fit-compact .home-nav-dropdown-label {
  min-width: 0;
  padding: 0 6px;
}
.home-page .home-site-header.is-fit-compact .home-tg-label {
  display: none;
}
.home-page .home-site-header.is-fit-compact .home-tg-link {
  padding: 0 12px;
}
.home-page .home-site-header.is-fit-compact .home-auth-link {
  font-size: 15px;
}
.home-page .home-nav-item-hidden {
  display: none !important;
}
.home-page .home-nav-overflow .home-nav-dropdown-menu {
  width: auto;
  min-width: 160px;
  right: 0;
  left: auto;
}
.home-page .home-nav-overflow-group + .home-nav-overflow-group {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.home-page .home-nav-overflow-group > a.home-nav-overflow-section {
  color: #fff;
  font-weight: 600;
}

/* —— Trust / status strip —— */
.home-page .home-trust {
  width: 100%;
  min-height: 36px;
  padding: 8px var(--home-page-pad);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  background: transparent;
}
.home-page .home-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 10px;
  color: var(--home-muted);
  font-size: 14px;
  line-height: 20px;
  white-space: nowrap;
}
.home-page .home-trust-item.is-ok { color: var(--home-accent); }
.home-page .home-trust-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--home-accent);
}

/* —— Main panel —— */
.home-page .home-shell {
  width: var(--home-canvas);
  max-width: calc(100% - 32px);
  margin: 7px auto 0;
  padding: 24px;
  border-radius: 12px;
  background: var(--home-panel-bg);
}
.home-page .home-shell-inner {
  width: 100%;
  max-width: var(--home-inner);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Channel hub panel — Figma 1120×#151515 (trending/entertainment/wiki) */
.home-page .hub-panel {
  width: 100%;
  max-width: var(--home-canvas);
  margin: 0 auto;
  padding: 24px;
  border-radius: 12px;
  background: var(--home-panel-bg);
  box-sizing: border-box;
}

/* Category tabs 5×3 */
.home-page .home-ads {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px 13px;
  width: 100%;
}
.home-page .home-ad-cell {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 10px;
  border: 1px solid var(--home-border);
  border-radius: 8px;
  background: var(--home-card-bg);
  color: var(--home-muted);
  font-size: 16px;
  line-height: 16px;
  text-align: center;
}
.home-page .home-ad-cell:hover,
.home-page .home-ad-cell.is-active {
  background: var(--home-accent);
  border-color: var(--home-accent);
  color: var(--home-text-strong);
  font-weight: 500;
}
.home-page .home-ad-cell--empty {
  visibility: hidden;
  pointer-events: none;
}

/* Featured 696 + 352 */
.home-page .home-featured {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
}
.home-page .home-featured-hero {
  flex: 0 0 696px;
  width: 696px;
  max-width: 100%;
  min-width: 0;
}
.home-page .home-featured-hero > a {
  display: block;
}
.home-page .home-featured-hero-media {
  position: relative;
  width: 100%;
  height: 392px;
  border: 1px solid var(--home-border-strong);
  border-radius: 14px;
  overflow: hidden;
  background: var(--home-card-bg);
}
.home-page .home-featured-hero-media img,
.home-page .home-featured-hero-media .home-ph {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.home-page .home-featured-hero-media .home-ph { background: var(--home-placeholder); }
.home-page .home-featured-hero-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 48px 26px 24px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
}
.home-page .home-featured-hero-title {
  margin: 0 0 8px;
  color: var(--home-text);
  font-size: 24px;
  font-weight: 600;
  line-height: 30px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.home-page .home-featured-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  color: #e5e8ee;
  font-size: 14px;
  line-height: 20px;
}
.home-page .home-featured-side {
  flex: 0 0 352px;
  width: 352px;
  max-width: 100%;
  height: 392px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.home-page .home-featured-side-item {
  display: grid;
  grid-template-columns: 77px 1fr;
  gap: 9px;
  align-items: center;
  height: 84px;
  padding: 10px;
  border: 1px solid var(--home-border-strong);
  border-radius: 14px;
  background: transparent;
}
.home-page .home-featured-side-item:hover {
  border-color: var(--home-accent);
}
.home-page .home-featured-side-thumb {
  width: 77px;
  height: 64px;
  border-radius: 4px;
  overflow: hidden;
  background: var(--home-placeholder);
}
.home-page .home-featured-side-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.home-page .home-featured-side-item > div:not(.home-featured-side-thumb) {
  min-width: 0;
}
.home-page .home-featured-side-title {
  margin: 0 0 6px;
  color: var(--home-text);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  overflow-wrap: anywhere;
}
.home-page .home-featured-side .home-featured-meta {
  display: block;
  margin: 0;
  color: var(--home-muted);
  font-size: 12px;
  line-height: 24px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Section head */
.home-page .home-section-head {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  margin-bottom: 16px;
}
.home-page .home-section-icon {
  display: block;
  width: 32px;
  height: 32px;
  object-fit: contain;
  flex: 0 0 auto;
}
.home-page .home-section-title {
  margin: 0;
  color: var(--home-text);
  font-size: 24px;
  font-weight: 600;
  line-height: 30px;
}

/* Today channel heading — matches trending/entertainment mark + 14px title */
.home-page.today-page .td-heading {
  display: flex;
  align-items: center;
  gap: 8px;
  width: var(--home-column);
  max-width: 100%;
  margin: 0 0 16px;
}
.home-page.today-page .td-heading-mark {
  flex: 0 0 auto;
  width: 4px;
  height: 22px;
  border-radius: 2px;
  background: var(--home-accent);
}
.home-page.today-page .td-heading-title {
  margin: 0;
  color: #d7d7d7;
  font-size: 14px;
  font-weight: 500;
  line-height: 19px;
}

/* Feed cards */
.home-page .home-feed {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
.home-page .home-feed-card {
  display: grid;
  grid-template-columns: 448px minmax(0, 1fr);
  gap: 0;
  min-height: 276px;
  padding: 16px;
  border: 1px solid transparent;
  border-radius: 14px;
  background: var(--home-card-bg);
}
.home-page .home-feed-card:hover {
  border-color: var(--home-accent);
}
.home-page .home-collage {
  position: relative;
  width: 448px;
  max-width: 100%;
  height: 244px;
  display: grid;
  grid-template-columns: 222px 222px;
  column-gap: 4px;
}
.home-page .home-collage-main {
  position: relative;
  grid-column: 1;
  grid-row: 1 / span 2;
  height: 244px;
  border-radius: 12px 0 0 12px;
  overflow: hidden;
  background: var(--home-placeholder);
}
.home-page .home-collage-side {
  position: relative;
  overflow: hidden;
  background: var(--home-placeholder);
}
.home-page .home-collage-side-top {
  height: 120px;
  border-radius: 0 12px 0 0;
}
.home-page .home-collage-side-bottom {
  height: 120px;
  margin-top: 4px;
  border-radius: 0 0 12px 0;
}
/* 无原图尺寸时退回 CSS cover；有 data-cw/ch 时由 coverCrop.applyCrop 内联定位 */
.home-page .home-collage img.home-collage-img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.home-page .home-hot-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  height: 22px;
  padding: 1px 8px;
  border-radius: 14px;
  background: var(--home-hot);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  line-height: 20px;
}
.home-page .home-hot-badge-icon {
  flex-shrink: 0;
  display: block;
  width: 12px;
  height: 14px;
}
.home-page .home-hot-badge:not(.home-hot-badge--inline) .home-hot-badge-icon {
  width: 10px;
  height: 12px;
}
.home-page .home-hot-badge--inline {
  position: static;
  align-self: flex-start;
  margin-bottom: 8px;
  gap: 2px;
  height: 28px;
  min-width: 66px;
  padding: 4px 10px;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}
.home-page .home-feed-body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 16px 0 32px;
}
.home-page .home-feed-title {
  margin: 0 0 16px;
  min-width: 0;
  max-width: 100%;
  color: var(--home-text-strong);
  font-size: 24px;
  font-weight: 600;
  line-height: 30px;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.home-page .home-feed-subtitle {
  margin: -8px 0 24px;
  min-width: 0;
  max-width: 100%;
  color: var(--home-muted);
  font-size: 18px;
  font-weight: 500;
  line-height: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.home-page .home-feed-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.home-page .home-feed-date {
  color: var(--home-muted);
  font-size: 14px;
  line-height: 20px;
}
.home-page .home-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 10px 16px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--home-muted);
  font-size: 14px;
  line-height: 20px;
  white-space: nowrap;
}

/* Pager */
.home-page .home-pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  width: 100%;
  margin-top: 24px;
}
.home-page .home-pager-center {
  display: flex;
  align-items: center;
  gap: 15px;
}
.home-page .home-pager-status {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  line-height: 20px;
  white-space: nowrap;
}
.home-page .home-pager-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  text-decoration: none;
}
.home-page .home-pager-circle img {
  display: block;
  width: 46px;
  height: 46px;
}
/* Figma 分页/跳转控件 has a single visual state — disabled buttons stay full-opacity. */
.home-page .home-pager-circle:disabled,
.home-page .home-pager-circle.is-disabled {
  opacity: 1;
  cursor: not-allowed;
  pointer-events: none;
}
.home-page .home-pager-input-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  min-height: 42px;
  padding: 11px 18px;
  border: 1px solid var(--home-border-strong);
  border-radius: 14px;
}
.home-page .home-pager input[type="number"] {
  width: 48px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  -moz-appearance: textfield;
}
.home-page .home-pager input[type="number"]::-webkit-outer-spin-button,
.home-page .home-pager input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.home-page .home-empty,
.home-page .home-error {
  padding: 28px 12px;
  color: var(--home-muted);
  text-align: center;
  width: 100%;
}

/* Footer */
.home-page .home-footer {
  width: 100%;
  margin-top: 40px;
  padding: 41px var(--home-page-pad) 40px;
  border-top: 1px solid var(--home-border);
  background: var(--home-bg);
  color: var(--home-muted);
}
.home-page .home-footer-inner {
  width: 100%;
  max-width: var(--home-inner);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.home-page .home-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.home-page .home-footer-col h4 {
  margin: 0 0 24px;
  padding-top: 5px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 24px;
  font-weight: 500;
  line-height: 20px;
}
.home-page .home-footer-brand .home-footer-logo {
  display: inline-flex;
  align-items: center;
  min-height: 47px;
  margin-bottom: 0;
}
.home-page .home-footer-brand .home-footer-logo img {
  display: block;
  width: 98px;
  height: 34px;
  object-fit: contain;
}
.home-page .home-footer-brand {
  display: flex;
  flex-direction: column;
  gap: 19px;
}
.home-page .home-footer-col p {
  margin: 0;
  color: var(--home-muted);
  font-size: 16px;
  line-height: 20px;
}
.home-page .home-footer-brand p + p {
  margin-top: 0;
}
.home-page .home-footer-contact {
  margin-top: 0;
  font-size: 14px;
  line-height: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.home-page .home-footer-contact-row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.home-page .home-footer-icon {
  display: block;
  width: 14px;
  height: 14px;
  object-fit: contain;
  flex: 0 0 auto;
  opacity: 0.8;
}
.home-page .home-footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.home-page .home-footer-col a {
  color: var(--home-muted);
  font-size: 16px;
  line-height: 20px;
}
.home-page .home-footer-col a:hover { color: var(--home-accent); }
.home-page .home-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 0;
  padding-top: 33px;
  min-height: 71px;
  box-sizing: border-box;
  border-top: 1px solid rgba(229, 232, 238, 0.1);
  color: #9fa2ad;
  font-size: 20px;
  line-height: 20px;
}

@media (max-width: 1400px) {
  .home-page {
    --home-page-pad: 24px;
  }
}

@media (max-width: 1100px) {
  .home-page .home-featured {
    flex-direction: column;
  }
  .home-page .home-featured-hero,
  .home-page .home-featured-side {
    width: 100%;
    flex: none;
  }
  .home-page .home-feed-card {
    grid-template-columns: 1fr;
  }
  .home-page .home-collage {
    width: 100%;
    max-width: 448px;
  }
  .home-page .home-feed-body {
    padding: 16px 0 0;
  }
}

@media (max-width: 800px) {
  .home-page { overflow-x: hidden; }
}
