/* ============================================
   今日吃瓜 - 主样式表
   CSS/ID前缀：jc- (JinriChigua)
   设计风格：新闻简报极简风
   主色调：报纸白(#FDFDFD) 标题黑(#1A1A1A) 重点红(#E50000)
   Mobile-First 响应式设计
   ============================================ */

/* --- CSS Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', 'Source Han Sans SC', 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  background-color: #FDFDFD;
  color: #1A1A1A;
  line-height: 1.8;
  min-height: 100vh;
}

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

a {
  color: #1A1A1A;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #E50000;
}

ul, ol {
  list-style: none;
}

/* --- Typography --- */
.jc-heading-serif {
  font-family: 'Source Han Serif SC', 'Noto Serif SC', 'SimSun', 'STSong', serif;
  font-weight: 700;
  color: #1A1A1A;
  line-height: 1.3;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Source Han Serif SC', 'Noto Serif SC', 'SimSun', 'STSong', serif;
  font-weight: 700;
  color: #1A1A1A;
  line-height: 1.3;
}

h1 { font-size: 1.75rem; margin-bottom: 1rem; }
h2 { font-size: 1.375rem; margin-bottom: 0.75rem; }
h3 { font-size: 1.125rem; margin-bottom: 0.5rem; }

p {
  margin-bottom: 1rem;
  text-align: justify;
}

/* --- Layout Container --- */
.jc-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* --- Paper Texture Background --- */
.jc-paper-bg {
  background-color: #FDFDFD;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
}

/* ============================================
   NAVIGATION
   ============================================ */
.jc-header {
  background-color: #FDFDFD;
  border-bottom: 1px solid #1A1A1A;
  padding: 0.75rem 0;
  position: relative;
  z-index: 100;
}

.jc-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.jc-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Source Han Serif SC', 'Noto Serif SC', serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: #1A1A1A;
  text-decoration: none;
}

.jc-logo-img {
  height: 36px;
  width: auto;
}

.jc-logo-dot {
  color: #E50000;
}

.jc-nav {
  display: none;
  width: 100%;
  padding-top: 0.75rem;
}

.jc-nav.jc-nav-open {
  display: block;
}

.jc-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.jc-nav-item {
  display: block;
}

.jc-nav-link {
  display: block;
  padding: 0.6rem 0;
  font-size: 0.9rem;
  color: #1A1A1A;
  border-bottom: 1px solid #eee;
  position: relative;
  transition: color 0.2s ease;
}

.jc-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #E50000;
  transition: width 0.3s ease;
}

.jc-nav-link:hover::after,
.jc-nav-link.jc-active::after {
  width: 100%;
}

.jc-nav-link:hover,
.jc-nav-link.jc-active {
  color: #E50000;
}

.jc-header-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.jc-date-display {
  font-size: 0.8rem;
  color: #666;
  white-space: nowrap;
  display: none;
}

.jc-search-box {
  display: none;
  align-items: center;
  border: 1px solid #ccc;
  padding: 0.25rem 0.5rem;
  border-radius: 2px;
}

.jc-search-input {
  border: none;
  outline: none;
  font-size: 0.85rem;
  background: transparent;
  width: 120px;
  font-family: inherit;
}

.jc-search-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  color: #1A1A1A;
  padding: 0;
}

