/* ===============================
RESOURCE HUB SECTION
=============================== */

.section--resource-hub {
  padding: 50px 0 80px 0;
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
  position: relative;
}

.resource-hub-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}

.section--resource-hub .section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section--resource-hub .section-eyebrow {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand-red);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  display: inline-block;
}

.section--resource-hub .section-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 15px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-family: 'Montserrat', sans-serif;
}

.section--resource-hub .text-accent {
  color: var(--brand-red);
}

.section--resource-hub .section-lead {
  font-size: 1.125rem;
  color: #666;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* Resource Hub Content */
.resource-hub-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
}

/* Featured Resource Card */
.resource-card-main {
  background: white;
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(175, 45, 44, 0.1);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.resource-card-main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--brand-red) 0%, #d64545 100%);
}

.resource-card-main:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.resource-icon {
  width: 80px;
  height: 80px;
  background: rgba(175, 45, 44, 0.08);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.resource-icon svg {
  width: 40px;
  height: 40px;
  stroke: var(--brand-red);
}

.resource-card-main h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
  font-family: 'Montserrat', sans-serif;
}

.resource-card-main p {
  font-size: 1.125rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* Topic Tags */
.resource-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 35px;
}

.topic-tag {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(175, 45, 44, 0.05);
  border: 1px solid rgba(175, 45, 44, 0.2);
  border-radius: 25px;
  font-size: 0.875rem;
  color: var(--brand-red);
  font-weight: 500;
  transition: all 0.2s ease;
}

.topic-tag:hover {
  background: rgba(175, 45, 44, 0.1);
  border-color: var(--brand-red);
}

/* Resource CTA Button */
.resource-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--brand-red);
  color: white;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.125rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(175, 45, 44, 0.25);
}

.resource-cta-btn:hover {
  background: #c93636;
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(175, 45, 44, 0.35);
}

.resource-cta-btn svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.resource-cta-btn:hover svg {
  transform: translateX(5px);
}

/* Quick Links Sidebar */
.resource-quick-links {
  background: white;
  border-radius: 20px;
  padding: 35px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid #f0f0f0;
}

.resource-quick-links h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 25px;
  font-family: 'Montserrat', sans-serif;
}

.quick-links-grid {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.quick-link {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: #fafafa;
  border-radius: 12px;
  text-decoration: none;
  color: #333;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

.quick-link:hover {
  background: white;
  border-color: var(--brand-red);
  transform: translateX(5px);
  box-shadow: 0 2px 10px rgba(175, 45, 44, 0.1);
}

.quick-link svg {
  width: 24px;
  height: 24px;
  stroke: var(--brand-red);
  flex-shrink: 0;
}

.quick-link span {
  font-weight: 500;
  font-size: 1rem;
}

/* Responsive Design */

