/*
 * 2026-2027 Güzel Sanatlar özel yetenek sınavı rehberi
 * Sayfaya özel stiller body.exam-page altında tutulur; ortak navigasyon yapısı korunur.
 */

body.exam-page {
  --exam-ink: #171814;
  --exam-ink-soft: #30322b;
  --exam-paper: #f2eee3;
  --exam-paper-light: #fbf8f0;
  --exam-paper-deep: #e7dfce;
  --exam-orange: #e8662f;
  --exam-orange-dark: #b94019;
  --exam-blue: #19589b;
  --exam-blue-dark: #103a66;
  --exam-green: #2e7253;
  --exam-red: #a63e32;
  --exam-yellow: #e8bd4e;
  --exam-muted: #696c63;
  --exam-line: rgba(23, 24, 20, .16);
  --exam-line-strong: rgba(23, 24, 20, .3);
  --exam-shadow: 0 18px 45px rgba(54, 43, 23, .1);
  --exam-radius: 6px;
  margin: 0;
  overflow-x: clip;
  background:
    linear-gradient(rgba(255, 255, 255, .18), rgba(255, 255, 255, .18)),
    repeating-linear-gradient(0deg, transparent 0, transparent 31px, rgba(39, 47, 38, .025) 32px),
    var(--exam-paper);
  color: var(--exam-ink);
  font-family: Athiti, "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

body.exam-page a {
  color: inherit;
}

body.exam-page p {
  color: inherit;
  font-family: inherit;
}

body.exam-page button,
body.exam-page input,
body.exam-page select,
body.exam-page textarea {
  font: inherit;
}

body.exam-page [hidden] {
  display: none !important;
}

.exam-page .skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 10000;
  padding: 10px 15px;
  border: 2px solid var(--exam-ink);
  border-radius: 3px;
  background: var(--exam-paper-light);
  color: var(--exam-ink);
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-160%);
}

.exam-page .skip-link:focus {
  transform: none;
}

.exam-page :where(a, button, input, select, textarea, summary):focus-visible {
  outline: 3px solid var(--exam-yellow);
  outline-offset: 3px;
}

.exam-page .header-section .menu-list :is(.exam-active, .exams-active, [aria-current="page"]) {
  color: #fff;
}

.exam-page .header-section .menu-list :is(li.exam-active, li.exams-active) > a {
  color: #fff;
}

.exam-page .header-section .menu-list :is(.exam-active, .exams-active, [aria-current="page"])::after {
  width: 20px;
  margin-left: -10px;
  background: var(--exam-orange);
}

.exam-page .header-section .menu-list :is(li.exam-active, li.exams-active) > a::after {
  width: 20px;
  margin-left: -10px;
  background: var(--exam-orange);
}

.exam-shell,
.exam-container {
  width: min(1240px, calc(100% - 48px));
  margin-inline: auto;
}

.exam-narrow {
  width: min(860px, 100%);
}

.exam-eyebrow,
.exam-kicker,
.detail-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--exam-orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.exam-eyebrow::before,
.exam-kicker::before,
.detail-kicker::before {
  content: "";
  width: 30px;
  height: 3px;
  flex: 0 0 auto;
  background: currentColor;
}

/* Hero: bir atölye panosu, sade kâğıt dokusu ve işlevsel tarih özeti. */
.exam-hero,
.exam-detail-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(112deg, rgba(12, 19, 18, .97) 0%, rgba(19, 30, 29, .94) 57%, rgba(22, 55, 71, .88) 100%),
    #111c1b;
}

.exam-hero {
  min-height: 680px;
  display: grid;
  align-items: end;
  padding: 162px 0 82px;
}

.exam-detail-hero {
  min-height: 480px;
  padding: 150px 0 72px;
}

.exam-hero::before,
.exam-detail-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: .3;
  background-image:
    linear-gradient(27deg, transparent 49.7%, rgba(255, 255, 255, .11) 50%, transparent 50.3%),
    linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 390px 390px, 42px 42px, 42px 42px;
}

.exam-hero::after,
.exam-detail-hero::after {
  content: "2026";
  position: absolute;
  right: -18px;
  bottom: -78px;
  z-index: -1;
  color: rgba(255, 255, 255, .035);
  font-family: Raleway, Arial, sans-serif;
  font-size: clamp(180px, 27vw, 430px);
  font-weight: 900;
  letter-spacing: -.1em;
  line-height: .8;
  pointer-events: none;
}

.exam-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(330px, .72fr);
  align-items: end;
  gap: clamp(42px, 7vw, 100px);
}

.exam-hero h1,
.exam-detail-hero h1 {
  max-width: 900px;
  margin: 0;
  color: #fff;
  font-family: Raleway, Arial, sans-serif;
  font-size: clamp(46px, 7.2vw, 92px);
  font-weight: 850;
  letter-spacing: -.055em;
  line-height: .95;
}

.exam-detail-hero h1 {
  max-width: 1050px;
  font-size: clamp(40px, 6vw, 76px);
}

.exam-hero h1 em,
.exam-hero h1 span,
.exam-detail-hero h1 em {
  color: #ff8a4e;
  font-style: normal;
}

.exam-hero-lede,
.exam-hero-copy,
.exam-detail-lede {
  max-width: 700px;
  margin: 26px 0 0;
  color: #c7d1ce !important;
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.7;
}

.exam-hero-actions,
.exam-actions,
.card-actions,
.detail-actions,
.official-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.exam-hero-actions {
  margin-top: 32px;
}

.exam-audience-note {
  max-width: 650px;
  margin: 18px 0 0;
  padding: 10px 14px;
  border-left: 3px solid #ff8a4e;
  background: rgba(255, 255, 255, .06);
  color: #dce5e2;
  font-size: 13px;
  line-height: 1.55;
}

.exam-button,
.exam-btn,
.card-link,
.official-link,
.calendar-link,
.share-button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 18px;
  border: 2px solid var(--exam-ink);
  border-radius: 3px;
  background: var(--exam-ink);
  color: #fff !important;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .065em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, border-color .18s ease;
}

.exam-button:hover,
.exam-btn:hover,
.card-link:hover,
.official-link:hover,
.calendar-link:hover,
.share-button:hover {
  transform: translateY(-2px);
  box-shadow: 4px 4px 0 rgba(23, 24, 20, .2);
}

.exam-button.orange,
.exam-button.primary,
.exam-btn.primary,
.card-link.primary {
  border-color: var(--exam-orange);
  background: var(--exam-orange);
}

.exam-hero .exam-button.secondary,
.exam-detail-hero .exam-button.secondary,
.exam-hero .share-button,
.exam-detail-hero .share-button {
  border-color: rgba(255, 255, 255, .36);
  background: transparent;
}

