/* Resources page: Venus-style hero + 2x2 card grid, mobile responsive */

.resources-page .site-header {
  background: #fff;
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}

/* Hero: Venus dark gradient */
.resources-hero {
  background: linear-gradient(135deg, #0f2d3a 0%, #1a3a52 50%, #2c5f7a 100%);
  color: #fff;
  padding: clamp(3rem, 8vw, 5rem) 24px;
  text-align: center;
}

.resources-hero-inner {
  max-width: 720px;
  margin: 0 auto;
}

.resources-hero-title {
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 700;
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}

.resources-hero-subtitle {
  font-size: clamp(1rem, 2.2vw, 1.125rem);
  opacity: 0.92;
  line-height: 1.5;
  margin: 0;
}

/* Grid section */
.resources-grid-section {
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  background: #fff;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.resources-card {
  display: block;
  padding: 1.5rem 1.5rem 1.75rem;
  background: #fff;
  border: 1px solid #e5e8eb;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.resources-card:hover {
  transform: translateY(-4px);
  border-color: #2bb673;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
  text-decoration: none;
  color: inherit;
}

.resources-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a202c;
  margin: 0 0 0.5rem;
}

.resources-card-desc {
  font-size: 0.9375rem;
  color: #6b7280;
  line-height: 1.45;
  margin: 0 0 0.75rem;
}

.resources-card-cta {
  font-size: 0.9375rem;
  font-weight: 500;
  color: #1f7a6b;
}

.resources-card:hover .resources-card-cta {
  color: #2bb673;
}

.placeholder-intro {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: #4b5563;
}
.placeholder-intro a {
  color: var(--color-primary, #1abc9c);
  font-weight: 500;
}

/* Anchor sections (for #articles, #videos, #whitepapers, #contact) */
.resources-anchor-section {
  padding: clamp(2rem, 5vw, 3rem) 0;
  scroll-margin-top: 1rem;
}
.resources-anchor-section .container {
  max-width: var(--container-max, 1200px);
  margin: 0 auto;
  padding: 0 24px;
}
.resources-anchor-heading {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a202c;
  margin: 0 0 0.75rem;
}
.resources-anchor-desc {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: #4b5563;
}
.resources-anchor-desc a {
  color: var(--color-primary, #1abc9c);
  font-weight: 500;
}

/* Mobile: single column, reduced padding */
@media (max-width: 768px) {
  .resources-hero {
    padding: 2.5rem 16px;
  }

  .resources-grid-section .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .resources-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .resources-card {
    padding: 1.25rem 1.25rem 1.5rem;
  }
}
