/* ═══════════════════════════════════
   INNER PAGES SHARED STYLES
═══════════════════════════════════ */

/* Page hero (non-home) */
.page-hero {
  padding: calc(var(--header-height) + 80px) 0 80px;
  background: linear-gradient(135deg, #061E2D 0%, #0A5C91 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 80px;
  background: white;
  clip-path: ellipse(60% 100% at 50% 100%);
}

.page-hero h1 {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  color: white;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-3);
}

.page-hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  max-width: 600px;
  margin: 0 auto;
}

.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: var(--space-3);
}

.page-hero .breadcrumb a { color: rgba(255,255,255,0.7); transition: color var(--transition-fast); }
.page-hero .breadcrumb a:hover { color: white; }

/* ═══════════════════════════════════
   IMPACT DASHBOARD
═══════════════════════════════════ */

.dashboard-section { background: #F8FAFC; }

.dashboard-top-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}

.metric-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: all var(--transition-base);
}

.metric-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.metric-card-accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  border-radius: 0 var(--radius-lg) 0 80px;
  opacity: 0.08;
}

.metric-card:nth-child(1) .metric-card-accent { background: var(--ocean-blue); }
.metric-card:nth-child(2) .metric-card-accent { background: var(--fresh-green); }
.metric-card:nth-child(3) .metric-card-accent { background: #F77F00; }
.metric-card:nth-child(4) .metric-card-accent { background: #9B5DE5; }

.metric-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 6px;
}

.metric-value {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
}

.metric-change {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: var(--radius-full);
}

.metric-change.up { background: rgba(67, 196, 99,0.1); color: var(--forest-green); }
.metric-change.down { background: rgba(239,68,68,0.1); color: #dc2626; }

.dashboard-charts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}

.chart-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.chart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-4);
}

.chart-header h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
}

.chart-period {
  display: flex;
  gap: 4px;
}

.chart-period button {
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  transition: all var(--transition-fast);
}

.chart-period button.active {
  background: var(--gradient-primary);
  color: white;
}

canvas { max-width: 100%; }

@media (max-width: 1024px) {
  .dashboard-top-metrics { grid-template-columns: repeat(2, 1fr); }
  .dashboard-charts { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════
   SHOP
═══════════════════════════════════ */

.shop-section { background: #F8FAFC; }

.shop-filters {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-6);
  flex-wrap: wrap;
}

.filter-btn {
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  border: 1.5px solid var(--border-color);
  background: white;
  transition: all var(--transition-fast);
}

.filter-btn.active, .filter-btn:hover {
  background: var(--gradient-primary);
  color: white;
  border-color: transparent;
}

.shop-search {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-left: auto;
}

.shop-search-input {
  padding: 10px 18px;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-full);
  font-size: 14px;
  width: 240px;
  outline: none;
  transition: all var(--transition-fast);
}

.shop-search-input:focus {
  border-color: var(--ocean-blue);
  width: 300px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
}

.product-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-card);
  transition: all var(--transition-base);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.product-image-wrap {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--light-sand);
}

.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-image-wrap img { transform: scale(1.06); }

.product-badges {
  position: absolute;
  top: var(--space-2);
  left: var(--space-2);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.product-badge {
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
}

.product-badge.new { background: var(--ocean-blue); color: white; }
.product-badge.sale { background: #F77F00; color: white; }
.product-badge.eco { background: var(--fresh-green); color: white; }

.product-quick-view {
  position: absolute;
  bottom: var(--space-2);
  left: var(--space-2);
  right: var(--space-2);
  background: rgba(6, 30, 45,0.85);
  backdrop-filter: blur(12px);
  color: white;
  text-align: center;
  padding: 10px;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 600;
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--transition-base);
  cursor: pointer;
}

.product-card:hover .product-quick-view {
  opacity: 1;
  transform: translateY(0);
}

.product-wishlist {
  position: absolute;
  top: var(--space-2);
  right: var(--space-2);
  width: 36px;
  height: 36px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
  opacity: 0;
}

.product-card:hover .product-wishlist { opacity: 1; }
.product-wishlist:hover { background: #FF4B4B; color: white; transform: scale(1.1); }
.product-wishlist svg { width: 16px; height: 16px; }

.product-body { padding: var(--space-3); }

.product-category {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--ocean-blue);
  margin-bottom: 4px;
}

.product-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
  line-height: 1.4;
}