.exam-button.secondary,
.exam-btn.secondary,
.share-button,
.calendar-link {
  border-color: var(--exam-line-strong);
  background: transparent;
  color: var(--exam-ink) !important;
}

.exam-hero-board,
.exam-summary-board {
  position: relative;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, .2);
  background: rgba(246, 241, 226, .96);
  color: var(--exam-ink);
  box-shadow: 14px 16px 0 rgba(0, 0, 0, .2);
  transform: rotate(1deg);
}

.exam-hero-board::before,
.exam-summary-board::before,
.exam-card::before,
.exam-panel.taped::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 50%;
  width: 88px;
  height: 24px;
  background: rgba(231, 198, 119, .76);
  box-shadow: 0 1px 2px rgba(0, 0, 0, .08);
  transform: translateX(-50%) rotate(-2deg);
  pointer-events: none;
}

.exam-board-label,
.exam-hero-board > h2 {
  margin: 0 0 22px;
  color: var(--exam-muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.exam-stat-grid,
.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--exam-line);
  border: 1px solid var(--exam-line);
}

.exam-stat,
.hero-stat {
  min-width: 0;
  padding: 18px;
  background: var(--exam-paper-light);
}

.exam-stat strong,
.hero-stat strong {
  display: block;
  color: var(--exam-ink);
  font-family: Raleway, Arial, sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 850;
  letter-spacing: -.04em;
  line-height: 1;
}

.exam-stat span,
.hero-stat span {
  display: block;
  margin-top: 7px;
  color: var(--exam-muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.exam-last-updated,
.source-check {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 20px 0 0;
  color: var(--exam-muted) !important;
  font-size: 12px;
  line-height: 1.45;
}

.exam-last-updated::before,
.source-check::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--exam-green);
  box-shadow: 0 0 0 4px rgba(46, 114, 83, .12);
}

/* Sayfa başlıkları ve kritik tarihler */
.exam-section,
.exam-index-section,
.exam-directory {
  padding: clamp(64px, 8vw, 104px) 0;
}

.exam-section + .exam-section,
.exam-detail-content + .exam-section {
  border-top: 1px solid var(--exam-line);
}

.exam-section-head,
.exam-intro,
.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  align-items: end;
  gap: 44px;
  margin-bottom: 38px;
}

.exam-section-head h2,
.exam-intro h2,
.section-heading h2,
.exam-detail-content h2 {
  margin: 0;
  color: var(--exam-ink);
  font-family: Raleway, Arial, sans-serif;
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 830;
  letter-spacing: -.045em;
  line-height: 1;
}

.exam-section-head p,
.exam-intro p,
.section-heading p {
  margin: 0;
  color: var(--exam-muted);
  font-size: 16px;
  line-height: 1.75;
}

.deadline-strip,
.critical-deadlines,
.exam-deadline-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: -34px auto 0;
  position: relative;
  z-index: 3;
}

.deadline-item,
.critical-deadline {
  position: relative;
  min-width: 0;
  padding: 22px 24px;
  border: 1px solid var(--exam-line);
  border-top: 5px solid var(--exam-orange);
  background: var(--exam-paper-light);
  box-shadow: var(--exam-shadow);
}

.deadline-item:nth-child(2n),
.critical-deadline:nth-child(2n) {
  border-top-color: var(--exam-blue);
}

.deadline-item time,
.critical-deadline time,
.deadline-date {
  color: var(--exam-orange-dark);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.deadline-item h2,
.deadline-item h3,
.critical-deadline h2,
.critical-deadline h3 {
  margin: 8px 0 5px;
  color: var(--exam-ink);
  font-size: 19px;
  line-height: 1.2;
}

.deadline-item p,
.critical-deadline p {
  margin: 0;
  color: var(--exam-muted);
  font-size: 13px;
  line-height: 1.5;
}

[data-countdown-date] {
  font-variant-numeric: tabular-nums;
}

.exam-countdown,
.countdown-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-top: 12px;
  padding: 4px 9px;
  border: 1px dashed currentColor;
  color: var(--exam-blue-dark);
  background: rgba(25, 88, 155, .06);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .035em;
}

/* Filtreler */
.exam-toolbar,
.exam-filters {
  position: relative;
  margin-bottom: 22px;
  padding: 22px;
  border: 1px solid var(--exam-line);
  background: rgba(251, 248, 240, .84);
  box-shadow: 6px 7px 0 rgba(23, 24, 20, .06);
}

.exam-filter-grid,
.filter-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.65fr) repeat(3, minmax(150px, .8fr)) minmax(150px, .8fr) auto;
  align-items: end;
  gap: 12px;
}

.exam-field,
.filter-field,
.exam-search-field {
  min-width: 0;
}

.exam-field label,
.filter-field label,
.exam-search-field label,
.exam-toolbar > label {
  display: block;
  margin: 0 0 7px;
  color: var(--exam-ink-soft);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .095em;
  line-height: 1.3;
  text-transform: uppercase;
}

.exam-field input,
.exam-field select,
.filter-field input,
.filter-field select,
.exam-search-field input,
.exam-toolbar > input,
.exam-toolbar > select {
  width: 100%;
  min-height: 48px;
  padding: 0 13px;
  border: 1px solid var(--exam-line-strong);
  border-radius: 2px;
  background: #fffdf7;
  color: var(--exam-ink);
  outline: none;
}

.exam-field input::placeholder,
.exam-search-field input::placeholder {
  color: #8d8d84;
}

.exam-field input:focus,
.exam-field select:focus,
.filter-field input:focus,
.filter-field select:focus,
.exam-search-field input:focus {
  border-color: var(--exam-blue);
  box-shadow: 0 0 0 4px rgba(25, 88, 155, .1);
}

#reset-filters,
.reset-filters {
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--exam-line-strong);
  border-radius: 2px;
  background: transparent;
  color: var(--exam-ink-soft);
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

#reset-filters:hover,
.reset-filters:hover {
  border-color: var(--exam-ink);
  background: var(--exam-ink);
  color: #fff;
}

.exam-result-bar,
.result-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 34px;
  margin: 8px 0 17px;
}

#exam-result-status,
.exam-result-status {
  margin: 0;
  color: var(--exam-muted);
  font-size: 13px;
  font-weight: 700;
}

/* Duyuru kartları */
.exam-grid,
#exam-grid,
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.exam-card {
  position: relative;
  min-width: 0;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--exam-line);
  border-radius: var(--exam-radius);
  background: var(--exam-paper-light);
  box-shadow: 0 7px 20px rgba(52, 40, 20, .055);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.exam-card:nth-child(3n + 2)::before {
  left: 23%;
  transform: translateX(-50%) rotate(3deg);
}

