/* SSS sayfası CMS stilleri */
.cms-page:has(.sss-page) > h1 {
  display: none;
}

.sss-page {
  --brand: #1a805b;
  --brand-dark: #145c42;
  --brand-light: #e8f5ef;
  --brand-soft: #f4faf7;
  --text: #1d2327;
  --muted: #50575e;
  --border: #dde3df;
  /* Tam genişlik: 100vw kaydırma çubuğunu da saydığı için yatay scroll üretiyordu */
  width: 100%;
  max-width: 100%;
  color: var(--text);
  line-height: 1.6;
}

.sss-page *,
.sss-page *::before,
.sss-page *::after {
  box-sizing: border-box;
}

.sss-wrap {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 20px;
}

.sss-intro {
  background: linear-gradient(145deg, #0f4834, var(--brand));
  color: #fff;
  padding: 40px 20px 44px;
  text-align: center;
}

.sss-intro h1 {
  margin: 0 0 12px;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  color: #fff;
}

.sss-intro p {
  margin: 0 auto;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.0625rem;
  line-height: 1.55;
}

.sss-intro-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  justify-content: center;
  margin-top: 20px;
  font-size: 0.875rem;
}

.sss-intro-links a {
  color: #b8f0d4;
  text-decoration: none;
  font-weight: 600;
}

.sss-intro-links a:hover {
  text-decoration: underline;
}

.sss-toc {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 14px 20px;
  position: sticky;
  top: 0;
  z-index: 30;
}

.sss-toc-inner {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  justify-content: center;
  font-size: 0.8125rem;
}

.sss-toc a {
  color: var(--brand);
  text-decoration: none;
  font-weight: 600;
}

.sss-toc a:hover {
  text-decoration: underline;
}

.sss-body {
  padding: 32px 20px 48px;
  background: var(--brand-soft);
}

.sss-cat {
  margin: 0 0 14px;
  font-size: 1.1875rem;
  font-weight: 700;
  color: var(--brand-dark);
  padding-bottom: 8px;
  border-bottom: 2px solid var(--brand);
}

.sss-cat:not(:first-child) {
  margin-top: 36px;
}

.sss-faq details {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 10px;
}

.sss-faq summary {
  padding: 15px 18px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9375rem;
  list-style: none;
  line-height: 1.4;
}

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

.sss-faq summary::before {
  content: "＋ ";
  color: var(--brand);
  font-weight: 800;
}

.sss-faq details[open] summary::before {
  content: "－ ";
}

.sss-faq details[open] summary {
  border-bottom: 1px solid #eee;
}

.sss-faq .sss-a {
  padding: 14px 18px 16px;
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.55;
}

.sss-faq .sss-a p {
  margin: 0 0 10px;
}

.sss-faq .sss-a p:last-child {
  margin: 0;
}

.sss-faq .sss-a ul {
  margin: 8px 0 0;
  padding-left: 20px;
}

.sss-faq .sss-a li {
  margin-bottom: 4px;
}

.sss-note {
  margin-top: 20px;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid #c8e6d4;
  border-left: 4px solid var(--brand);
  border-radius: 8px;
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.55;
}

.sss-note strong {
  color: var(--text);
}

.sss-cta {
  background: var(--text);
  color: #fff;
  padding: 40px 20px;
  text-align: center;
}

.sss-cta h2 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 1.375rem;
}

.sss-cta p {
  margin: 0 auto 20px;
  max-width: 440px;
  opacity: 0.85;
  font-size: 0.9375rem;
}

.sss-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.sss-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 8px;
  font-size: 0.9375rem;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid transparent;
}

.sss-btn:hover {
  text-decoration: none;
}

.sss-btn-primary {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

.sss-btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}