/* Hamburger Menu */
.jc-hamburger {
  display: flex;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.jc-hamburger-line {
  width: 22px;
  height: 2px;
  background-color: #1A1A1A;
  transition: all 0.3s ease;
}

/* ============================================
   HERO SECTION - 今日头条
   ============================================ */
.jc-hero {
  padding: 2rem 0;
  border-bottom: 2px solid #1A1A1A;
}

.jc-hero-label {
  display: inline-block;
  background-color: #E50000;
  color: #fff;
  font-size: 0.75rem;
  padding: 0.2rem 0.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.jc-hero-title {
  font-size: 1.75rem;
  line-height: 1.25;
  margin-bottom: 1rem;
  font-family: 'Source Han Serif SC', 'Noto Serif SC', serif;
}

.jc-hero-excerpt {
  font-size: 1rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 1.25rem;
  max-width: 680px;
}

.jc-hero-image {
  width: 100%;
  margin-bottom: 1rem;
  border: 1px solid #eee;
}

.jc-read-more {
  display: inline-block;
  font-size: 0.9rem;
  color: #E50000;
  border-bottom: 1px solid #E50000;
  padding-bottom: 2px;
  transition: all 0.2s ease;
}

.jc-read-more:hover {
  color: #1A1A1A;
  border-color: #1A1A1A;
}

/* ============================================
   SECTION COMMON
   ============================================ */
.jc-section {
  padding: 2rem 0;
  border-bottom: 1px solid #ddd;
}

.jc-section-title {
  font-size: 1.25rem;
  font-family: 'Source Han Serif SC', 'Noto Serif SC', serif;
  padding-bottom: 0.5rem;
  margin-bottom: 1.25rem;
  border-bottom: 2px solid #E50000;
  display: inline-block;
}

/* ============================================
   要闻简报
   ============================================ */
.jc-briefing-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.jc-briefing-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid #eee;
}

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

.jc-briefing-dot {
  width: 8px;
  height: 8px;
  min-width: 8px;
  background-color: #E50000;
  border-radius: 50%;
  margin-top: 0.55rem;
}

.jc-briefing-link {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #1A1A1A;
}

.jc-briefing-link:hover {
  color: #E50000;
}

.jc-briefing-time {
  font-size: 0.75rem;
  color: #999;
  margin-top: 0.2rem;
}

/* ============================================
   热点追踪 - 左图右文
   ============================================ */
.jc-tracking-card {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.jc-tracking-image {
  width: 100%;
  border: 1px solid #eee;
  filter: grayscale(30%);
}

.jc-tracking-content {
  flex: 1;
  min-width: 0;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.jc-tracking-tag {
  display: inline-block;
  font-size: 0.7rem;
  color: #E50000;
  border: 1px solid #E50000;
  padding: 0.15rem 0.4rem;
  margin-bottom: 0.5rem;
}

/* ============================================
   深度评论
   ============================================ */
.jc-comment-card {
  background-color: #F5F5F5;
  padding: 1.5rem;
  border-left: 3px solid #E50000;
}

.jc-comment-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.jc-comment-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(100%);
}

.jc-comment-author {
  font-size: 0.9rem;
  font-weight: 700;
}

.jc-comment-role {
  font-size: 0.75rem;
  color: #888;
}

.jc-comment-quote {
  font-family: 'Source Han Serif SC', 'Noto Serif SC', serif;
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.8;
  color: #333;
  margin-bottom: 1rem;
}

/* ============================================
   图说新闻
   ============================================ */
.jc-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
}

.jc-gallery-main {
  grid-column: 1 / -1;
}

.jc-gallery-main img,
.jc-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
  border: 1px solid #eee;
  cursor: pointer;
  transition: filter 0.3s ease;
}

.jc-gallery-main img:hover,
.jc-gallery-thumb img:hover {
  filter: grayscale(0%);
}