.exam-card:nth-child(4n)::before {
  left: 72%;
  transform: translateX(-50%) rotate(-4deg);
}

.exam-card:hover,
.exam-card:focus-within {
  border-color: var(--exam-line-strong);
  box-shadow: 9px 11px 0 rgba(23, 24, 20, .08);
  transform: translateY(-3px) rotate(-.15deg);
}

.exam-card.is-selected {
  border-color: var(--exam-blue);
  box-shadow: 0 0 0 3px rgba(25, 88, 155, .12), 9px 11px 0 rgba(25, 88, 155, .1);
}

.exam-card-head,
.card-head,
.exam-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 22px;
}

.exam-card-location,
.card-location,
.exam-meta,
.detail-meta {
  color: var(--exam-muted);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .075em;
  line-height: 1.4;
  text-transform: uppercase;
}

.status-badge,
.exam-status,
[data-dynamic-status] {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 28px;
  padding: 4px 9px;
  border: 1px solid currentColor;
  border-radius: 99px;
  color: var(--exam-blue-dark);
  background: rgba(25, 88, 155, .07);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .055em;
  line-height: 1.2;
  text-transform: uppercase;
}

.status-badge::before,
.exam-status::before,
[data-dynamic-status]::before {
  content: "";
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: currentColor;
}

[data-dynamic-status][data-state="open"],
.status-badge.open,
.status-badge--open {
  color: var(--exam-green);
  background: rgba(46, 114, 83, .08);
}

[data-dynamic-status][data-state="soon"],
[data-dynamic-status][data-state="exam"],
.status-badge.upcoming,
.status-badge--upcoming {
  color: var(--exam-blue-dark);
}

[data-dynamic-status][data-state="review"],
.status-badge.needs-review,
.status-badge--needs-review {
  color: #8a5700;
  background: rgba(232, 189, 78, .14);
}

[data-dynamic-status][data-state="pending"],
.status-badge.pending,
.status-badge--pending {
  color: #686a64;
  background: rgba(104, 106, 100, .07);
}

[data-dynamic-status][data-state="closed"],
[data-dynamic-status][data-state="complete"] {
  color: var(--exam-red);
  background: rgba(166, 62, 50, .07);
}

.exam-card h2,
.exam-card h3,
.card-title {
  margin: 0;
  color: var(--exam-ink);
  font-family: Raleway, Arial, sans-serif;
  font-size: clamp(23px, 2.4vw, 30px);
  font-weight: 820;
  letter-spacing: -.035em;
  line-height: 1.08;
}

.exam-card h2 a,
.exam-card h3 a,
.card-title a {
  color: inherit;
  text-decoration: none;
}

.exam-card h2 a::after,
.exam-card h3 a::after,
.card-title a::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
}

.exam-card :is(button, input, .card-actions a, .compare-control, .compare-label) {
  position: relative;
  z-index: 1;
}

.exam-faculty,
.card-faculty {
  margin: 9px 0 0;
  color: var(--exam-muted) !important;
  font-size: 14px;
  line-height: 1.45;
}

.exam-card-summary,
.card-summary {
  margin: 20px 0;
  color: var(--exam-ink-soft) !important;
  font-size: 15px;
  line-height: 1.65;
}

.exam-date-grid,
.card-dates {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 20px 0;
  border: 1px solid var(--exam-line);
  background: var(--exam-line);
}

.exam-date,
.card-date {
  min-width: 0;
  padding: 13px;
  background: #fffdf8;
}

.exam-date span,
.card-date span {
  display: block;
  color: var(--exam-muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.exam-date strong,
.card-date strong,
.exam-date time,
.card-date time {
  display: block;
  margin-top: 5px;
  color: var(--exam-ink);
  font-size: 14px;
  font-weight: 850;
  line-height: 1.35;
}

.exam-departments,
.department-tags,
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.exam-departments li,
.department-tags li,
.tag,
.exam-tag {
  padding: 5px 8px;
  border: 1px solid var(--exam-line);
  background: rgba(25, 88, 155, .045);
  color: var(--exam-blue-dark);
  font-size: 11px;
  font-weight: 750;
  line-height: 1.25;
}

.card-actions,
.exam-card-actions {
  margin-top: auto;
  padding-top: 23px;
}

.card-link {
  min-height: 42px;
  padding-inline: 14px;
}

.compare-control,
.compare-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  margin-left: auto;
  color: var(--exam-ink-soft);
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
}

.compare-checkbox {
  width: 20px;
  height: 20px;
  margin: 0;
  accent-color: var(--exam-blue);
}

#exam-empty,
.exam-empty {
  padding: 52px 26px;
  border: 1px dashed var(--exam-line-strong);
  background: rgba(251, 248, 240, .7);
  text-align: center;
}

#exam-empty h2,
.exam-empty h2 {
  margin: 0 0 10px;
  color: var(--exam-ink);
  font-size: 28px;
}

#exam-empty p,
.exam-empty p {
  max-width: 540px;
  margin: 0 auto;
  color: var(--exam-muted);
}

/* Karşılaştırma tepsisi ve diyalogu */
#compare-tray,
.compare-tray {
  position: fixed;
  left: 50%;
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 990;
  width: min(660px, calc(100% - 32px));
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 12px 10px 20px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 4px;
  background: #17201e;
  color: #fff;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .3);
  transform: translateX(-50%);
}

.compare-tray-copy {
  min-width: 0;
}

.compare-tray-copy strong,
#compare-count {
  font-weight: 850;
}

.compare-tray-copy span {
  display: block;
  color: #b9c4c1;
  font-size: 12px;
}

#open-comparison {
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--exam-orange);
  border-radius: 2px;
  background: var(--exam-orange);
  color: #fff;
  cursor: pointer;
  font-weight: 850;
}

#open-comparison:disabled {
  cursor: not-allowed;
  opacity: .48;
}

body.exam-dialog-open {
  overflow: hidden;
}

#comparison-dialog,
.comparison-dialog {
  width: min(1120px, calc(100% - 32px));
  max-height: min(88vh, 900px);
  margin: auto;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--exam-line-strong);
  border-radius: 5px;
  background: var(--exam-paper-light);
  color: var(--exam-ink);
  box-shadow: 0 24px 80px rgba(0, 0, 0, .35);
}

#comparison-dialog::backdrop,
.comparison-dialog::backdrop {
  background: rgba(7, 12, 12, .76);
  backdrop-filter: blur(3px);
}

#comparison-dialog:not(dialog)[open],
.comparison-dialog:not(dialog)[open] {
  position: fixed;
  inset: 6vh 16px auto;
  z-index: 1200;
  display: block;
  margin-inline: auto;
}

