/* ── Collection intro + FAQ accordion ── */
.fesselei-section .collection-subtitle {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin: -0.5rem 0 2rem;
}

.fesselei-section .faq-section {
  margin-top: 2.5rem;
}

.fesselei-container .intro-text-block {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 1.2rem;
  line-height: 1.85;
  color: var(--text-muted);
  background: var(--card-bg);
  border: 1px solid var(--header-border);
  border-radius: 16px;
  padding: var(--card-pad, 2rem);
  box-shadow: 0 10px 30px var(--offer-card-shadow);
  margin-bottom: 3.5rem;
}

.fesselei-container .intro-text-block p {
  margin-bottom: 1rem;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-muted);
  font-size: 1.18rem;
}

.fesselei-container .intro-text-block p:last-child {
  margin-bottom: 0;
}

.collection-description-card {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 1.18rem;
  line-height: 1.85;
  color: var(--text-muted);
  background: var(--card-bg);
  border: 1px solid var(--header-border);
  border-radius: 16px;
  padding: var(--card-pad, 2rem);
  box-shadow: 0 10px 30px var(--offer-card-shadow);
  margin-bottom: 3.5rem;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.collection-description-card p {
  font-family: 'Lora', Georgia, serif;
  color: var(--text-muted);
  font-size: 1.18rem;
  line-height: 1.85;
  margin-bottom: 1rem;
}

.collection-description-card p:last-child {
  margin-bottom: 0;
}

.collection-description-card a {
  color: var(--primary-accent);
  text-decoration: underline;
}

.collection-description-card a:hover {
  color: var(--text-primary);
}

.fesselei-section .faq-section h2,
.events-section .events-container > h2 {
  margin-top: 0;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  color: var(--text-primary);
}

details.faq-item {
  background: var(--offer-card-bg);
  border: 1px solid var(--offer-card-border);
  border-radius: 14px;
  padding: 1.2rem 1.5rem;
  margin-bottom: 1.25rem;
  overflow: hidden;
  transition: border-color 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), background 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 20px var(--offer-card-shadow);
}

details.faq-item[open] {
  border-color: var(--primary-accent);
  background: var(--card-bg);
}

details.faq-item summary {
  font-family: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  /* Beat Pico's `details summary { line-height: 1rem }` for wrapped titles */
  line-height: 1.55 !important;
  color: var(--text-primary);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  user-select: none;
  overflow-wrap: anywhere;
  transition: color 0.3s ease;
}

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

/* Neutralize Pico's floated chevron ::after so the + stays inside the row */
details.faq-item summary::after {
  content: "＋";
  float: none;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  min-width: 1.25rem;
  margin: 0;
  margin-inline-start: 0;
  padding: 0;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1;
  color: var(--primary-accent);
  background: none;
  background-image: none;
  transform: none;
  transition: color 0.3s ease;
}

details.faq-item[open] summary::after {
  content: "－";
  transform: none;
}

details.faq-item summary:hover,
details.faq-item summary:focus,
details.faq-item summary:focus-visible,
details.faq-item summary:not([role]) {
  color: var(--text-primary);
  outline: none;
}

details.faq-item summary:hover {
  color: var(--primary-accent);
}

details.faq-item .faq-content {
  margin-top: 1rem;
  padding-top: 0.8rem;
  border-top: 1px solid var(--header-border);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-muted);
  font-size: 1.12rem;
  line-height: 1.75;
}

details.faq-item .faq-content p {
  margin-bottom: 0.8rem;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-muted);
  font-size: 1.12rem;
  line-height: 1.75;
}

details.faq-item .faq-content p:last-child {
  margin-bottom: 0;
}

@media (max-width: 600px) {
  details.faq-item {
    padding: 1rem 1.1rem;
  }

  details.faq-item summary {
    font-size: 1.05rem;
    line-height: 1.5 !important;
  }
}
