/* ============================================
   NEWSLETTER PAGE STYLES — cv.org.tr
   ============================================ */

/* --- BASE & BODY --- */
.newsletter-body {
  min-height: 100vh;
  height: auto;
  overflow: auto;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #f0f2f5;
  color: #1a1a2e;
}

/* --- NAVBAR --- */
.newsletter-navbar {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 0.9rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.navbar-brand-custom {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
.brand-icon {
  font-size: 1.5rem;
}
.brand-text {
  font-size: 1.25rem;
  font-weight: 700;
  background: linear-gradient(135deg, #0f172a 0%, #3b82f6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.nav-link-custom {
  text-decoration: none;
  color: #64748b;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.25s ease;
  padding: 6px 12px;
  border-radius: 8px;
}
.nav-link-custom:hover,
.nav-link-custom.active {
  color: #0f172a;
  background: rgba(15, 23, 42, 0.05);
}
.btn-nav-cta {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border: none;
  color: white;
  padding: 8px 20px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.2);
}
.btn-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.3);
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  color: white;
}

/* --- HERO SECTION --- */
.newsletter-hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 40%, #0f172a 100%);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.newsletter-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.newsletter-hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(59, 130, 246, 0.15);
  color: #93c5fd;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(59, 130, 246, 0.2);
}
.hero-title {
  color: #f8fafc;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.2rem;
  letter-spacing: -0.02em;
}
.hero-gradient-text {
  background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 50%, #f472b6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-subtitle {
  color: #94a3b8;
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 2rem;
}
.hero-stats {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem 2.5rem;
  border-radius: 16px;
  backdrop-filter: blur(10px);
}
.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.stat-number {
  font-size: 1.4rem;
  font-weight: 700;
  color: #f8fafc;
}
.stat-label {
  font-size: 0.75rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2px;
}
.hero-stat-divider {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.12);
}

/* --- CATEGORY FILTER --- */
.category-filter-section {
  padding: 2rem 0 0.5rem;
  background: #f0f2f5;
}
.filter-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.filter-chip {
  text-decoration: none;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #475569;
  background: white;
  border: 1px solid #e2e8f0;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.filter-chip:hover {
  color: #0f172a;
  border-color: #94a3b8;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transform: translateY(-1px);
}
.filter-chip.active {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: white;
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.25);
}

/* --- ARTICLES GRID --- */
.articles-section {
  padding: 2rem 0 4rem;
}
.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
}
.article-card {
  text-decoration: none;
  color: inherit;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.article-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.card-inner {
  background: white;
  border-radius: 16px;
  padding: 1.75rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.card-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6, #f472b6);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.article-card:hover .card-inner {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  border-color: transparent;
}
.article-card:hover .card-inner::before {
  opacity: 1;
}
.article-card.featured .card-inner {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #f8fafc;
  border: none;
}
.article-card.featured .card-inner::before {
  opacity: 1;
}
.article-card.featured .card-summary {
  color: #94a3b8;
}
.article-card.featured .meta-author,
.article-card.featured .meta-date {
  color: #64748b;
}
.article-card.featured .card-category-badge {
  background: rgba(59, 130, 246, 0.2);
  color: #93c5fd;
}

.card-category-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  background: rgba(59, 130, 246, 0.08);
  color: #3b82f6;
  margin-bottom: 1rem;
  width: fit-content;
}
.card-title {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.card-summary {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 1.25rem;
}
.card-footer-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}
.card-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.meta-author {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  color: #334155;
}
.author-avatar {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  flex-shrink: 0;
}
.meta-date {
  font-size: 0.75rem;
  color: #94a3b8;
  padding-left: 28px;
}
.read-more-arrow {
  font-size: 1.2rem;
  color: #94a3b8;
  transition: all 0.3s ease;
}
.article-card:hover .read-more-arrow {
  color: #3b82f6;
  transform: translateX(4px);
}
.article-card.featured .card-footer-info {
  border-top-color: rgba(255, 255, 255, 0.08);
}
.article-card.featured .meta-author {
  color: #cbd5e1;
}
.article-card.featured .read-more-arrow {
  color: #64748b;
}
.article-card.featured:hover .read-more-arrow {
  color: #93c5fd;
}

/* --- EMPTY STATE --- */
.empty-state {
  text-align: center;
  padding: 5rem 2rem;
}
.empty-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}
.empty-state h3 {
  color: #334155;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.empty-state p {
  color: #64748b;
}