.comparison-dialog-head,
.comparison-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px;
  border-bottom: 1px solid var(--exam-line);
  background: var(--exam-ink);
  color: #fff;
}

.comparison-dialog-head h2,
.comparison-header h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(24px, 4vw, 38px);
  letter-spacing: -.03em;
}

#close-comparison {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 50%;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.comparison-scroll,
#comparison-body {
  overflow: auto;
}

#comparison-body {
  max-height: 52vh;
  padding: 22px 24px;
}

.comparison-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  background: #fffdf8;
  font-size: 14px;
}

.comparison-table th,
.comparison-table td {
  min-width: 170px;
  padding: 14px;
  border: 1px solid var(--exam-line);
  text-align: left;
  vertical-align: top;
  line-height: 1.45;
}

.comparison-table thead th {
  background: var(--exam-blue-dark);
  color: #fff;
  font-size: 15px;
}

.comparison-table thead th:first-child,
.comparison-table tbody th {
  min-width: 135px;
  background: var(--exam-paper-deep);
  color: var(--exam-ink);
  font-weight: 850;
}

#comparison-conflicts {
  padding: 0 24px 24px;
}

#comparison-conflicts h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

#comparison-conflicts p {
  margin: 0;
  color: var(--exam-muted);
}

.comparison-conflict-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.comparison-conflict {
  padding: 12px 14px;
  border-left: 4px solid var(--exam-yellow);
  background: rgba(232, 189, 78, .12);
  line-height: 1.5;
}

.comparison-conflict.is-overlap {
  border-left-color: var(--exam-red);
  background: rgba(166, 62, 50, .08);
}

/* Detay sayfası */
.exam-breadcrumb,
.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
  color: #aebbb8;
  font-size: 12px;
  font-weight: 700;
}

.exam-breadcrumb li:not(:last-child)::after,
.breadcrumb-list li:not(:last-child)::after {
  content: "/";
  margin-left: 7px;
  color: #71807d;
}

.exam-breadcrumb a,
.breadcrumb-list a {
  color: #fff;
  text-decoration: none;
}

.exam-detail-meta,
.detail-meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
  margin-top: 24px;
}

.exam-detail-meta .detail-meta,
.detail-meta-row .detail-meta {
  color: #b9c5c2;
}

.exam-detail-content {
  padding: clamp(62px, 8vw, 100px) 0;
}

.exam-detail-grid,
.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(300px, .72fr);
  align-items: start;
  gap: clamp(28px, 5vw, 68px);
}

.exam-main,
.detail-main,
.exam-sidebar,
.detail-sidebar {
  min-width: 0;
}

.exam-sidebar,
.detail-sidebar {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 16px;
}

.exam-panel,
.detail-panel,
.source-card,
.exam-facts,
.timeline-panel {
  position: relative;
  margin: 0 0 22px;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid var(--exam-line);
  border-radius: var(--exam-radius);
  background: var(--exam-paper-light);
  box-shadow: 5px 6px 0 rgba(23, 24, 20, .055);
}

.exam-panel h2,
.detail-panel h2,
.source-card h2,
.timeline-panel h2 {
  margin: 0 0 22px;
  font-size: clamp(27px, 4vw, 40px);
}

.exam-panel h3,
.detail-panel h3,
.source-card h3 {
  margin: 0 0 12px;
  color: var(--exam-ink);
  font-size: 20px;
}

.exam-panel p,
.detail-panel p,
.source-card p {
  color: var(--exam-ink-soft);
  line-height: 1.7;
}

.exam-fact-grid,
.fact-grid,
.detail-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--exam-line);
  background: var(--exam-line);
}

.exam-fact,
.fact-item,
.detail-fact {
  min-width: 0;
  padding: 18px;
  background: #fffdf8;
}

