/* GetAsteal.com — shopping deals / 导购 commerce */

:root {
  --ink: #111827;
  --ink-soft: #4b5563;
  --paper: #f3f4f6;
  --surface: #ffffff;
  --line: #e5e7eb;
  --deal: #e11d48;
  --deal-deep: #be123c;
  --save: #fbbf24;
  --save-ink: #78350f;
  --ok: #059669;
  --mist: #9ca3af;
  --white: #ffffff;
  --font-display: "Oswald", "Arial Narrow", sans-serif;
  --font-body: "Nunito Sans", "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.2, 0.85, 0.25, 1);
  --max: 1140px;
  --radius: 4px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--deal-deep);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

a:hover {
  color: var(--deal);
}

.site-wrap {
  overflow-x: hidden;
}

.container-gs {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

@media (max-width: 575.98px) {
  .container-gs {
    width: min(100% - 1.25rem, var(--max));
  }
}

/* Top ticker */
.top-ticker {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.45rem 0;
  text-align: center;
}

.top-ticker strong {
  color: var(--save);
}

/* Nav — commerce white bar */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(17, 24, 39, 0.04);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  position: relative;
}

.brand-mark {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark .bang {
  color: var(--deal);
}

.brand-mark:hover {
  color: var(--ink);
}

.nav-toggle {
  display: none;
  width: 2.4rem;
  height: 2.4rem;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 1.3rem;
  margin-inline: auto;
  background: var(--ink);
  transition: transform 0.3s var(--ease), opacity 0.3s;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.15rem 0.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  display: block;
  padding: 0.45rem 0.7rem;
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--ink-soft);
  border-radius: var(--radius);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--deal);
  background: #fff1f2;
}

.nav-cta {
  margin-left: 0.5rem !important;
  background: var(--deal) !important;
  color: var(--white) !important;
  padding: 0.5rem 0.9rem !important;
}

.nav-cta:hover {
  background: var(--deal-deep) !important;
  color: var(--white) !important;
}

@media (max-width: 767.98px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 0 0.85rem;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 10px 24px rgba(17, 24, 39, 0.08);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    border-radius: 0;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--line);
  }

  .nav-cta {
    margin: 0.5rem 1rem 0 !important;
    text-align: center;
  }
}

.page-inner .site-nav {
  border-bottom-color: var(--line);
}

/* Hero — deals storefront */
.hero {
  position: relative;
  background: linear-gradient(135deg, #fff7ed 0%, #ffffff 42%, #fff1f2 100%);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr minmax(16rem, 22rem);
  gap: 2rem;
  align-items: center;
  padding: 2.75rem 0 3rem;
}

@media (max-width: 899.98px) {
  .hero-grid {
    grid-template-columns: 1fr;
    padding: 2.25rem 0 2.5rem;
  }
}

.hero-kicker {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 0.85rem;
  padding: 0.28rem 0.55rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  background: #fef3c7;
  color: var(--save-ink);
  border-radius: 2px;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 9vw, 4rem);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: 0.01em;
  margin: 0 0 0.85rem;
  color: var(--ink);
}

.hero-brand .bang {
  color: var(--deal);
}

.hero-tagline {
  margin: 0 0 0.65rem;
  font-size: clamp(1.15rem, 2.5vw, 1.35rem);
  font-weight: 800;
  color: var(--ink);
}

.hero-lead {
  margin: 0 0 1.5rem;
  max-width: 32em;
  color: var(--ink-soft);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.btn-gs {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}

.btn-deal {
  background: var(--deal);
  color: var(--white);
  border-color: var(--deal);
}

.btn-deal:hover {
  background: var(--deal-deep);
  border-color: var(--deal-deep);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-ghost {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--ink);
}

.btn-ghost:hover {
  background: var(--ink);
  color: var(--white);
}

/* Hot deal spotlight in hero */
.hot-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(17, 24, 39, 0.08);
}

.hot-card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: #f9fafb;
}

.hot-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hot-badge {
  text-transform: uppercase;
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.3rem 0.55rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  background: var(--deal);
  color: var(--white);
  border-radius: 2px;
}

.hot-card-body {
  padding: 1rem 1.1rem 1.15rem;
}

.hot-card-body h2 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin: 0 0 0.45rem;
  line-height: 1.25;
}

.hot-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.price-now {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 600;
  color: var(--deal);
  letter-spacing: 0.02em;
}

.price-was {
  font-size: 0.9rem;
  color: var(--mist);
  text-decoration: line-through;
}

.save-pill {
  text-transform: uppercase;
  padding: 0.15rem 0.4rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  background: #ecfdf5;
  color: var(--ok);
  border-radius: 2px;
}

/* Trust strip */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.trust-item {
  padding: 1rem 1.15rem;
  text-align: center;
  border-right: 1px solid var(--line);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink-soft);
}