/* --- CTA SECTION --- */
.newsletter-cta {
  padding: 0 0 4rem;
}
.cta-card {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  border-radius: 20px;
  padding: 3.5rem;
  position: relative;
  overflow: hidden;
}
.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.cta-content h2 {
  color: white;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.cta-content p {
  color: #94a3b8;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}
.btn-cta-action {
  padding: 12px 32px;
  font-weight: 600;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(255, 255, 255, 0.15);
  color: #0f172a !important;
}
.btn-cta-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.25);
}
.cta-decoration {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
}
.cta-circle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.12), transparent 70%);
}
.cta-circle:first-child {
  width: 300px;
  height: 300px;
  top: -100px;
  right: -50px;
}
.cta-circle-2 {
  width: 200px;
  height: 200px;
  bottom: -80px;
  left: -40px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.1), transparent 70%) !important;
}

/* --- FOOTER --- */
.newsletter-footer {
  background: white;
  border-top: 1px solid #e2e8f0;
  padding: 2rem 0;
}
.footer-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: #64748b;
  font-size: 0.85rem;
  margin-bottom: 0.25rem;
}
.footer-logo-link {
  display: inline-flex;
  align-items: center;
}
.footer-logo {
  max-height: 20px;
  width: auto;
}
.footer-copy {
  color: #94a3b8;
  font-size: 0.75rem;
  margin-bottom: 0;
}

/* ============================================
   DETAIL PAGE STYLES
   ============================================ */

.article-detail-section {
  padding: 2rem 0 4rem;
}
.article-detail-wrapper {
  max-width: 780px;
  margin: 0 auto;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #64748b;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 10px;
  transition: all 0.25s ease;
  margin-bottom: 2rem;
  background: white;
  border: 1px solid #e2e8f0;
}
.back-link:hover {
  color: #0f172a;
  background: #f8fafc;
  transform: translateX(-4px);
}
.back-arrow {
  font-size: 1.1rem;
  transition: transform 0.25s ease;
}
.back-link:hover .back-arrow {
  transform: translateX(-3px);
}

.article-header {
  margin-bottom: 2.5rem;
}
.article-category-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
  color: #3b82f6;
  margin-bottom: 1rem;
}
.article-title {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.25;
  color: #0f172a;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.article-summary-text {
  font-size: 1.15rem;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.article-meta-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: white;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
}
.meta-author-detail {
  display: flex;
  align-items: center;
  gap: 10px;
}
.author-avatar-lg {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  flex-shrink: 0;
}
.author-name {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: #0f172a;
}
.publish-date {
  display: block;
  font-size: 0.78rem;
  color: #94a3b8;
}
.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.tag-pill {
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 500;
  background: #f1f5f9;
  color: #475569;
  border: 1px solid #e2e8f0;
}

/* --- ARTICLE CONTENT --- */
.article-content {
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  font-size: 1.05rem;
  line-height: 1.85;
  color: #334155;
}
.article-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #0f172a;
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.article-content p {
  margin-bottom: 1.25rem;
}
.article-content ul,
.article-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}
.article-content li {
  margin-bottom: 0.6rem;
}
.article-content strong {
  color: #0f172a;
}

/* --- DIVIDER --- */
.article-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
  margin: 3rem 0;
}

/* --- RELATED ARTICLES --- */
.related-section {
  margin-bottom: 3rem;
}
.related-heading {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.2rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
}
.related-icon {
  font-size: 1.3rem;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}
.related-card {
  text-decoration: none;
  color: inherit;
  background: white;
  border-radius: 14px;
  padding: 1.5rem;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.related-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: transparent;
}
.related-category {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #3b82f6;
  margin-bottom: 0.5rem;
}
.related-title {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.4;
  color: #0f172a;
  margin-bottom: 0.5rem;
}
.related-summary {
  font-size: 0.8rem;
  color: #64748b;
  line-height: 1.5;
  flex-grow: 1;
  margin-bottom: 0.75rem;
}
.related-read-more {
  font-size: 0.8rem;
  font-weight: 600;
  color: #3b82f6;
  transition: transform 0.25s ease;
  display: inline-block;
}
.related-card:hover .related-read-more {
  transform: translateX(4px);
}

/* --- DETAIL CTA BANNER --- */
.detail-cta-banner {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-radius: 16px;
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cta-banner-content h3 {
  color: white;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.cta-banner-content p {
  color: #94a3b8;
  font-size: 0.9rem;
  margin: 0;
}
.btn-cta-detail {
  padding: 10px 24px;
  font-weight: 600;
  border-radius: 10px;
  font-size: 0.9rem;
  white-space: nowrap;
  color: #0f172a !important;
  transition: all 0.3s ease;
}
.btn-cta-detail:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 255, 255, 0.2);
}

/* ============================================
   RESPONSIVE — ENHANCED MOBILE
   ============================================ */

/* Smooth scroll for all */
html {
  scroll-behavior: smooth;
}