.jc-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.jc-gallery-thumb {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.jc-gallery-caption {
  font-size: 0.8rem;
  color: #666;
  margin-top: 0.5rem;
  font-style: italic;
}

/* ============================================
   视频播报
   ============================================ */
.jc-video-wrapper {
  position: relative;
  width: 100%;
}

.jc-video-player {
  width: 100%;
  display: block;
  background: #000;
}

.jc-video-caption {
  font-size: 0.8rem;
  color: #666;
  margin-top: 0.5rem;
}

/* ============================================
   吃瓜群众热议
   ============================================ */
.jc-discussion-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.jc-discussion-card {
  display: flex;
  gap: 0.75rem;
  padding: 1rem;
  background-color: #FAFAFA;
  border: 1px solid #eee;
}

.jc-discussion-avatar {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.jc-discussion-name {
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.jc-discussion-text {
  font-size: 0.9rem;
  color: #444;
  line-height: 1.6;
}

.jc-discussion-meta {
  font-size: 0.7rem;
  color: #aaa;
  margin-top: 0.35rem;
}

/* ============================================
   每日一投 CTA
   ============================================ */
.jc-vote-cta {
  background-color: #E50000;
  color: #fff;
  padding: 2rem 1.5rem;
  text-align: center;
}

.jc-vote-cta-title {
  font-size: 1.25rem;
  font-family: 'Source Han Serif SC', 'Noto Serif SC', serif;
  margin-bottom: 0.75rem;
  color: #fff;
}

.jc-vote-cta-desc {
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  color: rgba(255,255,255,0.9);
}

.jc-vote-cta-btn {
  display: inline-block;
  background-color: #fff;
  color: #E50000;
  padding: 0.6rem 2rem;
  font-size: 0.95rem;
  font-weight: 700;
  border: 2px solid #fff;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.jc-vote-cta-btn:hover {
  background-color: transparent;
  color: #fff;
}

/* ============================================
   FOOTER
   ============================================ */
.jc-footer {
  background-color: #1A1A1A;
  color: #ccc;
  padding: 2.5rem 0 1.5rem;
}

.jc-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.jc-footer-title {
  font-size: 1rem;
  color: #fff;
  font-weight: 700;
  margin-bottom: 0.75rem;
  font-family: 'Source Han Serif SC', 'Noto Serif SC', serif;
}

.jc-footer-text {
  font-size: 0.85rem;
  line-height: 1.7;
  color: #aaa;
}

.jc-footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.jc-footer-link {
  font-size: 0.85rem;
  color: #aaa;
  transition: color 0.2s;
}

.jc-footer-link:hover {
  color: #E50000;
}

.jc-footer-honors {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.jc-footer-honor-item {
  font-size: 0.8rem;
  color: #aaa;
  padding-left: 1.25rem;
  position: relative;
}

.jc-footer-honor-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 6px;
  height: 6px;
  background-color: #E50000;
  border-radius: 50%;
}

.jc-footer-bottom {
  border-top: 1px solid #333;
  padding-top: 1.25rem;
  text-align: center;
}

.jc-footer-copyright {
  font-size: 0.75rem;
  color: #777;
  margin-bottom: 0.5rem;
}

.jc-footer-license {
  font-size: 0.7rem;
  color: #555;
}

/* ============================================
   INNER PAGE - 内页通用
   ============================================ */
.jc-page-header {
  padding: 1.5rem 0;
  border-bottom: 2px solid #1A1A1A;
  margin-bottom: 2rem;
}

.jc-breadcrumb {
  font-size: 0.8rem;
  color: #888;
  margin-bottom: 0.75rem;
}

.jc-breadcrumb a {
  color: #888;
}

.jc-breadcrumb a:hover {
  color: #E50000;
}

.jc-breadcrumb-sep {
  margin: 0 0.35rem;
}

.jc-article-body {
  max-width: 780px;
  margin: 0 auto;
  padding-bottom: 2rem;
}

.jc-article-body p {
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 1.25rem;
  color: #333;
}

.jc-article-body h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid #eee;
}

.jc-article-body h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.jc-article-image {
  margin: 1.5rem 0;
  text-align: center;
}

.jc-article-image img {
  max-width: 100%;
  border: 1px solid #eee;
  margin: 0 auto;
}

.jc-article-image figcaption {
  font-size: 0.8rem;
  color: #888;
  margin-top: 0.5rem;
  font-style: italic;
}

.jc-article-meta {
  font-size: 0.8rem;
  color: #888;
  margin-bottom: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.jc-article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid #eee;
}

.jc-tag {
  font-size: 0.75rem;
  color: #666;
  border: 1px solid #ddd;
  padding: 0.2rem 0.6rem;
}

/* Related Articles */
.jc-related {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 2px solid #1A1A1A;
}

.jc-related-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.jc-related-item {
  display: flex;
  gap: 0.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #eee;
}

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

.jc-related-thumb {
  width: 100px;
  min-width: 100px;
  height: 70px;
  object-fit: cover;
  filter: grayscale(30%);
}

.jc-related-title {
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.4;
}

/* ============================================
   投票站
   ============================================ */
.jc-poll-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem 0;
}

.jc-poll-topic {
  text-align: center;
  margin-bottom: 2rem;
}

.jc-poll-question {
  font-size: 1.25rem;
  font-family: 'Source Han Serif SC', 'Noto Serif SC', serif;
  margin-bottom: 1rem;
}

.jc-poll-sides {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.jc-poll-side {
  padding: 1rem;
  border: 1px solid #eee;
  text-align: center;
}

.jc-poll-side-label {
  font-size: 0.8rem;
  color: #888;
  margin-bottom: 0.5rem;
}

.jc-poll-side-text {
  font-size: 0.9rem;
  line-height: 1.6;
}

.jc-poll-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.jc-poll-btn {
  padding: 0.75rem 2.5rem;
  font-size: 1rem;
  font-weight: 700;
  border: 2px solid;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}

.jc-poll-btn-support {
  background-color: #E50000;
  color: #fff;
  border-color: #E50000;
}

.jc-poll-btn-support:hover {
  background-color: #c00;
}

.jc-poll-btn-oppose {
  background-color: #fff;
  color: #1A1A1A;
  border-color: #1A1A1A;
}

.jc-poll-btn-oppose:hover {
  background-color: #1A1A1A;
  color: #fff;
}

.jc-poll-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.jc-poll-result {
  margin-top: 1.5rem;
}

.jc-poll-bar-wrapper {
  margin-bottom: 1rem;
}

.jc-poll-bar-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  margin-bottom: 0.35rem;
}

.jc-poll-bar-track {
  height: 24px;
  background-color: #eee;
  position: relative;
  overflow: hidden;
}

.jc-poll-bar-fill {
  height: 100%;
  transition: width 1s ease;
  width: 0;
}

.jc-poll-bar-fill-support {
  background-color: #E50000;
}

.jc-poll-bar-fill-oppose {
  background-color: #1A1A1A;
}

.jc-poll-message {
  text-align: center;
  font-size: 0.9rem;
  color: #E50000;
  font-weight: 700;
  margin-top: 1rem;
  display: none;
}

/* ============================================
   APP下载页
   ============================================ */
.jc-app-hero {
  text-align: center;
  padding: 3rem 0;
}

.jc-app-mockup {
  max-width: 280px;
  margin: 0 auto 2rem;
  border: 1px solid #eee;
}

.jc-app-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  margin-top: 1.5rem;
}

