@charset "UTF-8";

/* Temel sıfırlama ve belge davranışı */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-width: 20rem;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height-desktop) + var(--space-4));
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: clip;
  background: var(--color-canvas);
  color: var(--color-text);
  font-family: var(--font-family-sans);
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-body);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
  margin-block-start: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-block-end: var(--space-4);
  color: var(--color-text);
  font-weight: var(--font-weight-bold);
  letter-spacing: var(--letter-spacing-heading);
  text-wrap: balance;
}

h1 {
  font-size: var(--font-size-3xl);
  line-height: 1.2858;
}

h2 {
  font-size: var(--font-size-2xl);
  line-height: 1.3334;
}

h3 {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
  line-height: 1.4445;
}

h4,
h5,
h6 {
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-semibold);
  line-height: var(--line-height-body);
}

.hero-title {
  font-size: 2rem;
  font-weight: var(--font-weight-bold);
  letter-spacing: var(--letter-spacing-tight);
  line-height: 1.25;
}

p {
  margin-block-end: var(--space-4);
}

small {
  font-size: var(--font-size-sm);
  line-height: 1.4286;
}

strong,
b {
  font-weight: var(--font-weight-bold);
}

hr {
  height: 0;
  margin-block: var(--space-8);
  border: 0;
  border-block-start: var(--border-width) solid var(--color-border);
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

img,
video {
  height: auto;
}

svg:not([width]):not([height]) {
  width: 1.5rem;
  height: 1.5rem;
}

iframe {
  max-width: 100%;
  border: 0;
}

a {
  color: var(--color-primary);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--color-primary-hover);
}

a:not([class]) {
  overflow-wrap: anywhere;
}

button,
input,
optgroup,
select,
textarea {
  margin: 0;
  color: inherit;
  font: inherit;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  cursor: pointer;
}

button:disabled,
input:disabled,
select:disabled,
textarea:disabled {
  cursor: not-allowed;
}

textarea {
  resize: vertical;
}

fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

legend {
  display: table;
  max-width: 100%;
  margin-block-end: var(--space-4);
  padding: 0;
  color: var(--color-text);
  font-weight: var(--font-weight-semibold);
  white-space: normal;
}

label {
  cursor: pointer;
}

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

th {
  text-align: start;
}

ul,
ol {
  margin-block-start: 0;
  padding-inline-start: 1.4em;
}

summary {
  cursor: pointer;
}

[hidden] {
  display: none !important;
}

[aria-disabled="true"] {
  cursor: not-allowed;
}

::selection {
  background: var(--color-blue-100);
  color: var(--color-navy-950);
}

/* Tutarlı ve görünür klavye odağı */
:where(a, button, input, select, textarea, summary, [tabindex]):focus-visible {
  outline: 3px solid var(--color-blue-600);
  outline-offset: 3px;
}

:where(a, button, input, select, textarea, summary, [tabindex]):focus:not(:focus-visible) {
  outline: none;
}

/* Ekran okuyucu ve klavye yardımcıları */
.sr-only,
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.sr-only-focusable:focus,
.sr-only-focusable:focus-within {
  position: static !important;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  overflow: visible !important;
  clip: auto !important;
  white-space: normal !important;
}

.skip-link {
  position: fixed;
  inset-block-start: var(--space-3);
  inset-inline-start: var(--space-3);
  z-index: var(--z-toast);
  min-height: var(--touch-target-min);
  padding: var(--space-3) var(--space-4);
  translate: 0 calc(-100% - var(--space-4));
  border-radius: var(--radius-sm);
  background: var(--color-navy-950);
  color: var(--color-white);
  font-weight: var(--font-weight-semibold);
  text-decoration: none;
}

.skip-link:focus-visible {
  translate: 0;
}

/* Ana yerleşim */
.container,
.container-wide,
.container-reading {
  width: min(100% - (2 * var(--gutter-mobile)), var(--container-max));
  margin-inline: auto;
}