/* Tablet */
@media (max-width: 992px) {
  .newsletter-hero {
    padding: 4rem 0 3rem;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .articles-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
  .cta-card {
    padding: 2.5rem 2rem;
  }
  .article-detail-wrapper {
    max-width: 100%;
    padding: 0 1rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .newsletter-hero {
    padding: 3rem 0 2.5rem;
  }
  .hero-title {
    font-size: 1.85rem;
    padding: 0 0.5rem;
  }
  .hero-subtitle {
    font-size: 0.9rem;
    padding: 0 1rem;
  }
  .hero-badge {
    font-size: 0.78rem;
    padding: 6px 16px;
  }
  .hero-stats {
    gap: 1rem;
    padding: 0.75rem 1.25rem;
  }
  .stat-number {
    font-size: 1.15rem;
  }
  .stat-label {
    font-size: 0.68rem;
  }
  .hero-stat-divider {
    height: 24px;
  }
  .articles-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .articles-section {
    padding: 1.5rem 0 3rem;
  }
  .card-inner {
    padding: 1.25rem;
  }
  .card-title {
    font-size: 1.1rem;
  }
  .card-summary {
    font-size: 0.85rem;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* Category filter horizontal scroll */
  .category-filter-section {
    padding: 1.25rem 0 0.25rem;
  }
  .filter-wrapper {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding: 0 1rem 10px;
    gap: 6px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .filter-wrapper::-webkit-scrollbar {
    display: none;
  }
  .filter-chip {
    padding: 7px 16px;
    font-size: 0.8rem;
    flex-shrink: 0;
  }

  /* Detail page mobile */
  .article-title {
    font-size: 1.6rem;
    word-break: break-word;
  }
  .article-summary-text {
    font-size: 1rem;
  }
  .article-content {
    padding: 1.25rem;
    font-size: 0.92rem;
    line-height: 1.75;
    border-radius: 12px;
  }
  .article-content h3 {
    font-size: 1.15rem;
  }
  .article-content ul,
  .article-content ol {
    padding-left: 1.2rem;
  }
  .article-meta-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
  }
  .article-tags {
    width: 100%;
  }
  .related-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .related-card {
    padding: 1.15rem;
  }
  .detail-cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    border-radius: 12px;
  }
  .cta-card {
    padding: 2rem 1.5rem;
    border-radius: 14px;
  }
  .cta-content h2 {
    font-size: 1.3rem;
  }
  .cta-content p {
    font-size: 0.9rem;
  }
  .btn-cta-action {
    padding: 10px 24px;
    font-size: 0.9rem;
    width: 100%;
  }
  .back-link {
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
  }
  .article-detail-section {
    padding: 1.5rem 0 3rem;
  }

  /* Navbar mobile */
  .newsletter-navbar .container > .d-flex {
    gap: 8px;
  }
  .btn-nav-cta {
    padding: 6px 14px;
    font-size: 0.78rem;
  }
  .nav-link-custom {
    padding: 5px 8px;
    font-size: 0.8rem;
  }
  .brand-text {
    font-size: 1.1rem;
  }

  /* Footer mobile */
  .newsletter-footer {
    padding: 1.5rem 0;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .hero-title {
    font-size: 1.5rem;
  }
  .hero-subtitle {
    font-size: 0.85rem;
  }
  .hero-stats {
    flex-direction: column;
    gap: 0.4rem;
    padding: 0.8rem 1.2rem;
  }
  .hero-stat-divider {
    width: 40px;
    height: 1px;
  }
  .card-inner {
    padding: 1rem;
  }
  .card-category-badge {
    font-size: 0.65rem;
    padding: 3px 10px;
  }
  .card-title {
    font-size: 1rem;
  }
  .article-title {
    font-size: 1.35rem;
  }
  .article-content {
    padding: 1rem;
    font-size: 0.88rem;
  }
  .newsletter-navbar {
    padding: 0.65rem 0;
  }
  .btn-nav-cta {
    padding: 5px 12px;
    font-size: 0.75rem;
  }
  .cta-card {
    padding: 1.5rem 1rem;
  }
  .cta-content h2 {
    font-size: 1.15rem;
  }
}

/* Safe area for notched devices */
@supports (padding: max(0px)) {
  .newsletter-navbar {
    padding-left: max(0.9rem, env(safe-area-inset-left));
    padding-right: max(0.9rem, env(safe-area-inset-right));
  }
  .newsletter-footer {
    padding-bottom: max(2rem, env(safe-area-inset-bottom));
  }
}

/* Touch-friendly targets */
@media (hover: none) and (pointer: coarse) {
  .filter-chip {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
  }
  .article-card .card-inner {
    transition: none;
  }
  .article-card:active .card-inner {
    transform: scale(0.98);
    transition: transform 0.1s ease;
  }
  .back-link {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
  .related-card {
    min-height: 44px;
  }
}
