/* Additional component styles — extend as needed */

/* Breadcrumbs */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .875rem;
  color: var(--text-sec);
  margin-bottom: 24px;
}
.breadcrumbs a { color: var(--teal); }
.breadcrumbs a:hover { text-decoration: underline; }
.breadcrumbs__sep { opacity: .5; }

/* Tags / Badges */
.badge {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 20px;
  font-size: .78rem;
  font-weight: 500;
}
.badge--teal { background: var(--teal-light); color: var(--teal); }
.badge--red  { background: #fde8e9; color: var(--sunkar-red); }

/* FAQ Accordion */
.faq { display: flex; flex-direction: column; gap: 8px; }

.faq-item {
  border: 1px solid var(--gray-line);
  border-radius: 8px;
  overflow: hidden;
}

.faq-item__question {
  width: 100%;
  text-align: left;
  padding: 16px 20px;
  font-size: .95rem;
  font-weight: 500;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: var(--white);
  transition: background var(--transition);
}

.faq-item__question:hover { background: var(--gray-bg); }

.faq-item__question::after {
  content: '+';
  font-size: 1.2rem;
  color: var(--teal);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-item.open .faq-item__question::after { transform: rotate(45deg); }

.faq-item__answer {
  display: none;
  padding: 0 20px 16px;
  font-size: .9rem;
  color: var(--text-sec);
  line-height: 1.7;
}

.faq-item.open .faq-item__answer { display: block; }

/* Filter bar */
.filter-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.filter-bar label {
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-sec);
}

.filter-bar select {
  padding: 8px 14px;
  border: 1.5px solid var(--gray-line);
  border-radius: 8px;
  font-size: .9rem;
  outline: none;
  transition: border-color var(--transition);
}

.filter-bar select:focus { border-color: var(--teal); }

/* Page hero (inner pages) */
.page-hero {
  background: var(--gray-bg);
  padding: 48px 0 40px;
  border-bottom: 1px solid var(--gray-line);
}

.page-hero__title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 600;
}

.page-hero__subtitle {
  font-size: 1rem;
  color: var(--text-sec);
  margin-top: 8px;
}