.exam-fact span,
.fact-item span,
.detail-fact span {
  display: block;
  color: var(--exam-muted);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.exam-fact strong,
.fact-item strong,
.detail-fact strong {
  display: block;
  margin-top: 7px;
  color: var(--exam-ink);
  font-size: 16px;
  line-height: 1.45;
}

.exam-timeline,
.timeline-list {
  position: relative;
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.exam-timeline::before,
.timeline-list::before {
  content: "";
  position: absolute;
  top: 9px;
  bottom: 20px;
  left: 11px;
  width: 2px;
  background: var(--exam-line-strong);
}

.exam-timeline-item,
.timeline-item {
  position: relative;
  padding: 0 0 26px 42px;
}

.exam-timeline-item::before,
.timeline-item::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 4px;
  width: 16px;
  height: 16px;
  border: 4px solid var(--exam-paper-light);
  border-radius: 50%;
  background: var(--exam-orange);
  box-shadow: 0 0 0 1px var(--exam-orange);
}

.exam-timeline-item:last-child,
.timeline-item:last-child {
  padding-bottom: 0;
}

.exam-timeline-item time,
.timeline-item time {
  display: block;
  color: var(--exam-orange-dark);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.exam-timeline-item h3,
.timeline-item h3 {
  margin: 5px 0;
  font-size: 19px;
  line-height: 1.25;
}

.exam-timeline-item p,
.timeline-item p {
  margin: 0;
  color: var(--exam-muted);
  font-size: 14px;
  line-height: 1.55;
}

.exam-alert,
.source-warning,
.detail-warning,
.candidate-note {
  position: relative;
  margin: 18px 0;
  padding: 18px 20px 18px 54px;
  border: 1px solid rgba(166, 62, 50, .25);
  border-left: 5px solid var(--exam-red);
  background: rgba(166, 62, 50, .065);
  color: var(--exam-ink-soft);
  line-height: 1.6;
}

.exam-alert::before,
.source-warning::before,
.detail-warning::before,
.candidate-note::before {
  content: "!";
  position: absolute;
  top: 18px;
  left: 18px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--exam-red);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.candidate-note {
  border-color: rgba(25, 88, 155, .25);
  border-left-color: var(--exam-blue);
  background: rgba(25, 88, 155, .065);
}

.candidate-note::before {
  content: "i";
  background: var(--exam-blue);
}

.detail-list,
.materials-list,
.format-list,
.source-list {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.detail-list li,
.materials-list li,
.format-list li,
.source-list li {
  position: relative;
  padding-left: 20px;
  color: var(--exam-ink-soft);
  line-height: 1.55;
}

.detail-list li::before,
.materials-list li::before,
.format-list li::before,
.source-list li::before {
  content: "";
  position: absolute;
  top: .65em;
  left: 0;
  width: 9px;
  height: 3px;
  background: var(--exam-orange);
}

.source-card {
  border-top: 5px solid var(--exam-blue);
}

.official-links {
  align-items: stretch;
}

.official-link,
.calendar-link {
  flex: 1 1 150px;
  min-height: 44px;
  padding-inline: 12px;
}

.source-url {
  overflow-wrap: anywhere;
  color: var(--exam-blue-dark);
}

.quota-table-wrap {
  overflow-x: auto;
}

.quota-table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
}

.quota-table th,
.quota-table td {
  padding: 12px 14px;
  border: 1px solid var(--exam-line);
  text-align: left;
}

.quota-table th {
  background: var(--exam-paper-deep);
}

.related-grid .exam-card {
  min-height: 320px;
}

.exam-legal-note,
.data-note {
  padding: 18px 0;
  color: var(--exam-muted);
  font-size: 13px;
  line-height: 1.65;
}

.visually-hidden,
.sr-only {
  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;
}

@media (max-width: 1180px) {
  .exam-filter-grid,
  .filter-grid {
    grid-template-columns: minmax(250px, 1.4fr) repeat(2, minmax(150px, 1fr));
  }

  .exam-search-field {
    grid-column: span 2;
  }

  #reset-filters,
  .reset-filters {
    width: 100%;
  }
}

@media (max-width: 1024px) {
  .exam-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(310px, .65fr);
    gap: 38px;
  }

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

  .exam-detail-grid,
  .detail-layout {
    grid-template-columns: minmax(0, 1.45fr) minmax(270px, .65fr);
    gap: 30px;
  }
}

@media (max-width: 960px) {
  .exam-page .header-section .menu-list :is(.exam-active, .exams-active, [aria-current="page"]) {
    background: rgba(255, 255, 255, .07);
    color: #fff;
  }

  .exam-page .header-section .menu-list :is(li.exam-active, li.exams-active) > a {
    background: rgba(255, 255, 255, .07);
    color: #fff;
  }

  .exam-page .header-section .menu-list :is(.exam-active, .exams-active, [aria-current="page"])::after {
    right: 13px;
    left: auto;
    bottom: 50%;
    width: 6px;
    height: 6px;
    margin: 0;
    border-radius: 50%;
    opacity: 1;
    transform: translateY(50%);
  }

  .exam-page .header-section .menu-list :is(li.exam-active, li.exams-active) > a::after {
    right: 13px;
    left: auto;
    bottom: 50%;
    width: 6px;
    height: 6px;
    margin: 0;
    border-radius: 50%;
    opacity: 1;
    transform: translateY(50%);
  }

  .exam-hero {
    min-height: auto;
    padding: 142px 0 74px;
  }

  .exam-hero-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .exam-hero-board {
    width: min(620px, 96%);
    transform: rotate(.4deg);
  }

  .deadline-strip,
  .critical-deadlines,
  .exam-deadline-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .exam-detail-grid,
  .detail-layout {
    grid-template-columns: 1fr;
  }

  .exam-sidebar,
  .detail-sidebar {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .exam-shell,
  .exam-container {
    width: min(100% - 32px, 1240px);
  }

  .exam-hero h1,
  .exam-detail-hero h1 {
    font-size: clamp(41px, 11vw, 66px);
  }

  .exam-detail-hero {
    min-height: auto;
    padding: 128px 0 58px;
  }

  .exam-section-head,
  .exam-intro,
  .section-heading {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 18px;
  }

  .deadline-strip,
  .critical-deadlines,
  .exam-deadline-list {
    margin-top: -24px;
  }

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

  .exam-search-field {
    grid-column: 1 / -1;
  }

  .exam-grid,
  #exam-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .exam-card {
    min-height: 0;
  }

  .exam-sidebar,
  .detail-sidebar {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .exam-shell,
  .exam-container {
    width: min(100% - 28px, 1240px);
  }

  .exam-hero {
    padding: 124px 0 62px;
  }

  .exam-hero h1,
  .exam-detail-hero h1 {
    font-size: clamp(38px, 12vw, 54px);
    letter-spacing: -.05em;
  }

  .exam-hero-lede,
  .exam-hero-copy,
  .exam-detail-lede {
    font-size: 16px;
    line-height: 1.62;
  }

  .exam-hero-board,
  .exam-summary-board {
    width: 100%;
    padding: 22px;
    box-shadow: 8px 9px 0 rgba(0, 0, 0, .18);
    transform: none;
  }

  .exam-stat,
  .hero-stat {
    padding: 14px;
  }

  .exam-stat strong,
  .hero-stat strong {
    font-size: 29px;
  }

  .deadline-strip,
  .critical-deadlines,
  .exam-deadline-list {
    grid-template-columns: 1fr;
  }

  .exam-section,
  .exam-index-section,
  .exam-directory,
  .exam-detail-content {
    padding-block: 58px;
  }

  .exam-toolbar,
  .exam-filters {
    margin-inline: -4px;
    padding: 16px;
  }

  .exam-filter-grid,
  .filter-grid {
    grid-template-columns: 1fr;
  }

  .exam-search-field {
    grid-column: auto;
  }

  .exam-card {
    padding: 24px 20px 22px;
  }

  .exam-card-head,
  .card-head,
  .exam-card-top {
    flex-direction: column-reverse;
    align-items: flex-start;
  }

  .exam-date-grid,
  .card-dates,
  .exam-fact-grid,
  .fact-grid,
  .detail-facts {
    grid-template-columns: 1fr;
  }

  .card-actions,
  .exam-card-actions {
    align-items: stretch;
  }

  .card-link {
    flex: 1 1 100%;
  }

  .compare-control,
  .compare-label {
    margin-left: 0;
  }

  #compare-tray,
  .compare-tray {
    width: calc(100% - 20px);
    min-height: 64px;
    gap: 10px;
    padding: 9px 9px 9px 14px;
  }

  .compare-tray-copy span {
    display: none;
  }

  #open-comparison {
    padding-inline: 11px;
    font-size: 12px;
  }

  #comparison-dialog,
  .comparison-dialog {
    width: calc(100% - 16px);
    max-height: 94vh;
  }

  .comparison-dialog-head,
  .comparison-header {
    padding: 16px;
  }

  #comparison-body {
    padding: 14px;
  }

  #comparison-conflicts {
    padding: 0 14px 16px;
  }

  .exam-panel,
  .detail-panel,
  .source-card,
  .exam-facts,
  .timeline-panel {
    padding: 21px 18px;
  }

  .exam-alert,
  .source-warning,
  .detail-warning,
  .candidate-note {
    padding: 48px 16px 16px;
  }

  .exam-alert::before,
  .source-warning::before,
  .detail-warning::before,
  .candidate-note::before {
    top: 15px;
    left: 16px;
  }
}