.product-eco-impact {
  font-size: 12px;
  color: var(--forest-green);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: var(--space-2);
}

.product-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-price {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.product-price-old {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: line-through;
  font-weight: 400;
}

.btn-add-cart {
  width: 36px;
  height: 36px;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all var(--transition-base);
  flex-shrink: 0;
}

.btn-add-cart:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 16px rgba(10, 92, 145,0.35);
}

.btn-add-cart svg { width: 18px; height: 18px; }

@media (max-width: 1024px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .product-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════
   GET INVOLVED
═══════════════════════════════════ */

.involve-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  margin-bottom: var(--space-10);
}

.involve-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/4;
  cursor: pointer;
}

.involve-card-bg {
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease;
}

.involve-card:hover .involve-card-bg { transform: scale(1.06); }

.involve-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(6, 30, 45,0.9) 0%, rgba(6, 30, 45,0.2) 60%, transparent 100%);
}

.involve-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-5);
}

.involve-card-icon {
  width: 56px;
  height: 56px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-3);
  transition: all var(--transition-base);
}

.involve-card:hover .involve-card-icon {
  background: var(--gradient-primary);
  border-color: transparent;
}

.involve-card-icon svg { width: 26px; height: 26px; color: white; }

.involve-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: white;
  margin-bottom: var(--space-2);
  letter-spacing: -0.01em;
}

.involve-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin-bottom: var(--space-3);
}

.involve-card .btn {
  padding: 10px 20px;
  font-size: 13px;
}

/* Volunteer form */
.volunteer-form-section { background: var(--light-sand); }

.volunteer-form-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-8);
  align-items: start;
}

.form-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}

.form-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: var(--space-5);
}

.form-group {
  margin-bottom: var(--space-4);
}

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 13px 18px;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  font-size: 15px;
  font-family: inherit;
  color: var(--text-primary);
  background: white;
  transition: all var(--transition-fast);
  outline: none;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--ocean-blue);
  box-shadow: 0 0 0 4px rgba(10, 92, 145,0.1);
}

.form-textarea { resize: vertical; min-height: 120px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3); }

/* Donation section */
.donation-amounts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2);
  margin-bottom: var(--space-3);
}

.donation-amount-btn {
  padding: 14px;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  background: white;
  transition: all var(--transition-fast);
  text-align: center;
}

.donation-amount-btn.active, .donation-amount-btn:hover {
  border-color: var(--ocean-blue);
  background: rgba(10, 92, 145,0.05);
  color: var(--ocean-blue);
}

@media (max-width: 1024px) {
  .involve-options { grid-template-columns: 1fr 1fr; }
  .volunteer-form-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .involve-options { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════
   MISSION PAGE
═══════════════════════════════════ */

.timeline-section { background: white; }

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--ocean-blue), var(--fresh-green));
  transform: translateX(-50%);
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  margin-bottom: var(--space-8);
  position: relative;
}

.timeline-item:nth-child(even) .timeline-content { grid-column: 2; }
.timeline-item:nth-child(even) .timeline-meta { grid-column: 1; grid-row: 1; text-align: right; }

.timeline-dot {
  position: absolute;
  left: 50%;
  top: 24px;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  background: var(--gradient-primary);
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: 0 0 0 4px rgba(10, 92, 145,0.15);
  z-index: 1;
}

.timeline-meta {
  padding-top: 18px;
  text-align: right;
}

.timeline-year {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.timeline-content {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-card);
}

.timeline-content h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: var(--space-2);
}

.timeline-content p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Team section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
}

.team-card {
  text-align: center;
  transition: transform var(--transition-base);
}

.team-card:hover { transform: translateY(-8px); }

.team-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto var(--space-3);
  border: 3px solid white;
  box-shadow: var(--shadow-md);
  position: relative;
}

