@charset "UTF-8";
.section {
  max-width: 960px;
  margin: 0 auto 24px;
  padding: 20px 20px 24px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.section-title {
  margin: 0 0 8px;
  font-size: 22px;
  letter-spacing: 0.03em;
}

.section-lead {
  margin: 0 0 20px;
  font-size: 14px;
  color: #6b7280;
}

/* ------------------------------------------------------------------
  (voice-list)
------------------------------------------------------------------ */
.section-voice-list {
  padding-top: 22px;
}

.voice-list {
  display: grid;
  gap: 12px;
}

.voice-item {
  border-radius: 14px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  overflow: hidden;
  transition: box-shadow 0.15s ease, border-color 0.15s ease, background-color 0.15s ease;
}

.voice-item.is-open {
  background-color: #ffffff;
  border-color: #c7d2fe;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
}

.voice-item-header {
  width: 100%;
  padding: 12px 14px;
  border: none;
  background: none;
  text-align: left;
  cursor: pointer;
  font: inherit;
}

/* hover, focus */
.voice-item-header:hover {
  background-color: #eef2ff;
}

.voice-item-header:focus-visible {
  outline: 2px solid #4f46e5;
  outline-offset: 2px;
}

.voice-item-header-main {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
  font-size: 12px;
}

.voice-item-tag {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 999px;
  background: #e0f2fe;
  color: #0369a1;
  font-weight: 600;
  font-size: 14px;
}

.voice-item-date {
  margin-left: auto;
  color: #9ca3af;
}

.voice-item-title {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #111827;
}

.voice-item-excerpt {
  margin: 0;
  font-size: 15px;
  color: #4b5563;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.voice-item-body {
  padding: 10px 14px 12px;
  border-top: 1px solid #e5e7eb;
  background-color: #ffffff;
}
.voice-item-body p {
  margin: 0 0 10px;
  font-size: 15px;
  line-height: 1.6;
  color: #374151;
}
.voice-item-body .writer {
  margin-top: 16px;
  text-align: right;
}

.voice-card {
  border-radius: 14px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease, background-color 0.15s ease;
}
.voice-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.12);
  border-color: #c7d2fe;
  background: #ffffff;
}

.voice-card-link {
  display: block;
  padding: 14px 16px 16px;
  text-decoration: none;
  color: inherit;
}

.voice-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  font-size: 12px;
}

.voice-card-tag {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 999px;
  background: #e0f2fe;
  color: #0369a1;
  font-weight: 600;
}

.voice-card-date {
  margin-left: auto;
  color: #9ca3af;
}

.voice-card-title {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 700;
  color: #111827;
}

.voice-card-meta {
  margin: 0 0 6px;
  font-size: 13px;
  color: #6b7280;
}

.voice-card-excerpt {
  margin: 0;
  font-size: 14px;
  color: #4b5563;
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 10px;
}

/* details 기본 스타일 리셋 */
.faq-item {
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  background-color: #f9fafb;
  overflow: hidden;
}

/* summary 스타일 */
.faq-question {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 13px 14px;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #111827;
  position: relative;
}

/* summary 기본 화살표 제거 */
.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::marker {
  content: "";
}

.faq-item[open] .faq-question {
  border-bottom: 1px solid #e5e7eb;
}

/* 커스텀 화살표 */
.faq-question::after {
  content: "";
  margin-left: auto;
  width: 8px;
  height: 8px;
  border-right: 2px solid #6b7280;
  border-bottom: 2px solid #6b7280;
  transform: rotate(45deg);
  transition: transform 0.15s ease;
}

.faq-item[open] .faq-question::after {
  transform: rotate(-135deg);
}

/* Q / A 라벨 */
.faq-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  font-size: 13px;
  font-weight: 700;
  color: #2563eb;
}

/* 답변 영역 */
.faq-answer {
  padding: 10px 14px 12px 14px;
  font-size: 15px;
  line-height: 1.6;
  color: #4b5563;
  display: flex;
  gap: 6px;
}