@media (max-width: 390px) {
  .exam-shell,
  .exam-container {
    width: min(100% - 22px, 1240px);
  }

  .exam-hero-actions > *,
  .detail-actions > * {
    width: 100%;
  }

  .exam-card h2,
  .exam-card h3,
  .card-title {
    font-size: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .exam-page *,
  .exam-page *::before,
  .exam-page *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* Üretici şablonunun semantik bileşenleri. */
.exam-page .trust-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px 16px;
  margin-top: 28px;
  color: #c7d1ce;
  font-size: 13px;
}

.exam-page .trust-line a,
.exam-detail-meta .detail-meta a,
.methodology-page .method-byline a {
  color: inherit;
  text-decoration-color: rgba(255, 255, 255, 0.5);
  text-underline-offset: 3px;
}

.exam-page .trust-line > span:first-child {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--exam-green);
  color: #fff;
  font-weight: 900;
}

.exam-page .exam-stats {
  margin: 0;
}

.exam-page .exam-stats .hero-stat dt {
  color: var(--exam-muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .07em;
  line-height: 1.3;
  text-transform: uppercase;
}

.exam-page .exam-stats .hero-stat dd {
  margin: 8px 0 0;
  color: var(--exam-ink);
  font-family: Raleway, Arial, sans-serif;
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 850;
  letter-spacing: -.04em;
  line-height: 1;
}

.exam-page .critical-section {
  padding-top: 58px;
}

.exam-page .critical-track {
  margin-top: 0;
}

.exam-page .critical-item > p:first-child {
  color: var(--exam-orange-dark);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.exam-page .critical-item > strong {
  display: block;
  margin-top: 8px;
  font: 850 clamp(32px, 5vw, 52px)/1 Raleway, Arial, sans-serif;
}

.exam-page .exam-toolbar {
  position: sticky;
  top: 78px;
  z-index: 30;
  backdrop-filter: blur(14px);
}

.exam-page .exam-toolbar > label > span {
  display: block;
  margin-bottom: 7px;
}

.exam-page .exam-toolbar .exam-field input,
.exam-page .exam-toolbar .exam-field select,
.exam-page .exam-toolbar .exam-search-field input {
  width: 100%;
}

.exam-page .exam-card-stripe {
  position: absolute;
  top: 16px;
  right: 18px;
  color: rgba(23, 24, 20, .19);
  font: 850 42px/1 Raleway, Arial, sans-serif;
  letter-spacing: -.05em;
  pointer-events: none;
}

.exam-page .exam-card-main {
  min-width: 0;
  min-height: 100%;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.exam-page .exam-card-heading {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  align-items: start;
  justify-content: initial;
  gap: 14px;
  padding-right: 38px;
}

.exam-page .exam-card-heading > div {
  min-width: 0;
}

.exam-page .exam-university-mark {
  width: 76px;
  height: 60px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  padding: 6px;
  overflow: hidden;
  border: 1px solid var(--exam-line-strong);
  background: #fff;
  box-shadow: 3px 4px 0 rgba(23, 24, 20, .07);
}

.exam-page .exam-university-mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
}

.exam-page .exam-university-mark:is(.is-dark, .is-dark-tile, .is-on-dark) {
  border-color: #16436a;
  background: #16436a;
}

.exam-page .exam-university-mark.is-fallback {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.exam-page .exam-university-mark.is-fallback .exam-monogram {
  width: 60px;
  height: 60px;
}

.exam-page .exam-monogram {
  width: 50px;
  height: 50px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 2px solid currentColor;
  background: var(--exam-paper-deep);
  color: var(--exam-blue-dark);
  font: 850 15px/1 Raleway, Arial, sans-serif;
  letter-spacing: -.02em;
}

.exam-page .exam-card-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 2px;
}

.exam-page .verification-badge {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 9px;
  border: 1px dashed currentColor;
  border-radius: 99px;
  color: var(--exam-green);
  background: rgba(46, 114, 83, .06);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .04em;
  line-height: 1.2;
  text-transform: uppercase;
}

.exam-page .verification-pending {
  color: var(--exam-muted);
  background: rgba(105, 108, 99, .06);
}

.exam-page .verification-needs-review {
  color: #8a5700;
  background: rgba(232, 189, 78, .12);
}

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

.exam-page .exam-card-facts > div:last-child {
  grid-column: 1 / -1;
}

.exam-page .exam-date dt {
  color: var(--exam-muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.exam-page .exam-date dd {
  margin: 5px 0 0;
  color: var(--exam-ink);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.45;
}

.exam-page .card-countdown {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  margin: 0 0 14px;
  color: var(--exam-blue-dark);
  font-size: 12px;
  font-weight: 800;
}

.exam-page .card-countdown small {
  color: var(--exam-muted);
  font-size: 11px;
  font-weight: 600;
}

.exam-page .card-countdown.is-muted {
  color: var(--exam-muted);
}

.exam-page .exam-card-departments span {
  padding: 5px 8px;
  border: 1px solid var(--exam-line);
  background: rgba(25, 88, 155, .045);
  color: var(--exam-blue-dark);
  font-size: 11px;
  font-weight: 750;
  line-height: 1.25;
}

.exam-page .exam-source-date {
  margin: 16px 0 0;
  color: var(--exam-muted);
  font-size: 11px;
}

.exam-page .exam-link {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid var(--exam-line-strong);
  border-radius: 2px;
  background: transparent;
  color: var(--exam-ink-soft);
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
}

.exam-page .exam-link:hover {
  border-color: var(--exam-ink);
  background: var(--exam-ink);
  color: #fff;
}

.exam-page .compare-choice {
  margin: 16px 0 0;
}

.exam-page .exam-guide {
  padding: clamp(70px, 9vw, 116px) 0;
  border-top: 1px solid var(--exam-line);
  background: var(--exam-paper-deep);
}

.exam-page .guide-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--exam-line);
  background: var(--exam-line);
}

.exam-page .guide-grid article {
  min-width: 0;
  padding: 26px;
  background: var(--exam-paper-light);
}

.exam-page .guide-grid article > span {
  color: var(--exam-orange-dark);
  font: 850 12px/1 Raleway, Arial, sans-serif;
}

.exam-page .guide-grid h3 {
  margin: 20px 0 10px;
  font-size: 21px;
}

.exam-page .guide-grid p {
  margin: 0;
  color: var(--exam-muted);
  font-size: 14px;
  line-height: 1.65;
}

.exam-page .exam-disclaimer {
  margin: 26px 0 0;
  padding: 18px 20px;
  border-left: 4px solid var(--exam-blue);
  background: rgba(25, 88, 155, .07);
  color: var(--exam-ink-soft);
  line-height: 1.6;
}

.exam-page .detail-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(230px, .45fr);
  align-items: end;
  gap: 46px;
}

.exam-page .exam-detail-hero h1 span {
  display: block;
  margin-top: 10px;
  color: #ff8a4e;
  font-size: .48em;
  letter-spacing: -.035em;
  line-height: 1.08;
}

.exam-page .detail-lead {
  max-width: 790px;
  margin: 24px 0 0;
  color: #c7d1ce;
  font-size: 18px;
  line-height: 1.7;
}

.exam-page .detail-stamp {
  display: grid;
  gap: 10px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .25);
  background: rgba(8, 15, 15, .35);
}