.container-wide {
  max-width: var(--container-wide);
}

.container-reading {
  max-width: var(--container-reading);
}

.container-fluid {
  width: 100%;
  padding-inline: var(--gutter-mobile);
}

.section {
  padding-block: var(--section-space-mobile);
}

.section--compact {
  padding-block: var(--space-8);
}

.section--flush {
  padding-block: 0;
}

.section--surface {
  background: var(--color-surface);
}

.section--alternate {
  background: var(--color-canvas-alt);
}

.section--dark {
  background: var(--color-navy-950);
  color: var(--color-white);
}

.section-heading {
  max-width: 48rem;
  margin-block-end: var(--space-8);
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-block-end: var(--space-3);
  color: var(--color-primary);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-bold);
  letter-spacing: var(--letter-spacing-label);
  line-height: 1.3334;
  text-transform: uppercase;
}

/* Kompozisyon yardımcıları */
.stack {
  display: flex;
  flex-direction: column;
  gap: var(--stack-space, var(--space-4));
}

.cluster {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--cluster-space, var(--space-3));
}

.split {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.grid {
  display: grid;
  gap: var(--grid-gap, var(--space-6));
}

.grid--auto {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, var(--grid-min, 16rem)), 1fr));
}

.grid--2,
.grid--3,
.grid--4 {
  grid-template-columns: minmax(0, 1fr);
}

.flow > * + * {
  margin-block-start: var(--flow-space, var(--space-4));
}

.scroll-x {
  max-width: 100%;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-gutter: stable;
  -webkit-overflow-scrolling: touch;
}

