/* Gizlilik Politikası — yalnız .oe-policy-page kapsamı (diğer sayfaları etkilemez) */

.oe-policy-page {
  --oe-policy-max: min(1100px, 100%);
  --oe-policy-radius: 16px;
  --oe-policy-card-bg: #ffffff;
  --oe-policy-border: rgba(15, 23, 42, 0.1);
  --oe-policy-text: #0f172a;
  --oe-policy-muted: #475569;
  --oe-policy-accent: #2563eb;
  --oe-policy-accent2: #13b8c6;
  --oe-policy-shadow: 0 10px 36px rgba(15, 23, 42, 0.07);

  max-width: var(--oe-policy-max);
  margin: 0 auto;
  padding: clamp(12px, 2vw, 20px) clamp(14px, 3vw, 24px) clamp(40px, 5vw, 56px);
  color: var(--oe-policy-text);
  box-sizing: border-box;
}

.admin-bar .oe-policy-page {
  scroll-margin-top: 8px;
}

.oe-policy-hero {
  border-radius: var(--oe-policy-radius);
  padding: clamp(22px, 3.5vw, 32px) clamp(18px, 3vw, 28px);
  margin-bottom: clamp(22px, 3vw, 32px);
  background: linear-gradient(
    125deg,
    rgba(37, 99, 235, 0.1) 0%,
    rgba(19, 184, 198, 0.12) 45%,
    rgba(109, 93, 252, 0.1) 100%
  );
  border: 1px solid rgba(37, 99, 235, 0.14);
  box-shadow: var(--oe-policy-shadow);
}

.oe-policy-hero__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px 24px;
}

.oe-policy-hero__text {
  flex: 1 1 260px;
  min-width: 0;
}

.oe-policy-hero h1 {
  margin: 0 0 10px;
  font-size: clamp(1.45rem, 2.6vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--oe-policy-text);
}

.oe-policy-hero__lead {
  margin: 0;
  font-size: clamp(0.95rem, 1.35vw, 1.05rem);
  line-height: 1.55;
  color: var(--oe-policy-muted);
  max-width: 52rem;
}

.oe-policy-hero__meta {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.oe-policy-badge {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #0f172a;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(37, 99, 235, 0.18);
  white-space: nowrap;
}

.oe-policy-hero__date {
  margin: 14px 0 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--oe-policy-muted);
}

.oe-policy-content {
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 2vw, 18px);
}

.oe-policy-intro--secondary {
  margin-top: -6px;
}

.oe-policy-label {
  margin: 14px 0 8px;
  font-weight: 700;
  font-size: clamp(0.92rem, 1.2vw, 0.98rem);
  color: #0b1220;
}

.oe-policy-card a {
  color: var(--oe-policy-accent);
  font-weight: 700;
  text-decoration: none;
  word-break: break-word;
}

.oe-policy-card a:hover {
  text-decoration: underline;
}

.oe-policy-intro {
  margin: 0 0 4px;
  padding: clamp(16px, 2.2vw, 20px) clamp(16px, 2.2vw, 22px);
  font-size: clamp(0.95rem, 1.25vw, 1.02rem);
  line-height: 1.65;
  color: var(--oe-policy-text);
  background: var(--oe-policy-card-bg);
  border: 1px solid var(--oe-policy-border);
  border-radius: var(--oe-policy-radius);
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
}

.oe-policy-card {
  background: var(--oe-policy-card-bg);
  border: 1px solid var(--oe-policy-border);
  border-radius: var(--oe-policy-radius);
  padding: clamp(18px, 2.5vw, 24px) clamp(16px, 2.5vw, 22px);
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
}

.oe-policy-card h2 {
  margin: 0 0 14px;
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  font-weight: 800;
  letter-spacing: -0.015em;
  color: #0b1220;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(37, 99, 235, 0.12);
}

.oe-policy-card h2::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  margin-top: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--oe-policy-accent), var(--oe-policy-accent2));
}

.oe-policy-card p {
  margin: 0 0 12px;
  font-size: clamp(0.94rem, 1.15vw, 1rem);
  line-height: 1.65;
  color: var(--oe-policy-text);
}

.oe-policy-card p:last-child {
  margin-bottom: 0;
}

.oe-policy-card ul {
  margin: 0 0 12px;
  padding: 0 0 0 1.25rem;
  font-size: clamp(0.94rem, 1.15vw, 1rem);
  line-height: 1.6;
  color: var(--oe-policy-text);
}

.oe-policy-card li {
  margin-bottom: 6px;
}

.oe-policy-card li:last-child {
  margin-bottom: 0;
}

.oe-policy-card ul:last-child {
  margin-bottom: 0;
}

.oe-policy-contact {
  font-size: clamp(0.94rem, 1.15vw, 1rem);
  line-height: 1.65;
}

.oe-policy-contact a {
  color: var(--oe-policy-accent);
  font-weight: 700;
  text-decoration: none;
  word-break: break-word;
}

.oe-policy-contact a:hover {
  text-decoration: underline;
}

.oe-policy-cta {
  margin-top: clamp(28px, 4vw, 40px);
  padding: clamp(22px, 3vw, 32px);
  border-radius: var(--oe-policy-radius);
  text-align: center;
  background: linear-gradient(
    160deg,
    rgba(15, 23, 42, 0.04) 0%,
    rgba(37, 99, 235, 0.08) 100%
  );
  border: 1px solid var(--oe-policy-border);
}

.oe-policy-cta__title {
  margin: 0 0 10px;
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 700;
  color: var(--oe-policy-text);
}

.oe-policy-cta__text {
  margin: 0 0 18px;
  font-size: clamp(0.92rem, 1.3vw, 1rem);
  line-height: 1.55;
  color: var(--oe-policy-muted);
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.oe-policy-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, var(--oe-policy-accent) 0%, #1d4ed8 55%, #f97316 140%);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.28);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.oe-policy-cta__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35);
  color: #fff;
}

.oe-policy-cta__btn:focus-visible {
  outline: 2px solid #f97316;
  outline-offset: 3px;
}

/* TestOku gizlilik — küçük uygulama simgesi (hero) */
.oe-testoku-policy-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 12px;
  min-width: 0;
}

.oe-testoku-policy-brand__icon {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.12);
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #fff;
}

.oe-testoku-policy-brand__name {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--oe-policy-muted);
  line-height: 1.3;
  min-width: 0;
}

@media (max-width: 640px) {
  .oe-policy-hero__meta {
    align-items: flex-start;
    width: 100%;
  }

  .oe-policy-badge {
    white-space: normal;
  }

  .oe-testoku-policy-brand__icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }
}
