/* Collections page styles
   - Page-specific header band, list container, and "About" section
   - Enhanced accordion styles live in accordion.css (acc-* classes)
*/

.catalog-header-band {
  background-color: var(--color-bg-light-gray);
}

.catalog-header {
  text-align: center;
  padding: 1.5rem 0;
}

.catalog-header h1 {
  font-size: 2.35rem;
  margin-bottom: 0.4rem;
}

.catalog-header p {
  max-width: 620px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Catalog list container */
.catalog-list {
  margin: 1.25rem auto 2.5rem;
}

/* Tighter spacing for the list of catalog accordions */
.catalog-list .content-accordion {
  margin: 0.65rem 0;
}

/* Optional accent for expanded state on this page */
.catalog-list .content-accordion[open] {
  border-color: #a8c96e;
}

/* About section (below catalogs) */
.about-collections {
  background-color: var(--color-bg-white);
  padding: 2.5rem 0 3.5rem;
}

.about-text h2 {
  font-size: 2.1rem;
  margin-bottom: 1rem;
}

.about-text .entry-content p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 0.95rem;
}

.about-text p:last-of-type {
  margin-bottom: 1.35rem;
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .catalog-header h1 {
    font-size: 2rem;
  }
}

@media (max-width: 600px) {
  .catalog-list {
    max-width: 100%;
  }

  .acc-title {
    font-size: 0.9rem;
  }

  .acc-entry-title {
    font-size: 0.85rem;
  }
}