.aspect-video {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.aspect-square {
  aspect-ratio: 1;
  object-fit: cover;
}

.aspect-portrait {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.aspect-reference {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* Sık kullanılan görünüm yardımcıları */
.text-sm { font-size: var(--font-size-sm); }
.text-xs { font-size: var(--font-size-xs); }
.text-muted { color: var(--color-text-muted); }
.text-soft { color: var(--color-text-soft); }
.text-primary { color: var(--color-primary); }
.text-success { color: var(--color-success-strong); }
.text-warning { color: var(--color-warning); }
.text-danger { color: var(--color-danger); }
.text-center { text-align: center; }
.font-medium { font-weight: var(--font-weight-medium); }
.font-semibold { font-weight: var(--font-weight-semibold); }
.font-bold { font-weight: var(--font-weight-bold); }
.nowrap { white-space: nowrap; }
.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.line-clamp-2,
.line-clamp-3 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
}

.line-clamp-2 { -webkit-line-clamp: 2; }
.line-clamp-3 { -webkit-line-clamp: 3; }
.w-full { width: 100%; }
.mobile-only { display: revert; }
.desktop-only { display: none !important; }

@media (min-width: 48rem) {
  html {
    scroll-padding-top: calc(var(--header-height-desktop) + var(--space-4));
  }

  h1 {
    font-size: var(--font-size-4xl);
    line-height: 1.2223;
  }

  h2 {
    font-size: var(--font-size-3xl);
    line-height: 1.2858;
  }

  h3 {
    font-size: var(--font-size-xl);
    line-height: 1.4;
  }

  .hero-title {
    font-size: var(--font-size-hero);
    line-height: 1.2;
  }

  .container,
  .container-wide,
  .container-reading {
    width: min(100% - (2 * var(--gutter-tablet)), var(--container-max));
  }

  .container-fluid {
    padding-inline: var(--gutter-tablet);
  }

  .grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid--3,
  .grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mobile-only { display: none !important; }
  .desktop-only { display: revert !important; }
}

@media (min-width: 64rem) {
  .container,
  .container-wide,
  .container-reading {
    width: min(100% - (2 * var(--gutter-desktop)), var(--container-max));
  }

  .container-fluid {
    padding-inline: var(--gutter-desktop);
  }

  .section {
    padding-block: var(--section-space-desktop);
  }

  .grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .grid--4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (forced-colors: active) {
  :where(a, button, input, select, textarea, summary, [tabindex]):focus-visible {
    outline: 3px solid CanvasText;
  }
}

@media print {
  *,
  *::before,
  *::after {
    box-shadow: none !important;
    text-shadow: none !important;
  }

  body {
    background: #ffffff;
    color: #000000;
  }

  a[href]::after {
    content: " (" attr(href) ")";
    font-size: 0.85em;
  }

  .no-print {
    display: none !important;
  }
}

/* Site geneli kompakt punto standardı — Canlı Dersler ekranındaki ölçüye yaklaştırır */
html {
  font-size: 15px;
}

body {
  font-size: var(--font-size-md);
}

h1 {
  font-size: clamp(1.65rem, 2.4vw, 2.35rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

h2 {
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  line-height: 1.18;
  letter-spacing: -0.025em;
}

h3 {
  font-size: clamp(.98rem, 1.25vw, 1.12rem);
  line-height: 1.24;
}

h4,
h5,
h6 {
  font-size: .92rem;
  line-height: 1.32;
}

p,
li,
dd,
dt,
label,
summary,
input,
select,
textarea,
button {
  font-size: .875rem;
  line-height: 1.42;
}

small {
  font-size: .75rem;
  line-height: 1.35;
}

button,
input,
select,
textarea {
  max-width: 100%;
}

:where(.card, .panel, .se-card, .se-panel, [class*="card"], [class*="panel"]) {
  min-width: 0;
}

:where(.btn, .se-btn, button[class*="btn"], a[class*="btn"]) {
  min-height: 2.25rem;
  padding-block: .45rem;
  padding-inline: .75rem;
  font-size: .78rem;
  line-height: 1.2;
}

:where(.badge, .chip, .status, .se-badge, [class*="badge"], [class*="chip"], [class*="status"]) {
  font-size: .68rem;
  line-height: 1.15;
}

:where(table) {
  font-size: .82rem;
}

:where(th, td) {
  overflow-wrap: anywhere;
}

:where(.section, .container, .container-wide, .se-container, .ua-admin-main, .ua-candidate-main, .ua-employer-main, .ua-market-main) {
  min-width: 0;
}

/* Site geneli %100 zoom güvenliği */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

body {
  text-rendering: optimizeLegibility;
}

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

img,
svg,
video,
canvas,
iframe {
  max-width: 100%;
}

img,
video,
canvas {
  height: auto;
}

table {
  max-width: 100%;
}

pre,
code,
kbd,
samp {
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

:where(main, section, article, aside, header, footer, nav, div, form, fieldset, ul, ol, li) {
  min-width: 0;
}

:where([class*="grid"], [class*="layout"], [class*="row"], [class*="list"], [class*="track"], [class*="wrap"]) {
  min-width: 0;
}

:where(.container, .container-wide, .page-container, .section, .shell-section, .se-container, .market-container, .job-container) {
  max-width: min(100%, var(--container-max, 1440px));
}

:where(a, button, input, select, textarea) {
  max-width: 100%;
}

:where(a[class*="btn"], button, .btn, [class*="button"]) {
  white-space: nowrap;
}

:where(h1, h2, h3, h4, h5, h6, p, li, span, b, strong, small, label, a, button, td, th) {
  overflow-wrap: anywhere;
}

@media (max-width: 1440px) {
  h1 {
    font-size: clamp(1.55rem, 2.25vw, 2.15rem);
  }

  h2 {
    font-size: clamp(1.12rem, 1.6vw, 1.42rem);
  }

  h3 {
    font-size: clamp(.94rem, 1.15vw, 1.05rem);
  }

  p,
  li,
  dd,
  dt,
  label,
  summary,
  input,
  select,
  textarea,
  button {
    font-size: .84rem;
  }
}