.exam-page .detail-stamp .exam-monogram {
  background: var(--exam-paper-deep);
}

.exam-page .detail-stamp .exam-university-mark {
  width: min(100%, 136px);
  height: 88px;
  padding: 10px;
  box-shadow: none;
}

.exam-page .detail-stamp .exam-university-mark.is-fallback {
  width: 64px;
  height: 64px;
  padding: 0;
}

.exam-page .detail-stamp .exam-university-mark.is-fallback .exam-monogram {
  width: 64px;
  height: 64px;
}

.exam-page .detail-stamp strong {
  color: #fff;
  font-size: 17px;
  line-height: 1.35;
}

.exam-page .detail-stamp > span:last-child {
  color: #b9c5c2;
  font-size: 12px;
}

.exam-page .detail-status-row .verification-badge {
  color: #9ed8bb;
  background: rgba(46, 114, 83, .16);
}

.exam-page .detail-section-heading {
  margin-bottom: 24px;
}

.exam-page .detail-section-heading .exam-eyebrow {
  margin-bottom: 10px;
}

.exam-page .detail-section-heading h2 {
  margin: 0;
}

.exam-page .warning-panel h2 {
  margin: 0 0 12px;
  font-size: 24px;
}

.exam-page .table-scroll {
  max-width: 100%;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
}

.exam-page .exam-table {
  width: 100%;
  min-width: 660px;
  border-collapse: collapse;
}

.exam-page .exam-table th,
.exam-page .exam-table td {
  padding: 13px 14px;
  border: 1px solid var(--exam-line);
  text-align: left;
  vertical-align: top;
  line-height: 1.5;
}

.exam-page .exam-table th {
  background: var(--exam-paper-deep);
  font-size: 12px;
  letter-spacing: .04em;
}

.exam-page .exam-table td {
  background: #fffdf8;
  font-size: 13px;
}

.exam-page .exam-table small {
  color: var(--exam-muted);
}

.exam-page .detail-split,
.exam-page .format-grid,
.exam-page .materials-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.exam-page .detail-split > div + div,
.exam-page .materials-grid > div + div {
  padding-left: 26px;
  border-left: 1px solid var(--exam-line);
}

.exam-page .lead-rule {
  color: var(--exam-ink-soft);
  font-size: 17px;
  line-height: 1.7;
}

