.resources-hero {
  padding-top: var(--space-16);
}

.resources-hero__grid {
  gap: var(--space-10);
  align-items: center;
}

.resources-hero__lead {
  font-size: var(--font-size-lg);
  max-width: 42rem;
}

.resources-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-top: var(--space-6);
  margin-bottom: var(--space-6);
}

.resources-hero__meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-4);
  font-size: var(--font-size-sm);
}

.resources-hero__meta-item dt {
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-1);
}

.resources-hero__meta-item dd {
  margin: 0;
  color: var(--color-text-muted);
}

.resources-hero__image-wrapper {
  box-shadow: var(--shadow-lg);
}

.resources-breadcrumb__list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
  padding-left: 0;
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.resources-breadcrumb__link::after {
  content: "/";
  margin-left: var(--space-2);
  color: var(--color-text-muted);
}

.resources-breadcrumb__current {
  color: var(--color-text);
}

.resources-section-header {
  max-width: 44rem;
  margin: 0 auto var(--space-10);
}

.resources-downloads__grid {
  margin-top: var(--space-6);
}

.resources-download-card__list {
  margin-top: var(--space-3);
  color: var(--color-text-muted);
}

.resources-download-card__footer {
  margin-top: var(--space-6);
}

.resources-case-studies__grid {
  gap: var(--space-10);
  align-items: center;
}

.resources-case-studies__highlights {
  margin-top: var(--space-4);
  margin-bottom: var(--space-6);
  color: var(--color-text-muted);
}

.resources-case-studies__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.resources-case-studies__image-wrapper {
  box-shadow: var(--shadow-lg);
}

.resources-press__grid {
  gap: var(--space-10);
  align-items: flex-start;
}

.resources-press__items {
  display: grid;
  gap: var(--space-6);
  margin-top: var(--space-4);
}

.resources-press__item h3 {
  margin-bottom: var(--space-2);
}

.resources-media-contact__details {
  display: grid;
  gap: var(--space-3);
  margin-top: var(--space-4);
  margin-bottom: var(--space-4);
  font-size: var(--font-size-sm);
}

.resources-media-contact__details dt {
  font-weight: 600;
  color: var(--color-text);
}

.resources-media-contact__details dd {
  margin: 0;
  color: var(--color-text-muted);
}

.resources-media-contact__cta {
  width: 100%;
  justify-content: center;
}

.resources-testimonials__grid {
  margin-top: var(--space-6);
}

.resources-testimonial .card-body p {
  margin-bottom: var(--space-4);
}

.resources-compliance__grid {
  gap: var(--space-8);
  align-items: flex-start;
}

.resources-compliance__list,
.resources-compliance__sublist {
  margin-top: var(--space-4);
  margin-bottom: var(--space-4);
  color: var(--color-text-muted);
}

.resources-compliance__links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.resources-faq__container {
  max-width: 60rem;
}

.resources-faq__grid {
  display: grid;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.resources-faq__item {
  border-radius: var(--radius-md);
  background-color: var(--color-surface-alt);
  padding: var(--space-4) var(--space-5);
}

.resources-faq__item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  font-weight: 500;
}

.resources-faq__item summary::-webkit-details-marker {
  display: none;
}

.resources-faq__item summary span {
  position: relative;
}

.resources-faq__item summary::after {
  content: "+";
  font-weight: 600;
  color: var(--color-primary);
}

.resources-faq__item[open] summary::after {
  content: "f";
}

.resources-faq__answer {
  margin-top: var(--space-3);
  font-size: var(--font-size-sm);
}

.resources-faq__cta {
  margin-top: var(--space-8);
}

.resources-gallery__layout {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: var(--space-8);
  align-items: center;
}

.resources-gallery__image-wrapper {
  box-shadow: var(--shadow-lg);
}

.resources-gallery__aside h3 {
  margin-bottom: var(--space-3);
}

.resources-gallery__aside ul {
  margin-bottom: var(--space-4);
  color: var(--color-text-muted);
}

.resources-gallery__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.resources-final-cta__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-6);
  align-items: center;
}

.resources-final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

@media (max-width: 1024px) {
  .resources-hero__meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .resources-gallery__layout {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 768px) {
  .resources-hero {
    padding-top: var(--space-12);
  }

  .resources-hero__meta {
    grid-template-columns: minmax(0, 1fr);
  }

  .resources-faq__item {
    padding: var(--space-3) var(--space-4);
  }

  .resources-press__grid,
  .resources-compliance__grid {
    gap: var(--space-6);
  }
}