.jc-app-btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border: 2px solid #1A1A1A;
  font-size: 0.95rem;
  font-weight: 600;
  color: #1A1A1A;
  text-align: center;
  min-width: 220px;
  transition: all 0.2s ease;
  text-decoration: none;
}

.jc-app-btn:hover {
  background-color: #1A1A1A;
  color: #fff;
}

.jc-app-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding: 2rem 0;
}

.jc-app-feature {
  text-align: center;
  padding: 1.5rem;
  border: 1px solid #eee;
}

.jc-app-feature-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.jc-app-feature-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.jc-app-feature-desc {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.6;
}

/* ============================================
   FAQ Section (for Schema)
   ============================================ */
.jc-faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.jc-faq-item {
  border-bottom: 1px solid #eee;
  padding: 1rem 0;
}

.jc-faq-question {
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.jc-faq-question::after {
  content: '+';
  font-size: 1.2rem;
  color: #E50000;
  transition: transform 0.2s;
}

.jc-faq-question.jc-faq-open::after {
  content: '-';
}

.jc-faq-answer {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding-top: 0;
}

.jc-faq-answer.jc-faq-show {
  max-height: 500px;
  padding-top: 0.75rem;
}

/* ============================================
   NEWS LIST (栏目页通用)
   ============================================ */
.jc-news-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.jc-news-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #eee;
}

.jc-news-card:last-child {
  border-bottom: none;
}

.jc-news-card-image {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  filter: grayscale(20%);
  border: 1px solid #eee;
}

.jc-news-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.4;
}

.jc-news-card-excerpt {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.7;
}

.jc-news-card-meta {
  font-size: 0.75rem;
  color: #999;
}

/* ============================================
   Lightbox (图说新闻)
   ============================================ */
.jc-lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.jc-lightbox.jc-lightbox-open {
  display: flex;
}

.jc-lightbox img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   320px (base) -> 768px -> 1024px -> 1440px
   ============================================ */

/* --- 768px: Tablet --- */
@media (min-width: 768px) {
  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.25rem; }

  .jc-hamburger { display: none; }

  .jc-nav {
    display: block;
    width: auto;
    padding-top: 0;
  }

  .jc-nav-list {
    flex-direction: row;
    gap: 0;
  }

  .jc-nav-link {
    padding: 0.4rem 0.75rem;
    border-bottom: none;
  }

  .jc-nav-link::after {
    bottom: -2px;
  }

  .jc-date-display { display: block; }
  .jc-search-box { display: flex; }

  .jc-hero-title { font-size: 2.25rem; }

  .jc-tracking-card {
    flex-direction: row;
    align-items: flex-start;
  }

  .jc-tracking-card > picture {
    width: 40%;
    min-width: 40%;
    max-width: 40%;
    flex-shrink: 0;
  }

  .jc-tracking-image {
    width: 100%;
  }

  .jc-gallery {
    grid-template-columns: 2fr 1fr;
  }

  .jc-footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .jc-news-card {
    flex-direction: row;
  }

  .jc-news-card-image {
    width: 240px;
    min-width: 240px;
    aspect-ratio: 4/3;
  }

  .jc-related-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .jc-app-buttons {
    flex-direction: row;
    justify-content: center;
  }

  .jc-app-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* --- 1024px: Desktop --- */
@media (min-width: 1024px) {
  h1 { font-size: 2.5rem; }

  .jc-container { padding: 0 2rem; }

  .jc-hero-title { font-size: 2.75rem; }

  .jc-hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
  }

  .jc-footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .jc-app-features {
    grid-template-columns: repeat(3, 1fr);
  }

  .jc-related-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* --- 1440px: Large Desktop --- */
@media (min-width: 1440px) {
  .jc-container { max-width: 1320px; }

  h1 { font-size: 3rem; }

  .jc-hero-title { font-size: 3rem; }
}

/* --- Print styles --- */
@media print {
  .jc-header, .jc-footer, .jc-vote-cta { display: none; }
  body { background: #fff; color: #000; }
}