.exam-page .detail-fact dt {
  color: var(--exam-muted);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.exam-page .detail-fact dd {
  margin: 7px 0 0;
  color: var(--exam-ink);
  font-size: 15px;
  font-weight: 750;
  line-height: 1.45;
}

.exam-page .unknown-value,
.exam-page .pending-panel {
  margin: 0;
  padding: 18px;
  border: 1px dashed var(--exam-line-strong);
  background: rgba(251, 248, 240, .62);
  color: var(--exam-muted);
  line-height: 1.6;
}

.exam-page .source-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.exam-page .detail-jump {
  display: grid;
  gap: 0;
}

.exam-page .detail-jump strong {
  margin-bottom: 8px;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.exam-page .detail-jump a {
  padding: 10px 0;
  border-bottom: 1px solid var(--exam-line);
  color: var(--exam-blue-dark);
  font-weight: 750;
  text-decoration: none;
}

.exam-page .application-summary dl {
  margin: 0;
}

.exam-page .application-summary dl > div {
  padding: 12px 0;
  border-top: 1px solid var(--exam-line);
}

.exam-page .application-summary dt {
  color: var(--exam-muted);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.exam-page .application-summary dd {
  margin: 4px 0 0;
  color: var(--exam-ink);
  font-weight: 750;
  line-height: 1.45;
}

.exam-page .related-exams {
  padding: clamp(64px, 8vw, 100px) 0;
  border-top: 1px solid var(--exam-line);
  background: var(--exam-paper-deep);
}

.exam-page .related-exam-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.exam-page .related-exam-grid a {
  min-width: 0;
  display: grid;
  gap: 9px;
  padding: 24px;
  border: 1px solid var(--exam-line);
  background: var(--exam-paper-light);
  color: inherit;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease;
}

.exam-page .related-exam-grid a:hover {
  transform: translateY(-3px);
  box-shadow: 7px 8px 0 rgba(23, 24, 20, .08);
}

.exam-page .related-exam-grid span,
.exam-page .related-exam-grid small {
  color: var(--exam-muted);
  font-size: 12px;
}

.exam-page .related-exam-grid strong {
  font: 820 21px/1.2 Raleway, Arial, sans-serif;
}

.exam-page .related-exam-grid .related-university-heading {
  min-width: 0;
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  color: var(--exam-ink);
}

.exam-page .related-exam-grid .exam-university-mark {
  width: 62px;
  height: 52px;
}

.exam-page .related-exam-grid .exam-university-mark.is-fallback .exam-monogram {
  width: 50px;
  height: 50px;
  color: var(--exam-blue-dark);
}

@media (max-width: 960px) {
  .exam-page .exam-toolbar {
    position: relative;
    top: auto;
  }

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

  .exam-page .detail-hero-grid {
    grid-template-columns: 1fr;
  }

  .exam-page .detail-stamp {
    max-width: 420px;
  }
}

@media (max-width: 700px) {
  .exam-page .exam-card-heading {
    grid-template-columns: 68px minmax(0, 1fr);
    gap: 12px;
    padding-right: 30px;
  }

  .exam-page .exam-card-heading .exam-university-mark {
    width: 68px;
    height: 56px;
  }

  .exam-page .exam-card-heading .exam-university-mark.is-fallback .exam-monogram {
    width: 56px;
    height: 56px;
  }

  .exam-page .exam-card-facts,
  .exam-page .detail-split,
  .exam-page .format-grid,
  .exam-page .materials-grid,
  .exam-page .guide-grid,
  .exam-page .related-exam-grid {
    grid-template-columns: 1fr;
  }

  .exam-page .detail-split > div + div,
  .exam-page .materials-grid > div + div {
    padding: 24px 0 0;
    border-top: 1px solid var(--exam-line);
    border-left: 0;
  }

  .exam-page .exam-card-facts > div:last-child {
    grid-column: auto;
  }

  .exam-page .exam-table:not(.quota-table),
  .exam-page .exam-table:not(.quota-table) tbody,
  .exam-page .exam-table:not(.quota-table) tr,
  .exam-page .exam-table:not(.quota-table) td {
    width: 100%;
    min-width: 0;
    display: block;
  }

  .exam-page .exam-table:not(.quota-table) thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
  }

  .exam-page .exam-table:not(.quota-table) tr {
    margin-bottom: 14px;
    border: 1px solid var(--exam-line);
    background: #fffdf8;
  }

  .exam-page .exam-table:not(.quota-table) td {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 12px;
    border: 0;
    border-bottom: 1px solid var(--exam-line);
  }

  .exam-page .exam-table:not(.quota-table) td:last-child {
    border-bottom: 0;
  }

  .exam-page .exam-table:not(.quota-table) td::before {
    color: var(--exam-muted);
    font-size: 9px;
    font-weight: 850;
    letter-spacing: .07em;
    text-transform: uppercase;
  }

  .exam-page .exam-table:not(.quota-table) td:nth-child(1)::before { content: "Bölüm"; }
  .exam-page .exam-table:not(.quota-table) td:nth-child(2)::before { content: "Sınav"; }
  .exam-page .exam-table:not(.quota-table) td:nth-child(3)::before { content: "Tarih / saat"; }
  .exam-page .exam-table:not(.quota-table) td:nth-child(4)::before { content: "Yer"; }
}

@media print {
  .exam-page .header-section,
  .exam-page .footer-section,
  .exam-toolbar,
  .exam-filters,
  #compare-tray,
  #comparison-dialog,
  .share-button,
  [data-share] {
    display: none !important;
  }

  body.exam-page {
    background: #fff;
    color: #000;
  }

  .exam-hero,
  .exam-detail-hero {
    min-height: auto;
    padding: 34px 0;
    background: #fff;
    color: #000;
  }

  .exam-hero h1,
  .exam-detail-hero h1,
  .exam-hero-lede,
  .exam-detail-lede {
    color: #000 !important;
  }

  .exam-card,
  .exam-panel,
  .detail-panel,
  .source-card {
    break-inside: avoid;
    box-shadow: none;
  }
}

.exam-page .exam-faq {
  padding: clamp(64px, 8vw, 104px) 0;
  background: #e9e3d6;
  color: var(--exam-ink);
}

.exam-page .method-link {
  color: var(--exam-rust);
  font-size: 13px;
  font-weight: 800;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.exam-page .faq-list {
  border-top: 1px solid var(--exam-line);
}

.exam-page .faq-list details {
  border-bottom: 1px solid var(--exam-line);
  background: rgba(255, 253, 248, .45);
}

.exam-page .faq-list summary {
  position: relative;
  padding: 24px 58px 24px 22px;
  color: var(--exam-ink);
  cursor: pointer;
  font: 800 clamp(17px, 2vw, 21px)/1.35 Raleway, Arial, sans-serif;
  list-style: none;
}

.exam-page .faq-list summary::-webkit-details-marker { display: none; }

.exam-page .faq-list summary::after {
  content: "+";
  position: absolute;
  top: 19px;
  right: 22px;
  color: var(--exam-rust);
  font-size: 28px;
  font-weight: 500;
}

.exam-page .faq-list details[open] summary::after { content: "−"; }

.exam-page .faq-list summary:focus-visible {
  outline: 3px solid var(--exam-rust);
  outline-offset: -3px;
}

.exam-page .faq-list p {
  max-width: 900px;
  margin: 0;
  padding: 0 58px 25px 22px;
  color: var(--exam-muted);
  font-size: 16px;
  line-height: 1.75;
}

.methodology-page .methodology-hero h1 {
  max-width: 980px;
  margin: 30px 0 24px;
  color: #fff;
  font: 900 clamp(48px, 8vw, 92px)/.93 Raleway, Arial, sans-serif;
  letter-spacing: -.055em;
}

.methodology-page .methodology-hero h1 span { color: var(--exam-orange); }

.methodology-page .method-byline {
  margin: 26px 0 0;
  color: #c6d1ce;
  font-size: 14px;
}

.methodology-page .methodology-layout {
  padding-top: clamp(48px, 7vw, 84px);
  padding-bottom: clamp(70px, 9vw, 112px);
}

.methodology-page .method-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 54px;
  border: 1px solid var(--exam-line);
  background: var(--exam-line);
  gap: 1px;
}

.methodology-page .method-stats article {
  display: grid;
  gap: 8px;
  min-height: 126px;
  align-content: center;
  padding: 22px;
  background: #fffdf8;
}

.methodology-page .method-stats strong {
  color: var(--exam-rust);
  font: 900 38px/1 Raleway, Arial, sans-serif;
}

.methodology-page .method-stats span {
  color: var(--exam-muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.methodology-page .methodology-content {
  display: grid;
  gap: 22px;
  max-width: 980px;
  margin: 0 auto;
}

.methodology-page .methodology-content > section,
.methodology-page .method-callout {
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid var(--exam-line);
  background: #fffdf8;
  box-shadow: 8px 9px 0 rgba(18, 23, 19, .055);
}

.methodology-page .methodology-content h2 {
  margin: 9px 0 18px;
  color: var(--exam-ink);
  font: 850 clamp(28px, 4vw, 43px)/1.05 Raleway, Arial, sans-serif;
  letter-spacing: -.035em;
}

.methodology-page .methodology-content p {
  margin: 0;
  color: var(--exam-muted);
  font-size: 17px;
  line-height: 1.8;
}

.methodology-page .methodology-content a {
  color: var(--exam-rust);
  font-weight: 800;
}

.methodology-page .method-callout {
  border-left: 5px solid var(--exam-rust);
  background: #f3eadb;
}

.methodology-page .method-callout strong {
  display: block;
  margin-bottom: 10px;
  color: var(--exam-ink);
  font: 850 21px/1.35 Raleway, Arial, sans-serif;
}

.methodology-page .method-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 42px;
}

@media (max-width: 820px) {
  .methodology-page .method-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 520px) {
  .exam-page .exam-faq .section-heading { align-items: flex-start; }
  .exam-page .faq-list summary { padding: 20px 48px 20px 16px; }
  .exam-page .faq-list summary::after { top: 16px; right: 16px; }
  .exam-page .faq-list p { padding: 0 16px 22px; }
  .methodology-page .method-stats { grid-template-columns: 1fr; }
  .methodology-page .method-stats article { min-height: 104px; }
  .methodology-page .method-actions { align-items: stretch; flex-direction: column; }
  .methodology-page .method-actions .exam-button { justify-content: center; }
}