.trust-item:last-child {
  border-right: none;
}

.trust-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.01em;
  color: var(--ink);
  margin-bottom: 0.15rem;
}

@media (max-width: 575.98px) {
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .trust-item {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .trust-item:last-child {
    border-bottom: none;
  }
}

/* Sections */
.section {
  padding: 3.5rem 0;
}

.section-alt {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  margin-bottom: 1.5rem;
}

.section-head-text {
  max-width: 36em;
}

.section-label {
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 0.35rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--deal);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3.2vw, 2rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.2;
  margin: 0 0 0.35rem;
}

.section-desc {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.section-count {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--mist);
  white-space: nowrap;
}

.prose p {
  margin: 0 0 1rem;
  color: var(--ink-soft);
  max-width: 42em;
}

.prose strong {
  color: var(--ink);
}

/* Deal product grid — commerce cards */
.deal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

@media (max-width: 991.98px) {
  .deal-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575.98px) {
  .deal-grid {
    grid-template-columns: 1fr;
  }
}

.product-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  transition: box-shadow 0.25s var(--ease), transform 0.25s var(--ease), border-color 0.25s;
  height: 100%;
}

.section-alt .product-card {
  background: var(--paper);
}

a.product-card:hover {
  border-color: #fda4af;
  box-shadow: 0 10px 28px rgba(225, 29, 72, 0.12);
  transform: translateY(-3px);
  color: inherit;
}

.blog-static .product-card {
  cursor: default;
}

.product-media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: #f9fafb;
  overflow: hidden;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}

a.product-card:hover .product-media img {
  transform: scale(1.05);
}

.tag-sale {
  text-transform: uppercase;
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  padding: 0.25rem 0.45rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  background: var(--deal);
  color: var(--white);
  border-radius: 2px;
}

.tag-cat {
  text-transform: uppercase;
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  padding: 0.25rem 0.45rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  border-radius: 2px;
}

.product-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 0.95rem 1rem 1.1rem;
}

.product-title {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin: 0 0 0.4rem;
  line-height: 1.3;
  color: var(--ink);
}

.product-excerpt {
  margin: 0 0 0.85rem;
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.45;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding-top: 0.75rem;
  border-top: 1px dashed var(--line);
}

.product-price {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--deal);
  letter-spacing: 0.02em;
}

.product-price small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--mist);
  letter-spacing: 0;
  text-transform: none;
}

.product-date {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--mist);
}

/* News row — compact commerce */
.news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem;
}

@media (max-width: 991.98px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .news-grid {
    grid-template-columns: 1fr;
  }
}

.news-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  height: 100%;
  transition: box-shadow 0.25s, transform 0.25s;
}

a.news-card:hover {
  box-shadow: 0 8px 20px rgba(17, 24, 39, 0.08);
  transform: translateY(-2px);
  color: inherit;
}

.blog-static .news-card {
  cursor: default;
}

.news-card-media {
  aspect-ratio: 16 / 10;
  background: #f9fafb;
  overflow: hidden;
}

.news-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-card-body {
  padding: 0.85rem 0.9rem 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-card-body .media-cat {
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 0.35rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--deal);
}

.news-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin: 0 0 0.35rem;
  line-height: 1.3;
  color: var(--ink);
}

.news-card-body p {
  margin: 0 0 0.55rem;
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 1.4;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card-body time {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--mist);
}

/* How we pick */
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

@media (max-width: 767.98px) {
  .how-grid {
    grid-template-columns: 1fr;
  }
}

.how-item {
  padding: 1.25rem 1.15rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 3px solid var(--deal);
  border-radius: var(--radius);
}

.how-item h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin: 0 0 0.4rem;
}

.how-item p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

/* List page filter */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.35rem;
}

.filter-bar a,
.filter-bar span {
  text-transform: uppercase;
  padding: 0.4rem 0.75rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink-soft);
  border-radius: var(--radius);
  text-decoration: none;
}

.filter-bar a:hover,
.filter-bar span.is-active {
  background: var(--deal);
  border-color: var(--deal);
  color: var(--white);
}

/* Inner pages */
.page-header {
  padding: 2rem 0 1.5rem;
  background: linear-gradient(135deg, #fff7ed, #fff1f2);
  border-bottom: 1px solid var(--line);
}

.page-header .section-label {
  color: var(--deal);
}

.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4vw, 2.35rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  margin: 0 0 0.4rem;
  line-height: 1.2;
}

.page-header p {
  margin: 0;
  max-width: 36em;
  color: var(--ink-soft);
}

.article-shell {
  padding: 2.5rem 0 1rem;
}

.article-body {
  max-width: 40rem;
}

.article-meta-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin-bottom: 1.35rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--mist);
}

