.resource-intro {
  margin-top: 24px;
  color: var(--text-secondary);
  max-width: 820px;
}

.category-chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.category-chips a {
  display: inline-block;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--border-navy);
  background: var(--bg-navy);
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 600;
}

.category-chips a:hover {
  border-color: rgb(212 175 55 / 45%);
  color: var(--gold);
}

.section-split {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 28px;
}

.featured-article {
  background: linear-gradient(180deg, rgb(10 23 39 / 75%), rgb(7 16 28 / 85%));
  border: 1px solid var(--border-navy);
  border-radius: 16px;
  padding: 34px;
}

.featured-label {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  background: rgb(212 175 55 / 15%);
  padding: 6px 10px;
  border-radius: 4px;
}

.featured-article h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.125rem);
  margin-bottom: 12px;
}

.featured-article p {
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.quick-links {
  background: var(--bg-navy);
  border: 1px solid var(--border-navy);
  border-radius: 16px;
  padding: 28px;
}

.quick-links h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.quick-links ul {
  margin: 0;
  padding-left: 16px;
}

.quick-links li {
  margin-bottom: 10px;
}

.quick-links a {
  color: var(--gold);
  text-decoration: none;
}

.quick-links a:hover {
  color: var(--gold-light);
}

.category-section {
  margin-top: 56px;
}

.category-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  margin-bottom: 20px;
}

.category-header p {
  color: var(--text-muted);
  font-size: 14px;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.resource-card {
  background: var(--bg-navy);
  border: 1px solid var(--border-navy);
  border-radius: 16px;
  padding: 26px;
  transition: all 0.3s;
}

.resource-card:hover {
  border-color: rgb(212 175 55 / 30%);
  transform: translateY(-4px);
}

.resource-badge {
  display: inline-block;
  background: rgb(212 175 55 / 15%);
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 12px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.resource-meta {
  display: block;
  color: var(--text-muted);
  font-size: 12px;
  margin-bottom: 10px;
}

.resource-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.resource-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 14px;
}

.resource-link {
  color: var(--gold);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.resource-link:hover {
  color: var(--gold-light);
}

.faq-section {
  padding: var(--space-10) 0;
}

.faq-list {
  max-width: 880px;
  margin-top: 36px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item summary {
  padding: 24px 0;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 24px;
  color: var(--gold);
  font-weight: 300;
  margin-left: 16px;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-answer {
  padding: 0 0 24px;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.8;
}

@media (max-width: 1000px) {
  .section-split {
    grid-template-columns: 1fr;
  }
}

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

}

.category-chips {
  position: sticky;
  top: var(--sticky-top-offset);
  z-index: 30;
  padding: 12px;
  border-radius: 10px;
  background: rgb(5 12 21 / 80%);
  backdrop-filter: blur(6px);
}

.resource-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.resource-filter {
  background: transparent;
  border: 1px solid var(--border-navy);
  color: var(--text-secondary);
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}

.resource-filter.is-active,
.resource-filter:hover {
  border-color: rgb(212 175 55 / 45%);
  color: var(--gold);
}

.resource-card h3 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 56px;
}

.resource-card p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.roles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.role-card {
  border: 1px solid var(--border-navy);
  border-radius: 12px;
  padding: 14px;
  background: var(--bg-navy);
}

.role-card h3 {
  font-size: 16px;
  margin-bottom: 6px;
}

.role-card a {
  color: var(--gold);
  text-decoration: none;
  font-size: 13px;
}

.editorial-note {
  margin-top: 28px;
  border: 1px solid var(--border-navy);
  background: rgb(10 23 39 / 50%);
  border-radius: 12px;
  padding: 18px;
}

.editorial-note h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.editorial-note p {
  color: var(--text-secondary);
  font-size: 14px;
}

@media (max-width: 1000px) {
  .roles-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .category-chips {
    position: static;
    backdrop-filter: none;
  }
}

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

@media (max-width: 600px) {
  .faq-item summary {
    font-size: 15px;
    padding: 18px 0;
    gap: 16px;
  }
}
