.mpsa-archive {
  background: #fff;
  color: #252b31;
  padding: 64px 24px 80px;
}

.mpsa-container {
  margin: 0 auto;
  max-width: 1200px;
  width: 100%;
}

.mpsa-archive-header {
  border-bottom: 1px solid #e2e6e9;
  margin-bottom: 48px;
  padding-bottom: 32px;
}

.mpsa-archive-title {
  color: #17212b;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0;
}

.mpsa-archive-description {
  color: #5b6570;
  font-size: 1.0625rem;
  line-height: 1.75;
  margin-top: 18px;
  max-width: 850px;
}

.mpsa-archive-description > :first-child {
  margin-top: 0;
}

.mpsa-archive-description > :last-child {
  margin-bottom: 0;
}

.mpsa-section-title {
  color: #17212b;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 28px;
}

.mpsa-product-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mpsa-product-card {
  background: #fff;
  border: 1px solid #dfe4e8;
  border-radius: 3px;
  display: flex;
  flex-direction: column;
  margin: 0;
  min-width: 0;
  overflow: hidden;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.mpsa-product-card:hover {
  border-color: #bac4cc;
  box-shadow: 0 12px 30px rgba(23, 33, 43, 0.1);
  transform: translateY(-3px);
}

.mpsa-product-image-link {
  display: block;
  text-decoration: none;
}

.mpsa-product-image {
  aspect-ratio: 4 / 3;
  background: #f1f3f4;
  overflow: hidden;
  position: relative;
}

.mpsa-product-thumbnail {
  display: block;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 250ms ease;
  width: 100%;
}

.mpsa-product-card:hover .mpsa-product-thumbnail {
  transform: scale(1.025);
}

.mpsa-product-placeholder {
  background: linear-gradient(135deg, #f2f4f5 0%, #e7eaed 100%);
  display: block;
  height: 100%;
  width: 100%;
}

.mpsa-product-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.mpsa-product-title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 12px;
}

.mpsa-product-title a {
  color: #17212b;
  text-decoration: none;
}

.mpsa-product-title a:hover,
.mpsa-product-title a:focus-visible {
  color: #315e78;
}

.mpsa-product-summary {
  color: #616b74;
  font-size: 0.975rem;
  line-height: 1.65;
  margin: 0 0 22px;
}

.mpsa-product-link {
  align-self: flex-start;
  color: #315e78;
  font-size: 0.95rem;
  font-weight: 700;
  margin-top: auto;
  text-decoration: none;
}

.mpsa-product-link:hover,
.mpsa-product-link:focus-visible {
  color: #1f4358;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.mpsa-product-image-link:focus-visible,
.mpsa-product-title a:focus-visible,
.mpsa-product-link:focus-visible,
.mpsa-pagination a:focus-visible {
  outline: 3px solid rgba(49, 94, 120, 0.35);
  outline-offset: 3px;
}

.mpsa-pagination {
  margin-top: 48px;
}

.mpsa-pagination .page-numbers {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.mpsa-pagination a,
.mpsa-pagination span {
  align-items: center;
  border: 1px solid #d7dde1;
  color: #263640;
  display: inline-flex;
  justify-content: center;
  min-height: 42px;
  min-width: 42px;
  padding: 8px 13px;
  text-decoration: none;
}

.mpsa-pagination a:hover {
  background: #f1f4f6;
  border-color: #aeb9c1;
}

.mpsa-pagination .current {
  background: #315e78;
  border-color: #315e78;
  color: #fff;
}

.mpsa-no-products {
  background: #f6f7f8;
  border: 1px solid #e1e5e8;
  color: #5b6570;
  padding: 28px;
}

.mpsa-no-products p {
  margin: 0;
}

.mpsa-related-resources {
  border-top: 1px solid #dfe4e8;
  margin-top: 48px;
  padding-top: 32px;
}

.mpsa-related-resources ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.mpsa-related-resources a {
  color: #315e78;
  font-weight: 700;
  text-decoration: none;
}

.mpsa-related-resources a:hover {
  text-decoration: underline;
}

.mpsa-child-series {
  margin-bottom: 56px;
}

.mpsa-series-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mpsa-series-card {
  border: 1px solid #dfe4e8;
  border-radius: 3px;
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.mpsa-series-title {
  font-size: 1.2rem;
  line-height: 1.35;
  margin: 0 0 12px;
}

.mpsa-series-title a {
  color: #17212b;
  text-decoration: none;
}

.mpsa-series-description {
  color: #616b74;
  line-height: 1.65;
  margin: 0 0 20px;
}

@media (max-width: 1024px) {
  .mpsa-archive {
    padding: 52px 22px 68px;
  }

  .mpsa-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mpsa-series-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .mpsa-archive {
    padding: 40px 18px 56px;
  }

  .mpsa-archive-header {
    margin-bottom: 36px;
    padding-bottom: 24px;
  }

  .mpsa-product-grid {
    gap: 22px;
    grid-template-columns: minmax(0, 1fr);
  }

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

  .mpsa-product-content {
    padding: 20px;
  }

  .mpsa-pagination {
    margin-top: 36px;
  }
}