.article-meta-bar .tag {
  text-transform: uppercase;
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--white);
  background: var(--deal);
  padding: 0.15rem 0.45rem;
  border-radius: 2px;
}

.article-body h2 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin: 1.85rem 0 0.65rem;
}

.article-body p {
  margin: 0 0 1rem;
  color: var(--ink-soft);
}

.article-body ul,
.article-body ol {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
  color: var(--ink-soft);
}

.article-body blockquote {
  margin: 1.35rem 0;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-left: 4px solid var(--deal);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.4;
  color: var(--ink);
  background: #fff7ed;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.article-nav {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.article-nav a {
  color: var(--ink-soft);
}

.article-nav a:hover {
  color: var(--deal);
}

/* Related / latest */
.article-more {
  padding: 2.75rem 0 3.25rem;
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.article-more-tabs {
  display: flex;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
}

.article-more-tab {
  appearance: none;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -1px;
  padding: 0.6rem 1rem 0.65rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: var(--mist);
  cursor: pointer;
}

.article-more-tab.is-active {
  color: var(--deal);
  border-bottom-color: var(--deal);
}

.article-more-panel[hidden] {
  display: none !important;
}

.article-more-panel.is-active {
  display: grid;
  gap: 0.75rem;
}

.related-card {
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  gap: 1rem;
  padding: 0.75rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: inherit;
  text-decoration: none;
}

.related-card:hover {
  border-color: #fda4af;
  color: inherit;
}

.related-card-media {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #f9fafb;
  border-radius: 2px;
}

.related-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin: 0 0 0.3rem;
  line-height: 1.3;
  color: var(--ink);
}

.related-card-excerpt {
  margin: 0 0 0.35rem;
  font-size: 0.84rem;
  color: var(--ink-soft);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.related-card-body time {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--mist);
}

.latest-list {
  list-style: none;
  margin: 0;
  padding: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.latest-list li {
  border-bottom: 1px solid var(--line);
}

.latest-list li:last-child {
  border-bottom: none;
}

.latest-list a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1rem;
  color: var(--ink);
  text-decoration: none;
}

.latest-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.3;
}

.latest-date {
  flex-shrink: 0;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--mist);
}

.latest-list a:hover {
  background: #fff1f2;
  color: var(--deal-deep);
}

@media (max-width: 575.98px) {
  .related-card {
    grid-template-columns: 5.5rem 1fr;
  }
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.55);
  padding: 2.5rem 0 1.85rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.25rem;
  align-items: flex-end;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--white);
}

.footer-brand .bang {
  color: #fb7185;
}

.footer-tag {
  margin: 0.3rem 0 0;
  font-size: 0.88rem;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.1rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-copy {
  margin: 0;
  width: 100%;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
}

/* Media list page (图文列表) */
.media-list-page .media-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.media-list-page .media-row {
  display: grid;
  grid-template-columns: minmax(8.5rem, 12rem) 1fr;
  gap: 1rem 1.2rem;
  align-items: stretch;
  padding: 0.8rem;
  border: 1px solid var(--line, #c9d0d9);
  background: var(--surface, #fafbfc);
  color: inherit;
  text-decoration: none;
  transition: border-color 0.2s, transform 0.2s;
}

.media-list-page a.media-row:hover {
  transform: translateY(-1px);
  color: inherit;
}

.media-list-page .media-thumb {
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #1a1f27;
}

.media-list-page .media-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.media-list-page a.media-row:hover .media-thumb img {
  transform: scale(1.04);
}

.media-list-page .media-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.media-list-page .media-cat {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 0.3rem;
  opacity: 0.85;
}

.media-list-page .media-title {
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 0.35rem;
}

.media-list-page .media-excerpt {
  margin: 0 0 0.4rem;
  font-size: 0.92rem;
  line-height: 1.55;
  opacity: 0.82;
}

.media-list-page .media-date {
  font-size: 0.78rem;
  opacity: 0.65;
}

.media-list-page .list-switch {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.35rem;
}

.media-list-page .list-switch a,
.media-list-page .list-switch span {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  font-size: 0.82rem;
  font-weight: 600;
  border: 1px solid var(--line, #c9d0d9);
  text-decoration: none;
}

.media-list-page .list-switch .is-active {
  border-color: currentColor;
}

@media (max-width: 575.98px) {
  .media-list-page .media-row {
    grid-template-columns: 6.25rem 1fr;
    gap: 0.75rem;
    padding: 0.55rem;
  }

  .media-list-page .media-title {
    font-size: 0.98rem;
  }

  .media-list-page .media-excerpt {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}

/* List view switch */
.list-switch {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.35rem;
}
.list-switch a,
.list-switch span {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  font-size: 0.82rem;
  font-weight: 600;
  border: 1px solid var(--line, #c9d0d9);
  text-decoration: none;
  color: inherit;
}
.list-switch .is-active {
  border-color: currentColor;
}