.team-avatar img { width: 100%; height: 100%; object-fit: cover; }

.team-avatar-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  font-weight: 800;
  background: var(--gradient-primary);
  color: white;
}

.team-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.team-role {
  font-size: 13px;
  color: var(--ocean-blue);
  font-weight: 600;
  margin-bottom: var(--space-2);
}

.team-bio {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 1024px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .team-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════
   NEWS PAGE
═══════════════════════════════════ */

.news-page-section { background: white; }

.news-categories {
  display: flex;
  gap: var(--space-2);
  margin-bottom: var(--space-6);
  flex-wrap: wrap;
}

.news-featured-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: var(--space-5);
  margin-bottom: var(--space-5);
}

.news-featured-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  aspect-ratio: 16/10;
  cursor: pointer;
}

.news-featured-card-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.news-featured-card:hover .news-featured-card-bg { transform: scale(1.04); }

.news-featured-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(6, 30, 45,0.92) 0%, rgba(6, 30, 45,0.3) 60%, transparent 100%);
}

.news-featured-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-5);
}

.news-featured-card-content h2 {
  font-size: 26px;
  font-weight: 700;
  color: white;
  margin: var(--space-2) 0;
  line-height: 1.3;
}

.news-featured-card-content p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

.news-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.news-sidebar-card {
  display: flex;
  gap: var(--space-3);
  padding: var(--space-3);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  background: white;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.news-sidebar-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.news-sidebar-card-img {
  width: 90px;
  height: 70px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
  background: var(--light-sand);
}

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

.news-sidebar-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.4;
  margin-bottom: 4px;
}

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

/* ═══════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-8);
  align-items: start;
}

.contact-info { }

.contact-info-item {
  display: flex;
  gap: var(--space-3);
  padding: var(--space-4);
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  margin-bottom: var(--space-3);
  transition: all var(--transition-base);
}

.contact-info-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  background: var(--gradient-card);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg { width: 22px; height: 22px; color: var(--ocean-blue); }

.contact-info-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.contact-info-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
}

#contact-map {
  width: 100%;
  height: 280px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: var(--space-4);
}

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

/* ═══════════════════════════════════
   COMMUNITY PAGE
═══════════════════════════════════ */

.community-hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}

.community-stat-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  text-align: center;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-card);
}

.community-feed-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: var(--space-5);
  align-items: start;
}

.activity-feed {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.activity-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-card);
}

.activity-header {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-3);
}

.activity-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.activity-avatar-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  background: var(--gradient-primary);
  color: white;
}

.activity-meta {
  flex: 1;
}

.activity-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
}

.activity-time {
  font-size: 12px;
  color: var(--text-muted);
}

.activity-image {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: var(--space-3);
  background: var(--light-sand);
}

.activity-text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-3);
}

.activity-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding-top: var(--space-2);
  border-top: 1px solid var(--border-color);
}

.activity-action-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  transition: color var(--transition-fast);
  cursor: pointer;
}

.activity-action-btn:hover { color: var(--ocean-blue); }
.activity-action-btn svg { width: 16px; height: 16px; }

/* Leaderboard sidebar */
.leaderboard-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-card);
  position: sticky;
  top: 90px;
}

.leaderboard-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: var(--space-4);
}

.leaderboard-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) 0;
  border-bottom: 1px solid var(--border-color);
}

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

.leaderboard-rank {
  width: 24px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-muted);
  text-align: center;
}

.leaderboard-item:nth-child(1) .leaderboard-rank { color: #F59E0B; }
.leaderboard-item:nth-child(2) .leaderboard-rank { color: #9CA3AF; }
.leaderboard-item:nth-child(3) .leaderboard-rank { color: #92400E; }

.leaderboard-name {
  flex: 1;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.leaderboard-score {
  font-size: 13px;
  font-weight: 700;
  color: var(--ocean-blue);
}

@media (max-width: 1024px) {
  .community-feed-grid { grid-template-columns: 1fr; }
  .leaderboard-card { position: static; }
  .community-hero-stats { grid-template-columns: repeat(2, 1fr); }
}
