/* ── Yasal metin sayfaları ──────────────────────── */

.ys-breadcrumb {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  margin-top: 68px;
}
.ys-breadcrumb .container {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .88rem;
  color: var(--text2);
}
.ys-breadcrumb a {
  color: var(--primary-dark);
  text-decoration: none;
  font-weight: 500;
}
.ys-breadcrumb a:hover { text-decoration: underline; }
.ys-breadcrumb span:last-child { color: var(--text); font-weight: 500; }

.ys-main {
  padding: 48px 0 80px;
  background: var(--bg);
  min-height: calc(100vh - 200px);
}

.ys-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  max-width: 820px;
  margin: 0 auto;
  overflow: hidden;
}

.ys-card-header {
  background: linear-gradient(135deg, var(--primary-surf) 0%, #f3e5f5 100%);
  border-bottom: 1px solid var(--border);
  padding: 40px 48px 32px;
}

.ys-title {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
}

.ys-date {
  font-size: .85rem;
  color: var(--text2);
  font-weight: 500;
}

/* Loading state */
.ys-loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 64px 48px;
  gap: 16px;
  color: var(--text2);
  font-size: .95rem;
}

.ys-spinner {
  width: 36px; height: 36px;
  border: 3px solid var(--primary-light);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Content body */
.ys-body {
  padding: 40px 48px 56px;
}

.ys-body .ys-heading {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin: 28px 0 10px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--primary-surf);
}

.ys-body .ys-heading:first-child { margin-top: 0; }

.ys-body .ys-para {
  font-size: .95rem;
  line-height: 1.8;
  color: var(--text2);
  margin: 0 0 14px;
}

/* Responsive */
@media (max-width: 640px) {
  .ys-card-header { padding: 28px 24px 22px; }
  .ys-title { font-size: 1.5rem; }
  .ys-body { padding: 28px 24px 40px; }
}
