.hero-card {
  min-height: 246px;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 20px;
  align-items: center;
  padding: 38px 34px;
  border-radius: 12px;
  color: white;
  background: linear-gradient(130deg, #0a2c65, #061b43 68%, #0a3b83);
  box-shadow: 0 14px 34px rgba(8, 40, 92, .12);
  overflow: hidden;
}

.category-landing-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  gap: 18px;
  align-items: stretch;
  padding: 18px;
  border: 1px solid var(--kit-border, #e5eaf3);
  border-radius: 8px;
  background: #fff;
}

.landing-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
  color: var(--primary, #0d5fe8);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.category-landing-copy h2 {
  margin: 0 0 8px;
  color: var(--navy, #071331);
  font-size: 24px;
  line-height: 1.2;
}

.category-landing-copy p {
  margin: 0;
  color: #52627a;
  line-height: 1.6;
}

.category-landing-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.category-landing-stats div {
  display: grid;
  gap: 4px;
  min-width: 0;
  padding: 12px;
  border: 1px solid #e6edf8;
  border-radius: 8px;
  background: #f8fbff;
}

.category-landing-stats i {
  color: var(--primary, #0d5fe8);
  font-size: 18px;
}

.category-landing-stats span {
  color: #64748b;
  font-size: 12px;
  font-weight: 700;
}

.category-landing-stats strong {
  color: var(--navy, #071331);
  font-size: 20px;
}

.category-guide-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.category-guide-grid article {
  min-width: 0;
  padding: 14px;
  border: 1px solid #e6edf8;
  border-radius: 8px;
  background: #fff;
}

.category-guide-grid h3 {
  margin: 0 0 8px;
  color: var(--navy, #071331);
  font-size: 15px;
}

.category-guide-grid p {
  margin: 0;
  color: #52627a;
  font-size: 13px;
  line-height: 1.55;
}

.favorites-panel {
  padding: 16px;
}

.favorites-list {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.favorite-announcement-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(160px, 210px);
  gap: 16px;
  padding: 14px;
  border: 1px solid var(--kit-border, #e5eaf3);
  border-radius: 8px;
  background: #fff;
}

.favorite-announcement-card__main,
.favorite-announcement-card__side {
  min-width: 0;
}

.favorite-announcement-card h2 {
  margin: 8px 0 5px;
  font-size: 18px;
  line-height: 1.25;
}

.favorite-announcement-card h2 a {
  color: var(--navy, #071331);
}

.favorite-announcement-card p {
  margin: 0 0 10px;
  color: #52627a;
}

.favorite-announcement-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.favorite-announcement-card__meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  max-width: 100%;
  padding: 5px 8px;
  border: 1px solid #e6edf8;
  border-radius: 8px;
  color: #52627a;
  font-size: 12px;
  font-weight: 700;
}

.favorite-announcement-card__side {
  display: grid;
  align-content: center;
  justify-items: end;
  gap: 8px;
  text-align: right;
}

.favorite-announcement-card__side small {
  color: #64748b;
  font-weight: 700;
}

.favorite-announcement-card__side strong {
  color: #dc2626;
}

@media (max-width: 900px) {
  .category-landing-panel,
  .favorite-announcement-card {
    grid-template-columns: 1fr;
  }

  .category-guide-grid {
    grid-template-columns: 1fr;
  }

  .favorite-announcement-card__side {
    justify-items: start;
    text-align: left;
  }
}

@media (max-width: 520px) {
  .category-landing-panel,
  .favorites-panel {
    padding: 12px;
  }

  .category-landing-stats {
    grid-template-columns: 1fr;
  }

  .category-landing-copy h2 {
    font-size: 20px;
  }
}
.hero-card h1 { font-size: 31px; font-weight: 900; margin-bottom: 16px; }
.hero-card p { font-size: 20px; line-height: 1.55; max-width: 720px; }
.hero-actions { display: flex; gap: 14px; margin-top: 26px; }
.hero-visual { position: relative; min-height: 190px; }
.calendar-illustration, .clock-illustration {
  position: absolute;
  display: grid;
  place-items: center;
  background: #fff;
  color: #0d5fe8;
  box-shadow: 0 18px 30px rgba(0,0,0,.2);
}
.calendar-illustration { right: 80px; top: 0; width: 140px; height: 120px; border-radius: 10px; font-size: 64px; transform: rotate(4deg); }
.clock-illustration { right: 6px; bottom: 16px; width: 110px; height: 110px; border-radius: 50%; font-size: 56px; color: #08285c; }
.hero-visual span { position: absolute; left: 66px; top: 80px; width: 56px; height: 56px; display: grid; place-items: center; border-radius: 50%; background: #12bfa6; font-size: 32px; }

.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid #d8e9ff;
  background: linear-gradient(180deg, #f2f9ff, #fff);
  border-radius: 12px;
  padding: 14px 0;
}
.feature-strip div { display: grid; grid-template-columns: 54px 1fr; column-gap: 10px; align-items: center; padding: 0 28px; border-right: 1px solid #d8e9ff; }
.feature-strip div:last-child { border-right: 0; }
.feature-strip i { grid-row: span 2; font-size: 32px; color: #0d5fe8; }
.feature-strip strong { color: #08285c; font-size: 17px; }
.feature-strip span { color: #667085; }

.mini-calendar .calendar-head { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; }
.calendar-mini-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; text-align: center; }
.calendar-mini-grid span, .calendar-mini-grid b { padding: 8px 0; }
.calendar-mini-grid .today { background: var(--primary); color: white; border-radius: 50%; }
.calendar-legend { display: flex; flex-wrap: wrap; gap: 10px; border-top: 1px solid var(--border); margin-top: 14px; padding-top: 12px; color: #29436e; }

.page-title-row { padding: 8px 4px; }
.page-title-row h1 { font-size: 40px; font-weight: 900; color: #081d49; }
.page-title-row p { color: #536889; font-size: 18px; }
.with-art { display: flex; justify-content: space-between; align-items: center; background: linear-gradient(120deg, transparent, #eaf2ff); border-radius: 12px; padding: 28px 24px; }
.title-art { color: #0d5fe8; font-size: 82px; opacity: .85; }
.search-box { max-width: none; position: relative; margin-bottom: 18px; }
.search-box input { width: 100%; border: 1px solid #cfdaea; border-radius: 7px; height: 46px; padding: 0 48px 0 18px; }
.search-box i { position: absolute; right: 16px; top: 13px; color: #08285c; font-size: 20px; }
.filters-panel label { display: block; color: #08285c; font-weight: 800; margin-bottom: 14px; }
.filter-dates { display: grid; grid-template-columns: 1fr; gap: 8px; }
.saved-filter div { background: #f5f9ff; border-radius: 8px; padding: 12px; margin-bottom: 8px; font-weight: 700; }
.saved-filter small { display: block; color: #667085; }
.table-frame { width: 100%; overflow: visible; }
.empty-state {
  display: grid;
  place-items: center;
  gap: 6px;
  min-height: 150px;
  color: #536889;
  text-align: center;
  border-top: 1px solid var(--border);
}
.empty-state[hidden] { display: none; }
.empty-state i {
  color: var(--primary);
  font-size: 28px;
}
.empty-state strong {
  color: #08285c;
  font-size: 17px;
}
.app-table {
  width: 100%;
  table-layout: fixed;
  color: #10234b;
  vertical-align: middle;
  margin-bottom: 0;
}
.app-table th,
.app-table td {
  padding: 13px 8px;
  border-color: #edf1f7;
  overflow-wrap: normal;
  word-break: normal;
}
.app-table thead th { color: #516483; font-size: 12px; border-bottom-color: #b8c6dc; }
.app-table th:nth-child(1), .app-table td:nth-child(1) { width: 29%; }
.app-table th:nth-child(2), .app-table td:nth-child(2) { width: 13%; }
.app-table th:nth-child(3), .app-table td:nth-child(3) { width: 17%; }
.app-table th:nth-child(4), .app-table td:nth-child(4) { width: 12%; }
.app-table th:nth-child(5), .app-table td:nth-child(5) { width: 12%; }
.app-table th:nth-child(6), .app-table td:nth-child(6) { width: 6%; }
.app-table th:nth-child(7), .app-table td:nth-child(7) { width: 11%; }
.table-job { display: flex; align-items: center; gap: 12px; min-width: 0; }
.table-job strong { display: block; line-height: 1.25; }
.table-job small { color: #667085; overflow-wrap: normal; }
.comparison-table {
  width: 100%;
  table-layout: fixed;
  color: #10234b;
  font-size: 13px;
}
.comparison-table th,
.comparison-table td {
  padding: 12px 8px;
  border-color: #edf1f7;
  overflow-wrap: anywhere;
}
.comparison-table thead th { color: #516483; font-size: 11px; border-bottom-color: #b8c6dc; }
.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  background: #eaf2ff;
  color: var(--primary);
  border-radius: 7px;
  padding: 6px 10px;
  font-weight: 800;
  line-height: 1.1;
  white-space: nowrap;
  word-break: keep-all;
}
.summary-grid { display: grid; grid-template-columns: 1fr 1fr; }
.summary-grid div { min-height: 120px; display: grid; place-items: center; text-align: center; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.summary-grid b { font-size: 28px; color: var(--primary); }
.notify-form > * { margin-bottom: 12px; }
.quick-links a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
  font-weight: 800;
  transition: color .18s ease, padding-left .18s ease;
}
.quick-links a:hover { color: var(--primary); padding-left: 4px; }
.quick-links h3 { font-size: 18px; line-height: 1.25; }
.calculator-links a { align-items: flex-start; gap: 12px; }
.calculator-links a > span {
  display: grid;
  gap: 5px;
  min-width: 0;
}
.calculator-links strong {
  display: flex;
  gap: 8px;
  align-items: center;
  color: #08285c;
  line-height: 1.25;
}
.calculator-links small {
  display: block;
  color: #667085;
  font-weight: 500;
  line-height: 1.35;
}
.dataTables_wrapper .row:first-child,
.dataTables_wrapper .dt-search,
.dataTables_wrapper .dt-length { display: none !important; }
.dataTables_wrapper .row:last-child { align-items: center; margin-top: 14px; }

.detail-page { padding: 22px 0; }
.breadcrumb-line { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; min-width: 0; color: #37598c; margin-bottom: 16px; }
.breadcrumb-line strong,
.breadcrumb-line span,
.breadcrumb-line a {
  min-width: 0;
  overflow-wrap: anywhere;
}
.detail-layout { display: grid; grid-template-columns: minmax(0,1fr) 440px; gap: 24px; }
.detail-main,
.detail-heading,
.detail-actions,
.social-share-bar,
.official-check-card,
.info-strip {
  min-width: 0;
}
.back-link { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 10px; color: #385987; border: 1px solid #cad8eb; padding: 7px 12px; border-radius: 6px; }
.detail-hero { display: grid; grid-template-columns: 130px minmax(0, 1fr); gap: 24px; align-items: center; padding: 34px 28px; }
.big-seal { width: 110px; height: 110px; font-size: 42px; }
.detail-heading h1 { font-size: 34px; font-weight: 900; overflow-wrap: anywhere; }
.detail-heading p span { margin-left: 12px; padding: 5px 10px; background: #eaf2ff; border-radius: 7px; color: var(--primary); }
.detail-actions { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 12px; }
.social-share-bar {
  grid-column: 1 / -1;
  width: 100%;
}
.social-share-bar .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  white-space: nowrap;
}
.official-check-card {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
  margin-top: 4px;
}
.official-check-card div {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 2px 12px;
  align-items: center;
  min-width: 0;
  padding: 13px 14px;
  background: #f7fbff;
  border: 1px solid #d5e4f6;
  border-radius: 8px;
}
.official-check-card i {
  grid-row: 1 / 3;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #0d5fe8;
  background: #eaf2ff;
  border-radius: 8px;
  font-size: 20px;
}
.official-check-card span {
  color: #60738d;
  font-size: 12px;
  font-weight: 800;
}
.official-check-card strong {
  min-width: 0;
  color: #10234b;
  font-size: 13px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}
.info-strip { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(8, 1fr); border-top: 1px solid var(--border); margin-top: 18px; padding-top: 22px; }
.info-strip div { border-right: 1px solid var(--border); padding: 0 14px; }
.info-strip i { color: var(--primary); font-size: 28px; }
.info-strip span, .info-strip b { display: block; }
.app-tabs { gap: 12px; border-bottom: 1px solid var(--border); }
.app-tabs .nav-link { color: #425f8d; font-weight: 800; border: 0; border-bottom: 3px solid transparent; border-radius: 0; }
.app-tabs .active { color: var(--primary); border-bottom-color: var(--primary); }
.tabs-card .tab-pane { padding: 24px 0 0; }
.detail-tab-content { min-height: 260px; }
.detail-tab-content h2 { font-size: 24px; margin-bottom: 14px; }
.detail-tab-content h3 { font-size: 17px; margin-bottom: 10px; }
.announcement-content,
.official-html-content {
  max-width: 100%;
  overflow-wrap: anywhere;
  color: #273b5d;
  font-size: 15.5px;
  line-height: 1.75;
}
.announcement-content .official-announcement-content,
.official-html-content .official-announcement-content {
  display: grid;
  gap: 10px;
}
.announcement-content h2,
.official-html-content h2 {
  margin: 26px 0 10px;
  color: #0e2b5c;
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 850;
  line-height: 1.28;
  padding-bottom: 7px;
  border-bottom: 1px solid #dbe8f7;
}
.announcement-content h3,
.official-html-content h3 {
  margin: 20px 0 8px;
  color: #15396d;
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 800;
  line-height: 1.35;
}
.announcement-content p,
.official-html-content p {
  margin: 0 0 14px;
}
.announcement-content p,
.announcement-content li,
.official-html-content p,
.official-html-content li {
  line-height: 1.72;
}
.announcement-content ul,
.announcement-content ol,
.official-html-content ul,
.official-html-content ol {
  margin: 0 0 16px;
  padding-left: 22px;
}
.announcement-content li + li,
.official-html-content li + li {
  margin-top: 6px;
}
.announcement-content a,
.official-html-content a {
  color: #0d6efd;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.announcement-content hr,
.official-html-content hr {
  margin: 24px 0;
  border: 0;
  border-top: 1px solid #dbe8f7;
}
.announcement-content br,
.official-html-content br {
  line-height: 1.8;
}
.announcement-content .announcement-table-wrapper,
.official-html-content .announcement-table-wrapper {
  display: block;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 18px 0 22px;
  border: 1px solid #d8e3f2;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(15, 35, 75, 0.06);
}
.announcement-content table,
.official-html-content table {
  width: 100%;
  min-width: max(920px, 100%);
  border-collapse: collapse;
  background: white;
  font-size: 14px;
  line-height: 1.45;
  table-layout: auto;
}
.announcement-content > table,
.official-html-content > table {
  display: block;
  min-width: max(920px, 100%);
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.announcement-content th,
.announcement-content td,
.official-html-content th,
.official-html-content td {
  padding: 11px 13px;
  border: 1px solid #d8e3f2;
  vertical-align: top;
  white-space: normal;
  overflow-wrap: break-word;
  word-break: normal;
}
.announcement-content th,
.official-html-content th {
  background: #eef5ff;
  color: #10234b;
  font-weight: 800;
  vertical-align: middle;
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: keep-all;
}
.announcement-content td,
.official-html-content td {
  color: #263a5c;
}
.announcement-content tbody tr:nth-child(even) td,
.official-html-content tbody tr:nth-child(even) td {
  background: #fbfdff;
}
.announcement-content > :first-child,
.announcement-content .official-announcement-content > :first-child,
.official-html-content > :first-child,
.official-html-content .official-announcement-content > :first-child {
  margin-top: 0;
}
.date-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.date-summary div {
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #f8fbff;
  padding: 16px;
}
.date-summary span,
.date-summary b { display: block; }
.date-summary span { color: var(--text-muted); margin-bottom: 8px; }
.date-summary b { color: #08285c; font-size: 17px; }
.exam-list {
  display: grid;
  gap: 10px;
  padding-left: 22px;
}
.detail-tab-content details {
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  padding: 14px 16px;
  margin-bottom: 10px;
}
.detail-tab-content summary {
  color: #08285c;
  cursor: pointer;
  font-weight: 800;
}
.detail-tab-content details p {
  color: #536889;
  margin: 10px 0 0;
}
.two-col-list { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; }
.two-col-list li, .check-list li { margin-bottom: 9px; }
.timeline-step { display: grid; grid-template-columns: 34px 1fr; gap: 14px; position: relative; padding-bottom: 18px; }
.timeline-step b { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; color: #8090a8; border: 1px solid #cad8eb; background: white; }
.timeline-step.done b, .timeline-step.current b { color: white; background: var(--primary); border-color: var(--primary); }
.timeline-step.done b { background: var(--success); border-color: var(--success); }
.timeline-step small { display: block; color: #536889; margin-top: 4px; }
.alert-warn { background: #fff9ec; border-color: #f9dc9b; color: #92530b; }
.alert-danger-soft { background: #fff2f2; border-color: #ffc9c9; color: #bc1f1f; }

.stepper { display: grid; grid-template-columns: repeat(5, 1fr); position: relative; margin-bottom: 30px; }
.step { text-align: center; color: #7a8ca9; font-weight: 700; }
.step b { display: block; width: 36px; height: 36px; margin: 0 auto 8px; border-radius: 50%; background: #eef2f8; }
.step.active b { background: var(--primary); box-shadow: inset 0 0 0 11px var(--primary); }
.form-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px 26px; }
.form-grid label, .calc-form label { color: #25436f; font-weight: 800; }
.form-submit { grid-column: 4; align-self: end; }
.eligibility-cards { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.eligibility-card { border: 1px solid var(--border); border-radius: 10px; padding: 16px; position: relative; }
.fit-badge { display: inline-block; padding: 6px 10px; border-radius: 7px; background: #dcf7e8; color: #07833d; font-weight: 800; }
.fit-badge.şartayakın { background: #fff0ce; color: #c36d00; }
.fit-badge.uygundeğil { background: #ffe4e4; color: #c62828; }
.bmi-widget .two-input { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.bmi-widget input { border: 1px solid #d5dfef; border-radius: 7px; padding: 10px; width: 100%; }
.bmi-result { text-align: center; background: #ecfff4; border: 1px solid #bee8d0; border-radius: 8px; padding: 18px; margin: 16px 0; }
.bmi-result b { display: block; color: var(--success); font-size: 30px; }
.scale, .bmi-scale { height: 8px; background: linear-gradient(90deg, #29a862 0 34%, #f2a71b 34% 70%, #ea3d3d 70%); border-radius: 99px; }
.bmi-scale[hidden] { display: none; }

.stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.stat-card { position: relative; border: 1px solid var(--border); border-radius: 12px; padding: 18px 24px; background: white; box-shadow: var(--shadow); }
.stat-card b { display: block; font-size: 30px; color: var(--primary); }
.stat-card i { position: absolute; right: 24px; top: 22px; width: 56px; height: 56px; display: grid; place-items: center; border-radius: 50%; background: #eaf2ff; font-size: 28px; }
.calendar-toolbar { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; margin-bottom: 14px; }
.calendar-toolbar h1 { margin-right: auto; font-size: 25px; font-weight: 900; }
.calendar-toolbar .form-select { width: 150px; }
.month-label { border: 1px solid #cbd8ec; background: white; border-radius: 6px; min-height: 38px; padding: 0 22px; font-weight: 800; }
.upcoming-row { display: grid; grid-template-columns: 16px 170px 1fr 180px 110px; gap: 12px; align-items: center; padding: 12px 0; border-bottom: 1px solid var(--border); }
.calendar-add button { width: 100%; border: 1px solid #cbd8ec; background: white; border-radius: 7px; padding: 14px; margin-bottom: 10px; color: #0b2d66; font-weight: 800; }
.legend-card p, .reminders p { display: grid; grid-template-columns: 16px 1fr; gap: 10px; align-items: start; }
.legend-card small { display: block; color: #667085; }

.calc-tabs { display: grid; grid-template-columns: repeat(6, 1fr); padding: 0; overflow: hidden; }
.calc-tabs button { border: 0; border-right: 1px solid var(--border); background: white; min-height: 104px; color: #08285c; font-weight: 800; }
.calc-tabs button.active { background: #edf5ff; color: var(--primary); border-bottom: 4px solid var(--primary); }
.calc-tabs i { display: block; font-size: 33px; margin-bottom: 10px; }
.calculator-main { display: grid; grid-template-columns: 1fr 1.35fr; gap: 44px; }
.calc-form { display: flex; flex-direction: column; gap: 14px; }
.calc-dynamic-fields { display: flex; flex-direction: column; gap: 14px; }
.segment { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.segment button { border: 1px solid #cbd8ec; background: white; border-radius: 8px; min-height: 44px; font-weight: 800; }
.segment button.active { background: var(--primary); color: white; border-color: var(--primary); }
.calc-buttons { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.calc-result { border: 1px solid var(--border); border-radius: 12px; padding: 26px; }
.result-head { display: flex; gap: 20px; align-items: center; }
.result-head i { width: 70px; height: 70px; display: grid; place-items: center; border-radius: 50%; background: #28b65f; color: white; font-size: 40px; }
.result-head h2 { color: #148a48; font-size: 36px; }
.calc-result.result-warn .result-head i { background: #f2a71b; }
.calc-result.result-warn .result-head h2 { color: #b46900; }
.calc-result.result-bad .result-head i { background: #ea3d3d; }
.calc-result.result-bad .result-head h2 { color: #c62828; }
.result-boxes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 22px 0; }
.result-boxes div { border: 1px solid var(--border); border-radius: 8px; padding: 18px; text-align: center; }
.result-boxes b { display: block; color: #08285c; font-size: 23px; margin-top: 8px; }
.formula-box { grid-column: 1 / -1; background: #f2f8ff; border: 1px solid #cfe0fa; border-radius: 8px; padding: 14px; display: flex; justify-content: space-between; }
.bottom-panels { display: grid; grid-template-columns: 1fr 1fr .75fr; gap: 18px; }

.guide-grid { display: grid; grid-template-columns: 320px minmax(0,1fr) 460px; gap: 24px; padding: 22px 0; }
.guide-toc { position: sticky; top: 110px; align-self: start; padding: 0; overflow: hidden; }
.toc-link { display: block; padding: 13px 22px; border-bottom: 1px solid var(--border); color: #345783; font-weight: 800; }
.toc-link.active { color: var(--primary); border-left: 4px solid var(--primary); background: #f4f9ff; }
.toc-alert { margin: 18px; padding: 14px; border: 1px solid #cfe0fa; border-radius: 8px; color: #25436f; }
.toc-alert a { display: block; color: var(--primary); font-weight: 800; margin-top: 8px; }
.guide-hero { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 30px; color: white; background: linear-gradient(130deg, #0a2c65, #061b43); border-radius: 12px; padding: 34px; margin-bottom: 12px; overflow: hidden; }
.guide-hero > div:first-child { min-width: 0; }
.guide-hero h1 { font-size: 42px; font-weight: 900; line-height: 1.12; margin-top: 0; }
.guide-tags { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-bottom: 14px; }
.tag { display: inline-flex; align-items: center; width: max-content; max-width: 100%; background: #145bbf; border-radius: 8px; padding: 8px 14px; font-weight: 800; line-height: 1; white-space: nowrap; }
.guide-meta, .share-row { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; margin-top: 22px; }
.guide-meta button, .share-row button { border: 0; background: rgba(255,255,255,.12); color: white; border-radius: 50%; min-width: 44px; height: 44px; }
.soldier-art { display: grid; place-items: center; position: relative; font-size: 170px; color: rgba(255,255,255,.75); }
.guide-article section { padding: 10px 0 24px; border-bottom: 1px solid var(--border); }
.guide-article h2 { color: #08285c; }
.check-list { list-style: none; padding-left: 0; }
.check-list li::before { content: "✓"; color: white; background: var(--success); border-radius: 50%; padding: 0 4px; margin-right: 10px; }
.related-guides a { display: grid; grid-template-columns: 44px 1fr 16px; gap: 12px; align-items: center; padding: 12px 0; border-bottom: 1px solid var(--border); font-weight: 800; }
.related-guides i:first-child { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%; background: #eaf2ff; color: var(--primary); }
.related-guides small, .official-links small { display: block; color: #667085; }
.green-cta { background: #effdf5; border-color: #c8efda; }
.green-cta h3 { color: #07833d; }
.green-cta a { display: flex; justify-content: center; gap: 10px; background: var(--success); color: white; border-radius: 7px; padding: 14px; font-weight: 800; }
.official-links a { display: block; border: 1px solid #d4e3f8; border-radius: 8px; padding: 12px; color: var(--primary); margin-bottom: 10px; font-weight: 800; }

.guide-list-grid { grid-template-columns: 320px minmax(0, 1fr) 360px; }
.guide-index-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 120px;
  align-items: center;
  gap: 20px;
  padding: 34px;
  color: white;
  background: linear-gradient(130deg, #0a2c65, #061b43);
  border-radius: 12px;
  overflow: hidden;
}
.guide-index-hero h1 { font-size: 42px; font-weight: 900; margin: 16px 0 8px; }
.guide-index-hero p { color: rgba(255,255,255,.88); font-size: 18px; margin: 0; }
.guide-index-hero > i { font-size: 88px; color: rgba(255,255,255,.72); justify-self: end; }
.featured-guide-card {
  display: block;
  border-color: #cfe0fa;
  background: linear-gradient(180deg, #f8fbff, #fff);
}
.featured-guide-card span { color: var(--primary); font-weight: 900; font-size: 13px; }
.featured-guide-card h2 { margin: 8px 0; font-size: 25px; }
.featured-guide-card p { color: #536889; margin-bottom: 12px; }
.featured-guide-card small,
.guide-card small { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; color: #536889; font-weight: 800; }
.guide-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.guide-card {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 14px;
  min-height: 176px;
  color: inherit;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.guide-card:hover {
  color: inherit;
  border-color: #bdd5f7;
  transform: translateY(-2px);
}
.guide-card-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #eaf2ff;
  color: var(--primary);
  font-size: 25px;
}
.guide-card h2 {
  font-size: 19px;
  line-height: 1.25;
  margin-bottom: 8px;
}
.guide-card p {
  color: #536889;
  margin-bottom: 14px;
}
.guide-tool-links { display: grid; gap: 10px; }
.guide-tool-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
  color: #08285c;
  font-weight: 800;
}
.guide-tool-links a:hover { color: var(--primary); }

.auth-page {
  min-height: calc(100vh - 148px);
  display: grid;
  align-items: center;
  padding: 42px 0;
}
.auth-page.compact {
  justify-content: center;
}
.auth-shell {
  width: min(100% - 48px, 1180px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 460px;
  gap: 24px;
  align-items: stretch;
}
.auth-intro {
  min-height: 560px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 46px;
  color: white;
  border-radius: 12px;
  background: linear-gradient(130deg, #0a2c65, #061b43);
  overflow: hidden;
}
.auth-intro h1 {
  max-width: 720px;
  margin: 18px 0 16px;
  font-size: 42px;
  font-weight: 900;
  line-height: 1.12;
}
.auth-intro p {
  max-width: 640px;
  color: rgba(255,255,255,.86);
  font-size: 18px;
  line-height: 1.6;
}
.auth-benefits,
.auth-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}
.auth-benefits span,
.auth-stats div {
  min-height: 86px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 10px;
  background: rgba(255,255,255,.08);
  font-weight: 800;
}
.auth-benefits i { font-size: 25px; }
.auth-stats b { font-size: 24px; }
.auth-stats span { color: rgba(255,255,255,.8); }
.auth-panel {
  align-self: center;
  width: min(100%, 460px);
  margin: 0 auto;
}
.auth-page.compact .auth-panel { width: min(100% - 32px, 520px); }
.auth-form-head h2 {
  margin-bottom: 8px;
  font-size: 30px;
  font-weight: 900;
}
.auth-form-head p { color: #536889; }
.auth-panel form {
  display: grid;
  gap: 15px;
}
.auth-panel label {
  color: #08285c;
  font-weight: 800;
}
.auth-panel .form-control {
  min-height: 46px;
  margin-top: 7px;
}
.auth-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
}
.auth-row a,
.auth-switch a { color: var(--primary); font-weight: 800; }
.check-control {
  display: flex;
  gap: 9px;
  align-items: center;
  margin: 0;
  color: #25436f;
}
.check-control input { width: 16px; height: 16px; }
.terms-control { align-items: flex-start; font-weight: 700; }
.auth-switch {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  color: #536889;
  text-align: center;
}
.auth-success {
  display: grid;
  gap: 7px;
  padding: 18px;
  margin-bottom: 16px;
  color: #07833d;
  border: 1px solid #bee8d0;
  border-radius: 10px;
  background: #ecfff4;
}
.auth-success i { font-size: 28px; }
.text-danger {
  display: block;
  margin-top: 5px;
  color: var(--danger) !important;
  font-size: 12px;
  font-weight: 700;
}

.profile-page { padding: 26px 0 34px; }
.profile-message {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 16px;
  padding: 14px 18px;
  border: 1px solid #bee8d0;
  border-radius: 10px;
  color: #07833d;
  background: #ecfff4;
  font-weight: 800;
}
.profile-hero {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
}
.profile-avatar {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: linear-gradient(155deg, #0c3476, #061d45);
  font-size: 40px;
}
.profile-hero span {
  color: var(--primary);
  font-weight: 900;
}
.profile-hero h1 {
  margin: 4px 0;
  font-size: 34px;
  font-weight: 900;
}
.profile-hero p { color: #536889; margin: 0; }
.profile-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}
.profile-facts { margin-top: 12px; }
.profile-checks,
.profile-actions {
  display: grid;
  gap: 10px;
}
.profile-checks span,
.profile-actions a {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
  color: #08285c;
  font-weight: 800;
}
.profile-checks i { color: var(--success); }
.profile-actions a:hover { color: var(--primary); }

.discussion-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr) 300px;
  gap: 20px;
  align-items: start;
  padding: 22px 0 34px;
}
.discussion-sidebar,
.discussion-right {
  display: grid;
  gap: 16px;
}
.discussion-main,
.discussion-detail-main {
  display: grid;
  gap: 16px;
  min-width: 0;
}
.discussion-hero {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding: 28px 32px;
  border: 1px solid #d9e6f7;
  border-radius: 14px;
  background: linear-gradient(135deg, #eef6ff 0%, #ffffff 62%);
}
.discussion-hero h1 {
  margin: 4px 0 8px;
  color: #06265a;
  font-size: 34px;
  font-weight: 950;
  letter-spacing: 0;
}
.discussion-hero p {
  max-width: 740px;
  margin: 0;
  color: #51698f;
  font-size: 15px;
  line-height: 1.7;
}
.eyebrow {
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.community-category-list {
  display: grid;
  gap: 8px;
}
.community-category-list a {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 12px;
  border-radius: 10px;
  color: #092b61;
  font-weight: 850;
}
.community-category-list a:hover,
.community-category-list a.active {
  background: #eef5ff;
  color: var(--primary);
}
.community-category-list b {
  min-width: 30px;
  padding: 3px 8px;
  border-radius: 999px;
  color: #35506f;
  background: #e8f0fa;
  text-align: center;
  font-size: 12px;
}
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tag-cloud a,
.tag-cloud span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #0a3a7a;
  background: #eef5ff;
  font-size: 12px;
  font-weight: 850;
}
.tag-cloud a:hover,
.tag-cloud a.active {
  color: white;
  background: var(--primary);
}
.tag-cloud.compact {
  margin-top: 10px;
  gap: 6px;
}
.tag-cloud.compact a {
  min-height: 26px;
  padding: 4px 9px;
  font-size: 11px;
}
.discussion-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.discussion-stats div {
  padding: 18px;
  border: 1px solid #dce8f7;
  border-radius: 12px;
  background: white;
  text-align: center;
}
.discussion-stats strong {
  display: block;
  color: var(--primary);
  font-size: 26px;
  line-height: 1;
}
.discussion-stats span {
  color: #5d708f;
  font-size: 12px;
  font-weight: 800;
}
.discussion-search {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) 94px;
  gap: 8px;
  align-items: center;
  margin-bottom: 14px;
  padding: 8px 10px;
  border: 1px solid #d8e4f3;
  border-radius: 10px;
  background: #fff;
}
.discussion-search i {
  color: var(--primary);
  text-align: center;
}
.discussion-search input {
  min-width: 0;
  border: 0;
  outline: none;
  color: #0a2858;
  font-weight: 700;
}
.discussion-search button,
.question-actions button,
.answer-actions button,
.comment-form button,
.report-form button {
  border: 0;
  border-radius: 8px;
  color: white;
  background: var(--primary);
  font-weight: 900;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.discussion-search button:hover,
.question-actions button:hover,
.answer-actions button:hover,
.comment-form button:hover,
.report-form button:hover,
.btn-primary-soft:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(13, 95, 232, .18);
}
.discussion-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.discussion-tabs a {
  padding: 8px 12px;
  border-radius: 999px;
  color: #0a2858;
  background: #f4f7fb;
  font-weight: 900;
  font-size: 13px;
}
.discussion-tabs a:hover,
.discussion-tabs a.active {
  color: white;
  background: var(--primary);
}
.question-feed {
  display: grid;
}
.question-card {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.question-card:last-child { border-bottom: 0; }
.question-votes {
  display: grid;
  gap: 4px;
  align-content: start;
  justify-items: center;
  padding-top: 4px;
  color: #5d708f;
  font-size: 11px;
  font-weight: 800;
}
.question-votes strong {
  width: 46px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: #0a3978;
  background: #eef5ff;
  font-size: 18px;
}
.question-body {
  min-width: 0;
}
.question-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: #6b7b94;
  font-size: 12px;
  font-weight: 800;
}
.category-pill,
.soft-pill {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 999px;
  background: #eef5ff;
  color: #0d5fe8;
  font-size: 12px;
  font-weight: 900;
}
.soft-pill.solved {
  color: #07833d;
  background: #e9fbf1;
}
.soft-pill.pinned {
  color: #945a00;
  background: #fff4d7;
}
.question-card h2 {
  margin: 10px 0 8px;
  font-size: 19px;
  line-height: 1.35;
  font-weight: 950;
}
.question-card h2 a { color: #08285c; }
.question-card h2 a:hover { color: var(--primary); }
.question-card p,
.question-content {
  margin: 0;
  color: #445a7c;
  line-height: 1.75;
}
.question-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 12px;
  color: #6b7b94;
  font-size: 12px;
  font-weight: 750;
}
.side-question-list {
  display: grid;
  gap: 10px;
}
.side-question-list a {
  display: grid;
  gap: 4px;
  padding: 12px;
  border: 1px solid #e1eaf6;
  border-radius: 10px;
  color: #08285c;
  background: #fff;
}
.side-question-list a:hover {
  border-color: #bad3fa;
  background: #f5f9ff;
}
.side-question-list span {
  color: #6b7b94;
  font-size: 12px;
  font-weight: 700;
}
.community-rules p {
  color: #51698f;
  line-height: 1.65;
}
.btn-outline-wide {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid #cddcf0;
  border-radius: 8px;
  color: #0a3978;
  background: white;
  font-weight: 900;
}
.btn-outline-wide:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.discussion-detail-layout,
.discussion-form-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 20px;
  align-items: start;
  padding: 22px 0 34px;
}
.info-banner {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 10px;
  font-weight: 850;
}
.info-banner.success {
  color: #08763a;
  border: 1px solid #bce8cf;
  background: #ecfff4;
}
.question-detail h1 {
  margin: 14px 0;
  color: #06265a;
  font-size: 30px;
  line-height: 1.25;
  font-weight: 950;
}
.author-line {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 12px 0;
}
.avatar.small {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #0d5fe8;
  background: #eaf2ff;
  font-weight: 950;
}
.author-line small {
  display: block;
  color: #6b7b94;
  font-weight: 750;
}
.question-actions,
.answer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 16px;
}
.question-actions button,
.answer-actions button {
  min-height: 36px;
  padding: 8px 12px;
  color: #0a3978;
  background: #eef5ff;
}
.answers-panel,
.answer-form-panel,
.ask-panel {
  display: grid;
  gap: 16px;
}
.answer-card {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid #e1eaf6;
  border-radius: 12px;
  background: white;
}
.answer-card.accepted {
  border-color: #a9e0bf;
  background: #fbfffd;
}
.answer-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
}
.answer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: flex-end;
}
.comment-list {
  display: grid;
  gap: 8px;
  padding: 10px 0 0 14px;
  border-left: 3px solid #e6effb;
}
.comment-item {
  display: grid;
  gap: 3px;
  color: #51698f;
}
.comment-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42px;
  gap: 8px;
}
.comment-form input,
.report-form select,
.report-form textarea,
.community-form input,
.community-form select,
.community-form textarea,
.answer-form-panel textarea {
  width: 100%;
  border: 1px solid #d6e2f1;
  border-radius: 9px;
  padding: 11px 12px;
  outline: none;
  color: #0a2858;
  background: white;
  font-weight: 700;
}
.comment-form input:focus,
.report-form select:focus,
.report-form textarea:focus,
.community-form input:focus,
.community-form select:focus,
.community-form textarea:focus,
.answer-form-panel textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(13, 95, 232, .1);
}
.answer-form-panel form,
.report-form,
.community-form {
  display: grid;
  gap: 14px;
}
.community-form label {
  display: grid;
  gap: 7px;
  color: #08285c;
  font-weight: 900;
}
.community-form small {
  color: #6b7b94;
  font-weight: 700;
}
.form-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.check-row {
  display: flex !important;
  grid-template-columns: none;
  gap: 10px !important;
  align-items: center;
}
.check-row input {
  width: auto;
}
.clean-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
  color: #51698f;
  font-weight: 750;
}
.auth-callout {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 16px;
  border: 1px solid #d8e4f3;
  border-radius: 12px;
  background: #f7fbff;
}
.report-form button {
  min-height: 38px;
}
.narrow-page {
  max-width: 900px;
  padding: 24px 0 36px;
}
.notification-list {
  display: grid;
  gap: 8px;
}
.notification-row {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid #e1eaf6;
  border-radius: 12px;
  color: #08285c;
  background: white;
}
.notification-row.unread {
  border-color: #b8d4fb;
  background: #f4f9ff;
}
.notification-row i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--primary);
  background: #eaf2ff;
}
.notification-row small {
  display: block;
  color: #5d708f;
}
.notification-row time {
  color: #6b7b94;
  font-size: 12px;
  font-weight: 800;
}
.community-profile-page,
.admin-page {
  display: grid;
  gap: 18px;
  padding: 24px 0 36px;
}

/* Shared category directory */
.categories-page,
.category-detail-page { padding: 28px 0 42px; min-width: 0; }
.category-page-header,
.category-detail-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 32px;
  margin-bottom: 22px;
  border: 1px solid #dce8f8;
  border-radius: 8px;
  background: #eef5ff;
}
.category-page-header h1,
.category-detail-hero h1 { margin-bottom: 8px; font-size: 30px; }
.category-page-header p,
.category-detail-hero p { margin: 0; color: #536580; }
.category-page-header > i { color: var(--primary); font-size: 64px; }
.category-card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.category-main-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 320px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}
.category-main-card:hover { border-color: #b8cff4; box-shadow: 0 16px 34px rgba(8, 40, 92, .11); }
.category-card-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.category-card-icon { display: inline-grid; place-items: center; flex: 0 0 46px; width: 46px; height: 46px; border-radius: 8px; background: #eaf2ff; color: var(--primary); font-size: 22px; }
.category-count { color: #5e6d84; font-size: 12px; }
.category-count strong { color: var(--text-dark); font-size: 16px; }
.category-main-card h2 { margin: 18px 0 8px; font-size: 20px; }
.category-main-card p { color: #64748b; line-height: 1.55; }
.category-child-links { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 18px; }
.category-child-links a { padding: 6px 9px; border: 1px solid #dce7f6; border-radius: 6px; color: #345075; font-size: 12px; }
.category-child-links a:hover { border-color: var(--primary); color: var(--primary); background: #f4f8ff; }
.category-detail-link { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 15px; border-top: 1px solid var(--border); color: var(--primary); font-weight: 700; }
.category-panel-all { display: flex; justify-content: space-between; margin-top: 10px; padding: 12px 8px 2px; border-top: 1px solid rgba(255,255,255,.16); color: white; font-weight: 700; }
.page-breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; color: #60708a; font-size: 13px; }
.page-breadcrumb a:hover { color: var(--primary); }
.category-detail-hero { justify-content: flex-start; background: white; }
.category-detail-hero > div { min-width: 0; flex: 1; }
.category-section { margin-bottom: 20px; }
.subcategory-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; }
.subcategory-grid a { display: flex; align-items: center; justify-content: space-between; min-width: 0; padding: 13px 14px; border: 1px solid var(--border); border-radius: 7px; background: white; font-weight: 700; }
.subcategory-grid a:hover { color: var(--primary); border-color: #b8cff4; }
.category-content-grid { display: grid; grid-template-columns: minmax(0, 1fr) 310px; gap: 20px; align-items: start; }
.category-content-grid > * { min-width: 0; }
.compact-jobs .job-row { padding-inline: 4px; }
.category-empty { display: grid; justify-items: center; gap: 7px; padding: 44px 20px; color: #7a879a; text-align: center; }
.category-empty i { color: #9db3d2; font-size: 32px; }
.related-link-list { display: grid; }
.related-link-list > a { display: grid; grid-template-columns: 34px minmax(0, 1fr) 18px; gap: 10px; align-items: center; padding: 13px 4px; border-bottom: 1px solid var(--border); }
.related-link-list > a:hover { color: var(--primary); }
.related-link-list small,
.deadline-list span { display: block; color: #738198; margin-top: 3px; }
.deadline-list a { display: block; padding: 12px 0; border-bottom: 1px solid var(--border); }
.muted-copy { margin: 10px 0 0; color: #77859a; }

/* Server-driven announcement filters */
.search-box button { border: 0; background: transparent; color: var(--primary-dark); font-size: 20px; }
.server-tabs a { display: inline-flex; align-items: center; gap: 4px; padding: 13px 0; border-bottom: 3px solid transparent; white-space: nowrap; font-weight: 700; }
.server-tabs a:hover,
.server-tabs a.active { color: var(--primary); border-bottom-color: var(--primary); }
.announcements-table th:nth-child(1), .announcements-table td:nth-child(1) { width: 30%; }
.announcements-table th:nth-child(2), .announcements-table td:nth-child(2) { width: 14%; }
.announcements-table th:nth-child(3), .announcements-table td:nth-child(3) { width: 16%; }
.announcements-table th:nth-child(4), .announcements-table td:nth-child(4) { width: 13%; }
.announcements-table th:nth-child(5), .announcements-table td:nth-child(5) { width: 13%; }
.announcements-table th:nth-child(6), .announcements-table td:nth-child(6) { width: 14%; }
.announcements-table td > small { display: block; color: #718096; }
.table-actions { display: grid; gap: 6px; }

/* Category and announcement administration */
.admin-heading { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.admin-heading h1 { margin-bottom: 5px; }
.admin-heading p { margin: 0; color: #6b7890; }
.admin-category-list { padding: 8px 18px; }
.admin-category-group { border-bottom: 1px solid var(--border); }
.admin-category-row { display: grid; grid-template-columns: 46px minmax(190px, 1fr) auto auto minmax(240px, auto); gap: 12px; align-items: center; padding: 13px 4px; }
.admin-category-row small { display: block; margin-top: 3px; color: #7b8799; }
.admin-category-row.child-row { grid-template-columns: 46px minmax(190px, 1fr) auto minmax(170px, auto); padding-left: 40px; background: #fafcff; }
.admin-row-actions { display: flex; justify-content: flex-end; gap: 6px; }
.admin-row-actions form { margin: 0; }
.admin-row-actions button,
.admin-row-actions a { display: inline-flex; align-items: center; gap: 6px; min-height: 34px; padding: 7px 10px; border: 1px solid #d8e1ee; border-radius: 6px; background: white; color: #24426d; }
.admin-row-actions button:hover,
.admin-row-actions a:hover { border-color: var(--primary); color: var(--primary); background: #f5f9ff; }
.narrow-admin { max-width: 1040px; }
.back-link { width: fit-content; color: var(--primary); font-weight: 700; }
.admin-form { padding: 24px; }
.admin-form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin-top: 22px; }
.admin-form-grid label { display: grid; gap: 7px; min-width: 0; font-weight: 700; }
.admin-form-grid .span-all { grid-column: 1 / -1; }
.admin-form-grid .check-line { display: flex; align-items: center; gap: 9px; }

/* Reference-led home page */
.home-reference-body { background: #fff; overflow-x: clip; }
.home-reference-body .app-footer { display: block; }
.home-reference { width: min(100% - 48px, 1440px); display: grid; grid-template-columns: minmax(0, 1fr); gap: 16px; padding: 22px 0 0; }
.home-reference > * { min-width: 0; }
.home-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(430px, 1.08fr);
  align-items: center;
  gap: 54px;
  min-height: 244px;
  padding: 38px 62px;
  border: 1px solid #cbdcf3;
  border-radius: 8px;
  background: #eef5ff;
  overflow: hidden;
}
.home-hero::after {
  content: "";
  position: absolute;
  right: -100px;
  bottom: -145px;
  width: 420px;
  height: 250px;
  border: 38px solid rgba(30, 99, 197, .035);
  transform: rotate(-35deg);
  pointer-events: none;
}
.home-hero-copy, .home-hero-actions { position: relative; z-index: 1; min-width: 0; }
.home-hero h1 { margin-bottom: 18px; color: #08285c; font-size: 42px; line-height: 1.08; font-weight: 850; }
.home-hero p { max-width: 590px; margin: 0; color: #405574; font-size: 15px; line-height: 1.55; }
.home-hero-actions { display: grid; gap: 22px; }
.home-search {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr) 36px;
  align-items: center;
  gap: 10px;
  min-height: 64px;
  padding: 0 18px;
  border: 1px solid #d8e1ee;
  border-radius: 8px;
  background: white;
  box-shadow: 0 7px 20px rgba(8,40,92,.1);
}
.home-search > i { color: #46617f; font-size: 24px; }
.home-search input { min-width: 0; border: 0; outline: 0; color: #10234b; background: transparent; font-size: 16px; }
.home-search input::placeholder { color: #8290a4; }
.home-search button { width: 36px; height: 36px; border: 0; border-radius: 6px; color: var(--primary); background: #eef5ff; opacity: 0; transition: opacity .18s ease, background .18s ease; }
.home-search:focus-within button { opacity: 1; }
.home-search button:hover { background: #dceaff; }
.home-search-combobox {
  position: relative;
  min-width: 0;
  z-index: 4;
}
.home-search-suggestions {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  left: 0;
  max-height: 390px;
  overflow-y: auto;
  padding: 7px;
  background: #fff;
  border: 1px solid #cfdbea;
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(8, 40, 92, .17);
}
.home-search-suggestions[hidden] { display: none; }
.home-search-suggestions [data-category-suggestion] {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 22px;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 8px 10px;
  color: #102b56;
  border-radius: 6px;
  transition: color .15s ease, background .15s ease;
}
.home-search-suggestions [data-category-suggestion][hidden] { display: none; }
.home-search-suggestions [data-category-suggestion]:hover,
.home-search-suggestions [data-category-suggestion].active {
  color: #084db8;
  background: #edf5ff;
}
.home-suggestion-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: #0d5fe8;
  background: #e7f1ff;
  border-radius: 50%;
  font-size: 18px;
}
.home-suggestion-copy { min-width: 0; }
.home-suggestion-copy strong,
.home-suggestion-copy small { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.home-suggestion-copy strong { font-size: 14px; }
.home-suggestion-copy small { margin-top: 3px; color: #6b7890; font-size: 12px; }
.home-suggestion-arrow { color: #7c8ca4; font-size: 14px; }
.home-search-no-result {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 10px 12px;
  color: #63738a;
  font-size: 13px;
}
.home-search-no-result[hidden] { display: none; }
.home-action-buttons { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; max-width: 480px; }
.home-btn { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid #0a429d; border-radius: 6px; color: #08285c; background: transparent; font-size: 16px; font-weight: 800; transition: transform .18s ease, background .18s ease, box-shadow .18s ease; }
.home-btn.primary { color: white; background: #0746aa; box-shadow: 0 7px 16px rgba(7,70,170,.18); }
.home-btn:hover { color: #08285c; background: white; transform: translateY(-1px); }
.home-btn.primary:hover { color: white; background: #063d95; box-shadow: 0 10px 20px rgba(7,70,170,.24); }
.home-category-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 16px; }
.home-category-card {
  min-width: 0;
  min-height: 132px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 16px 10px;
  border: 1px solid #e1e7ef;
  border-radius: 8px;
  background: white;
  box-shadow: 0 7px 18px rgba(8,40,92,.07);
  text-align: center;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.home-category-card:hover { color: inherit; transform: translateY(-2px); border-color: #b7cae7; box-shadow: 0 11px 24px rgba(8,40,92,.11); }
.home-category-card strong { max-width: 100%; color: #10234b; font-size: 15px; line-height: 1.25; }
.home-category-card small { color: #77859a; font-size: 14px; }
.home-category-icon { color: #147b47; font-size: 35px; line-height: 1; }
.home-category-card:nth-child(2) .home-category-icon { color: #0b3f91; }
.home-category-card:nth-child(3) .home-category-icon { color: #a52b38; }
.home-category-card:nth-child(4) .home-category-icon { color: #0861c9; }
.home-category-card:nth-child(5) .home-category-icon { color: #17864b; }
.home-category-card:nth-child(6) .home-category-icon { color: #f29b00; }
.home-jobs-card, .home-info-card { min-width: 0; border: 1px solid #e1e7ef; border-radius: 8px; background: white; box-shadow: 0 7px 20px rgba(8,40,92,.065); }
.home-market-strip {
  min-width: 0;
  border: 1px solid #cfe3ff;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.96) 0%, rgba(242,248,255,.98) 100%),
    linear-gradient(90deg, #e8f3ff, #f8fcff);
  box-shadow: 0 10px 24px rgba(8, 83, 166, .1);
  overflow: hidden;
}
.home-market-head {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 18px;
  border-bottom: 1px solid #d9e8fb;
  background: linear-gradient(90deg, rgba(232, 244, 255, .9), rgba(255, 255, 255, .95));
}
.home-market-head h2 {
  margin: 0;
  color: #082f63;
  font-size: 20px;
}
.home-market-head small {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 0 11px;
  border: 1px solid #cfe3ff;
  border-radius: 999px;
  color: #315f94;
  background: #ffffff;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
  box-shadow: 0 7px 16px rgba(8, 83, 166, .08);
}
.home-market-live-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #18a957;
  box-shadow: 0 0 0 0 rgba(24, 169, 87, .35);
  animation: marketLivePulse 1.8s ease-out infinite;
}
@keyframes marketLivePulse {
  0% { box-shadow: 0 0 0 0 rgba(24, 169, 87, .35); }
  70% { box-shadow: 0 0 0 7px rgba(24, 169, 87, 0); }
  100% { box-shadow: 0 0 0 0 rgba(24, 169, 87, 0); }
}
.home-market-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  padding: 12px;
}
.home-market-card {
  min-width: 0;
  min-height: 96px;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  grid-template-rows: 1fr auto;
  align-items: center;
  gap: 2px 10px;
  padding: 14px 16px;
  border: 1px solid #dbeafa;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(8, 83, 166, .075);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.home-market-card:hover {
  transform: translateY(-2px);
  border-color: #b8d7ff;
  box-shadow: 0 13px 24px rgba(8, 83, 166, .12);
}
.home-market-icon {
  grid-row: 1 / 3;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #0752b8;
  background: linear-gradient(180deg, #edf6ff, #dcecff);
  font-size: 18px;
}
.home-market-copy {
  min-width: 0;
  display: grid;
  gap: 2px;
}
.home-market-copy small {
  color: #7a8798;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}
.home-market-copy strong {
  min-width: 0;
  color: #10234b;
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.home-market-price {
  color: #072a5c;
  font-size: 17px;
  font-weight: 900;
  white-space: nowrap;
}
.home-market-change {
  grid-column: 3;
  justify-self: end;
  padding: 2px 7px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  white-space: nowrap;
}
.home-market-change.up { color: #087444; background: #e6f8ee; }
.home-market-change.down { color: #b42318; background: #fff0ee; }
.home-market-change.flat { color: #52647a; background: #eef5ff; }
.home-market-empty {
  grid-column: 1 / -1;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #66758b;
  font-weight: 700;
}
.home-market-note {
  margin: 0;
  padding: 10px 18px 12px;
  border-top: 1px solid #d9e8fb;
  color: #5b6f89;
  background: rgba(255, 255, 255, .72);
  font-size: 12px;
}
.home-guides-showcase {
  min-width: 0;
  padding: 18px;
  border: 1px solid #dfe7f1;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 7px 20px rgba(8,40,92,.065);
}
.home-guides-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}
.home-guides-head h2 {
  margin: 0;
  color: #10234b;
  font-size: 22px;
}
.home-guides-head p {
  max-width: 720px;
  margin: 6px 0 0;
  color: #5c6b80;
  font-size: 14px;
  line-height: 1.55;
}
.home-guides-head a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border: 1px solid #c9d8ed;
  border-radius: 7px;
  color: #084db8;
  background: #f6f9ff;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}
.home-guide-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.home-guide-card {
  min-width: 0;
  min-height: 168px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  border: 1px solid #e1e8f2;
  border-radius: 8px;
  color: #10234b;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.home-guide-card:hover {
  color: #10234b;
  transform: translateY(-2px);
  border-color: #b9cceb;
  box-shadow: 0 12px 22px rgba(8,40,92,.09);
}
.home-guide-card-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #0a62cf;
  background: #eaf2ff;
  font-size: 20px;
}
.home-guide-card-copy {
  min-width: 0;
  flex: 1;
}
.home-guide-card strong {
  display: -webkit-box;
  color: #10234b;
  font-size: 16px;
  line-height: 1.34;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.home-guide-card small {
  display: -webkit-box;
  margin-top: 6px;
  color: #627088;
  font-size: 12px;
  line-height: 1.45;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.home-guide-card em {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #0a62cf;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}
.home-section-title { display: flex; align-items: center; justify-content: space-between; gap: 18px; min-height: 54px; padding: 0 20px; border-bottom: 1px solid #e4e9f0; }
.home-section-title h2 { margin: 0; color: #10234b; font-size: 18px; }
.home-section-title a { color: #0d5fe8; font-size: 13px; font-weight: 700; }
.home-job-head, .home-job-row { display: grid; grid-template-columns: minmax(260px, 1.2fr) minmax(230px, 1fr) 200px 190px 96px; align-items: center; gap: 18px; }
.home-job-head { min-height: 38px; padding: 0 26px 0 70px; color: #435572; font-size: 13px; }
.home-job-row { min-height: 48px; padding: 7px 18px 7px 26px; border-top: 1px solid #e4e9f0; color: #243957; }
.home-job-row:hover { background: #f8fbff; }
.new-home-page .home-job-empty { padding: 28px; border-top: 1px solid #e4e9f0; color: #63718a; text-align: center; }
.home-job-title { display: grid; grid-template-columns: 28px minmax(0, 1fr); align-items: center; gap: 12px; min-width: 0; }
.home-job-title i { color: #0b4b8f; font-size: 20px; }
.home-job-title strong, .home-job-row > span, .home-job-row time { min-width: 0; overflow-wrap: anywhere; }
.home-status { display: inline-flex; align-items: center; justify-content: center; min-width: 76px; min-height: 30px; padding: 4px 10px; border: 1px solid #b9dfca; border-radius: 7px; color: #15804b; background: #eaf8f0; font-size: 12px; font-weight: 600; }
.home-status.closing { color: #b85d00; border-color: #f2c68d; background: #fff5e7; }
.home-status.closed { color: #64748b; border-color: #d7dee8; background: #f1f4f8; }
.home-detail-btn { min-height: 32px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid #cbd6e5; border-radius: 6px; color: #10234b; background: white; font-weight: 700; transition: border-color .18s ease, color .18s ease, background .18s ease; }
.home-detail-btn:hover { color: #0754d9; border-color: #8bb0e8; background: #f4f8ff; }
.home-info-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.home-info-card { padding: 16px 18px 12px; }
.home-info-card h2 { display: flex; align-items: center; gap: 10px; margin-bottom: 9px; color: #10234b; font-size: 17px; }
.home-info-card h2 i { color: #0b4baf; font-size: 20px; }
.home-link-list { display: grid; }
.home-link-list a { display: grid; grid-template-columns: 20px minmax(0, 1fr) 16px; align-items: center; gap: 10px; min-height: 42px; border-top: 1px solid #e4e9f0; color: #435572; font-size: 13px; }
.home-link-list a:first-child { border-top: 0; }
.home-link-list a > i:first-child { color: #365985; }
.home-link-list a > i:last-child { color: #315279; }
.home-link-list a span { min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.home-link-list a:hover { color: #0754d9; }
.home-disclaimer { min-height: 54px; display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 2px; border-top: 1px solid #e1e7ef; color: #69778b; text-align: center; }
.home-disclaimer i { color: #38577d; font-size: 20px; }
.profile-hero-panel {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
}
.profile-score {
  text-align: center;
}
.profile-score strong {
  display: block;
  color: var(--primary);
  font-size: 30px;
}
.profile-score span {
  color: #6b7b94;
  font-weight: 800;
}
.profile-grid,
.admin-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.badge-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.badge-grid span {
  display: grid;
  gap: 4px;
  padding: 12px;
  border: 1px solid #e1eaf6;
  border-radius: 10px;
  background: #f8fbff;
}
.badge-grid i { color: var(--primary); }
.badge-grid small { color: #6b7b94; }
.responsive-table {
  overflow-x: auto;
}
.responsive-table table {
  width: 100%;
  border-collapse: collapse;
}
.responsive-table th,
.responsive-table td {
  padding: 12px;
  border-bottom: 1px solid var(--border);
  text-align: left;
}
.responsive-table th {
  color: #5d708f;
  font-size: 12px;
}
.mini-list {
  display: grid;
  gap: 8px;
}
.mini-list span,
.mini-list a {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  color: #08285c;
  font-weight: 850;
}

/* Professional portal refinements */
.announcements-page .announcements-panel {
  padding: 18px;
}
.announcements-page .with-art {
  min-height: 170px;
  padding: 24px 28px;
  background: #eef5ff;
  border: 1px solid #dbe7f7;
}
.announcements-page .title-art {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 66px;
}
.announcements-page .search-box {
  margin-bottom: 14px;
}
.announcements-page .server-tabs {
  gap: 6px 20px;
  margin-bottom: 10px;
}
.announcements-page .server-tabs a {
  min-height: 42px;
  padding: 10px 0;
  line-height: 1.25;
}
.announcements-page .announcements-table {
  font-size: 13px;
}
.announcements-page .announcements-table thead {
  background: #f8fafd;
}
.announcements-page .announcements-table th,
.announcements-page .announcements-table td {
  min-width: 0;
  padding: 14px 9px;
  vertical-align: middle;
}
.announcements-page .announcements-table th:nth-child(1),
.announcements-page .announcements-table td:nth-child(1) { width: 31%; }
.announcements-page .announcements-table th:nth-child(2),
.announcements-page .announcements-table td:nth-child(2) { width: 15%; }
.announcements-page .announcements-table th:nth-child(3),
.announcements-page .announcements-table td:nth-child(3) { width: 16%; }
.announcements-page .announcements-table th:nth-child(4),
.announcements-page .announcements-table td:nth-child(4) { width: 13%; }
.announcements-page .announcements-table th:nth-child(5),
.announcements-page .announcements-table td:nth-child(5) { width: 13%; }
.announcements-page .announcements-table th:nth-child(6),
.announcements-page .announcements-table td:nth-child(6) { width: 12%; }
.announcements-page .table-job > span:last-child {
  min-width: 0;
}
.announcements-page .table-job strong,
.announcements-page .table-job small {
  overflow-wrap: anywhere;
}
.announcements-page .table-job small {
  display: block;
  margin-top: 4px;
  line-height: 1.4;
}
.announcements-page .pill,
.announcements-page .status-badge {
  white-space: normal;
  overflow-wrap: anywhere;
}
.announcements-page .pill {
  justify-content: flex-start;
  padding: 6px 8px;
  text-align: left;
}
.announcements-page .table-actions {
  display: grid;
  gap: 6px;
}
.announcements-page .table-actions .btn-mini {
  width: 100%;
  min-height: 32px;
  gap: 6px;
  margin: 0;
  padding: 0 7px;
  white-space: nowrap;
}
.announcements-page .announcements-table tbody tr {
  transition: background .16s ease;
}
.announcements-page .announcements-table tbody tr:hover {
  background: #f8fbff;
}
.announcements-page .summary-card h3,
.announcements-page .quick-links h3 {
  margin-bottom: 14px;
  font-size: 18px;
}

.eligibility-page .eligibility-panel {
  padding: 22px;
}
.eligibility-page .suitable-results .section-header {
  align-items: center;
  margin-bottom: 16px;
}
.eligibility-page .suitable-results .section-header h2 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-size: 21px;
  line-height: 1.25;
}
.eligibility-page .green-chip {
  padding: 5px 10px;
  font-size: 12px;
}
.eligibility-page .eligibility-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.eligibility-page .eligibility-card {
  display: flex;
  min-width: 0;
  min-height: 244px;
  flex-direction: column;
  gap: 11px;
  padding: 16px;
  background: #fff;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.eligibility-page .eligibility-card:hover {
  transform: translateY(-2px);
  border-color: #b9cde9;
  box-shadow: 0 10px 22px rgba(8, 40, 92, .08);
}
.eligibility-card-head {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  align-items: start;
  gap: 11px;
}
.eligibility-card-head > div:last-child {
  min-width: 0;
}
.eligibility-card-head h3 {
  margin: 1px 0 5px;
  color: #0b2858;
  font-size: 16px;
  line-height: 1.3;
  overflow-wrap: anywhere;
}
.eligibility-card-head small {
  display: block;
  color: #6c7b91;
  line-height: 1.4;
}
.eligibility-page .fit-badge {
  width: fit-content;
  padding: 5px 9px;
  font-size: 12px;
}
.eligibility-page .eligibility-card ul {
  display: grid;
  gap: 5px;
  margin: 0;
  padding-left: 18px;
  color: #405574;
  font-size: 12px;
  line-height: 1.4;
}
.eligibility-card-actions {
  display: flex;
  gap: 7px;
  margin-top: auto;
}
.eligibility-card-actions .btn-mini {
  flex: 1;
  gap: 5px;
  min-width: 0;
  margin: 0;
  padding-inline: 8px;
}
.eligibility-page .comparison-panel h2 {
  margin-bottom: 14px;
  font-size: 20px;
}
.eligibility-page .comparison-panel .table-frame {
  overflow-x: auto;
}
.eligibility-page .comparison-table {
  min-width: 980px;
  table-layout: auto;
  font-size: 12px;
}
.eligibility-page .comparison-table th,
.eligibility-page .comparison-table td {
  min-width: 92px;
  padding: 11px 9px;
  line-height: 1.4;
}
.eligibility-page .comparison-table th:first-child,
.eligibility-page .comparison-table td:first-child,
.eligibility-page .comparison-table th:nth-child(2),
.eligibility-page .comparison-table td:nth-child(2) {
  min-width: 150px;
}

.calculator-page .calc-tabs button {
  min-width: 0;
  min-height: 90px;
  padding: 12px 8px;
  line-height: 1.3;
}
.calculator-page .calc-tabs i {
  margin-bottom: 7px;
  font-size: 27px;
}
.calculator-page .calculator-main {
  align-items: start;
  gap: 24px;
  padding: 22px;
}
.calculator-page .calc-form h2 {
  margin-bottom: 0;
  font-size: 25px;
}
.calculator-page .calc-form > p {
  margin-bottom: 2px;
  color: #566780;
  line-height: 1.5;
}
.calculator-page .calc-result {
  min-width: 0;
  padding: 22px;
}
.calculator-page .result-head {
  gap: 16px;
}
.calculator-page .result-head i {
  width: 62px;
  height: 62px;
  font-size: 34px;
}
.calculator-page .result-head h2 {
  margin: 0;
  font-size: 31px;
}
.calculator-page .result-boxes {
  gap: 10px;
  margin: 20px 0;
}
.calculator-page .result-boxes div {
  min-width: 0;
  padding: 14px 10px;
  line-height: 1.35;
}
.calculator-page .result-boxes b {
  margin-top: 7px;
  font-size: 19px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}
.calculator-page .formula-box {
  align-items: center;
  gap: 16px;
  line-height: 1.45;
}
.calculator-page .formula-box b {
  margin-left: auto;
  text-align: right;
}
.calculator-page .calculator-bottom-panels .panel {
  min-width: 0;
}
.calculator-page .calculator-bottom-panels h3 {
  margin-bottom: 10px;
  font-size: 17px;
}
.calculator-page .calculator-bottom-panels p {
  color: #405574;
  line-height: 1.5;
}
.calculator-page .calculator-bottom-panels small {
  color: #7b8798;
}
.calculator-page .interpretation h3 {
  margin-bottom: 12px;
  font-size: 18px;
}
.calculator-page .interpretation-item {
  display: grid;
  grid-template-columns: 12px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.calculator-page .interpretation-item:last-child {
  border-bottom: 0;
}
.calculator-page .interpretation-item .dot {
  margin-top: 4px;
}
.calculator-page .interpretation-item b,
.calculator-page .interpretation-item small {
  display: block;
}
.calculator-page .interpretation-item small {
  margin-top: 3px;
  color: #66758b;
  line-height: 1.4;
}

.categories-page .category-card-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: 16px;
}
.categories-page .category-main-card {
  min-height: 278px;
  padding: 20px;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.categories-page .category-main-card:hover,
.categories-page .category-main-card:focus-within {
  transform: translateY(-2px);
}
.categories-page .category-main-card h2 {
  margin: 15px 0 7px;
  font-size: 18px;
  line-height: 1.3;
}
.categories-page .category-main-card p {
  min-height: 44px;
  margin-bottom: 13px;
  font-size: 13px;
  line-height: 1.5;
}
.categories-page .category-child-links {
  gap: 6px;
  margin-bottom: 14px;
}
.categories-page .category-child-links a {
  padding: 5px 8px;
  font-size: 11px;
  line-height: 1.25;
}
.categories-page .category-detail-link {
  padding-top: 13px;
  font-size: 13px;
}
.categories-page .category-main-card:nth-child(1) .category-card-icon { color: #147b47; background: #eaf8f0; }
.categories-page .category-main-card:nth-child(2) .category-card-icon { color: #0b4b9c; background: #eaf2ff; }
.categories-page .category-main-card:nth-child(3) .category-card-icon { color: #9b2c3a; background: #fff0f2; }
.categories-page .category-main-card:nth-child(4) .category-card-icon { color: #1263b4; background: #edf7ff; }
.categories-page .category-main-card:nth-child(5) .category-card-icon { color: #187548; background: #edf9f2; }
.categories-page .category-main-card:nth-child(6) .category-card-icon { color: #3d5879; background: #f0f4f8; }
.categories-page .category-main-card:nth-child(7) .category-card-icon { color: #b36b00; background: #fff6e6; }

/* Announcement catalogue controls and source state */
.announcements-page .announcements-table { width: 100%; min-width: 0; table-layout: fixed; }
.announcement-list-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 10px 0 14px; border-bottom: 1px solid var(--border); }
.announcement-list-toolbar > span { color: #5f6f87; font-size: 13px; }
.announcement-list-toolbar > span strong { color: var(--navy); }
.announcement-list-toolbar form { display: flex; align-items: center; gap: 12px; }
.announcement-list-toolbar label { display: flex; align-items: center; gap: 7px; margin: 0; color: #52627a; font-size: 12px; font-weight: 700; white-space: nowrap; }
.announcement-list-toolbar .form-select { width: auto; min-width: 118px; height: 34px; padding-block: 4px; font-size: 12px; }
.announcement-row-meta { display: flex; flex-wrap: wrap; gap: 4px 8px; margin-top: 5px; color: #687991; font-size: 11px; font-weight: 650; }
.announcement-row-meta i { color: var(--primary); }
.announcement-pagination { display: flex; justify-content: center; gap: 6px; padding-top: 16px; }
.announcement-pagination a { display: grid; place-items: center; width: 34px; height: 34px; color: #25466f; background: #fff; border: 1px solid #cad7e8; border-radius: 6px; font-size: 13px; font-weight: 800; transition: color .16s ease, background .16s ease, border-color .16s ease; }
.announcement-pagination a:hover, .announcement-pagination a.active { color: #fff; background: var(--primary); border-color: var(--primary); }
.announcement-pagination a.disabled { pointer-events: none; color: #9ba7b7; background: #f3f5f8; border-color: #e0e5ec; }
.announcement-expired-alert { display: grid; grid-template-columns: auto 1fr; gap: 2px 10px; align-items: center; margin-bottom: 12px; padding: 13px 16px; color: #8e2f35; background: #fff3f3; border: 1px solid #efc4c6; border-radius: 7px; }
.announcement-expired-alert i { grid-row: 1 / 3; font-size: 23px; }
.announcement-expired-alert span { color: #74545a; font-size: 12px; }
.official-source-box { display: flex; align-items: center; gap: 14px; margin: 18px 0; padding: 13px 15px; background: #f5f9ff; border: 1px solid #cee0f6; border-radius: 7px; }
.official-source-box span { color: #65758d; font-size: 12px; }
.official-source-box strong { color: var(--navy); }
.official-source-box a { margin-left: auto; color: var(--primary); font-weight: 800; }

/* News module */
.home-news-card,
.news-list-panel {
  min-width: 0;
  border: 1px solid #e1e7ef;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 7px 20px rgba(8,40,92,.065);
}
.home-news-top {
  margin-top: 4px;
  margin-bottom: 22px !important;
}

.kit-home .home-news-top.kit-hero-slider {
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
}

/* --- Authentic Turkish News Portal Manşet Slider --- */
.home-news-slider.manset-slider {
  padding: 0;
  background: var(--surface);
  border-radius: 14px;
  border: 1px solid var(--border);
  box-shadow: 0 12px 30px rgba(8, 40, 92, 0.07);
  overflow: hidden;
  margin-bottom: 0 !important;
}
.home-news-strip {
  min-width: 0;
  border: 1px solid #e1e7ef;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 7px 20px rgba(8,40,92,.065);
  overflow: hidden;
}
.home-strip-controls {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.home-strip-controls button {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d3deec;
  border-radius: 6px;
  color: #173b68;
  background: #fff;
}
.home-strip-controls button:hover {
  color: #0d5fe8;
  border-color: #9ebbe2;
  background: #f4f8ff;
}
.home-news-strip-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  min-width: 0;
  overflow: visible;
  padding: 16px;
}
.home-news-strip-card {
  display: grid;
  grid-template-rows: 112px minmax(92px, 1fr);
  min-width: 0;
  min-height: 214px;
  color: #10234b;
  border: 1px solid #e0e7f0;
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.home-news-strip-card:hover {
  color: #10234b;
  transform: translateY(-2px);
  border-color: #b8cbe8;
  box-shadow: 0 10px 22px rgba(8, 40, 92, .1);
}
.home-news-strip-card img,
.home-news-strip-placeholder {
  width: 100%;
  height: 112px;
}
.home-news-strip-card img {
  object-fit: cover;
}
.home-news-strip-placeholder {
  display: grid;
  place-items: center;
  color: #0d5fe8;
  background: #edf5ff;
  font-size: 30px;
}
.home-news-strip-copy {
  display: grid;
  align-content: start;
  gap: 7px;
  min-width: 0;
  padding: 12px 13px;
}
.home-news-strip-copy small {
  color: #66758b;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.home-news-strip-copy strong {
  color: #10234b;
  font-size: 14px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
/* --- Authentic Turkish News Portal Manşet Slider --- */
.home-news-slider.manset-slider {
  padding: 0;
  background: #0c172d;
  border-radius: 12px !important;
  border: 1px solid #dbe5f2;
  box-shadow: 0 12px 28px rgba(8, 40, 92, 0.08);
  overflow: hidden;
}

.manset-slider .manset-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 292px;
  align-items: stretch;
  min-width: 0;
  height: min(520px, calc(100vh - 170px));
  min-height: 430px;
}

.manset-slider .manset-main {
  position: relative;
  min-width: 0;
  max-width: 100%;
  width: 100%;
  height: 100%;
  background: #082b69;
  overflow: hidden;
}

.manset-slider .manset-slide {
  position: absolute;
  inset: 0;
  min-width: 0;
  max-width: 100%;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.manset-slider .manset-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.manset-slider .manset-card-link {
  display: block !important;
  position: relative !important;
  width: 100%;
  height: 100% !important;
  color: inherit;
  text-decoration: none;
  background: linear-gradient(135deg, #08255a 0%, #0d3b86 100%);
  overflow: hidden;
}

.manset-slider .manset-image-area {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 1;
  overflow: hidden;
}

.manset-slider .manset-image-area img {
  display: block;
  width: 100%;
  height: 100% !important;
  object-fit: contain;
  object-position: center;
  background: linear-gradient(135deg, #08255a 0%, #0d3b86 100%);
}

.manset-slider .manset-placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100% !important;
  background: #111827;
  color: #6b7280;
  font-size: 72px;
}

.manset-slider .manset-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  background: #dc2626;
  color: #ffffff;
  font-size: 10.5px;
  font-weight: 900;
  letter-spacing: 0.04em;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4);
}

.manset-slider .pulse-dot {
  width: 6px;
  height: 6px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  animation: pulse-ring 1.5s infinite;
}

.manset-slider .manset-gradient-overlay {
  display: none !important;
}

.manset-slider .manset-caption {
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  padding: 78px 28px 18px !important;
  box-sizing: border-box !important;
  background: linear-gradient(
    to top,
    rgba(3, 14, 38, 0.92) 0%,
    rgba(3, 14, 38, 0.40) 46%,
    rgba(3, 14, 38, 0.00) 78%
  ) !important;
  z-index: 5 !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-end !important;
  overflow: hidden !important;
  border-top: none !important;
}

.manset-slider .manset-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 4px;
}

.manset-slider .meta-item {
  font-size: 11.5px;
  font-weight: 700;
  color: #a9c7ec;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.manset-slider .manset-title {
  position: static !important;
  margin: 0 0 8px !important;
  color: #ffffff !important;
  font-family: var(--font-sans) !important;
  font-size: 24px !important;
  font-weight: 900 !important;
  line-height: 1.22 !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}

.manset-slider .manset-summary {
  position: static !important;
  margin: 0 !important;
  color: #e2e8f0 !important;
  font-family: var(--font-sans) !important;
  font-size: 13px !important;
  font-weight: 650 !important;
  line-height: 1.45 !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}

/* --- Manşet Sidebar (Right Thumbnail Navigation) --- */
.manset-slider .manset-sidebar {
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: #ffffff;
  border-left: 1px solid #dbe5f2;
  height: 100%;
}

.manset-slider .manset-sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  height: 42px;
  box-sizing: border-box;
  background: #071936;
  color: #ffffff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.manset-slider .manset-nav-controls {
  display: flex;
  gap: 4px;
}

.manset-slider .manset-nav-controls button {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 0.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
}

.manset-slider .manset-nav-controls button:hover {
  background: #dc2626;
  border-color: #dc2626;
}

.manset-slider .manset-thumbs-list {
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: calc(100% - 42px);
  max-height: calc(100% - 42px);
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.2) transparent;
}

.manset-slider .manset-thumb-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  height: 48px;
  min-height: 48px;
  max-height: 48px;
  border: 0;
  border-bottom: 1px solid #f1f5f9;
  background: transparent;
  color: #334155;
  cursor: pointer;
  text-align: left;
  transition: all 0.2s ease;
  flex-shrink: 0;
  box-sizing: border-box;
}

.manset-slider .thumb-num {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  background: #e2e8f0;
  color: #475569;
  font-size: 11.5px;
  font-weight: 900;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.manset-slider .thumb-title {
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
  color: #334155;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.manset-slider .thumb-arrow {
  font-size: 14px;
  color: #94a3b8;
  transition: transform 0.2s ease;
}

.manset-slider .manset-thumb-btn:hover {
  background: #ffffff;
}

.manset-slider .manset-thumb-btn.active {
  background: #dc2626;
  color: #ffffff;
  border-bottom-color: #b91c1c;
}

.manset-slider .manset-thumb-btn.active .thumb-num {
  background: #ffffff;
  color: #dc2626;
}

.manset-slider .manset-thumb-btn.active .thumb-title {
  color: #ffffff;
}

.manset-slider .manset-thumb-btn.active .thumb-arrow {
  color: #ffffff;
  transform: translateX(3px);
}
.news-card-placeholder {
  display: grid;
  place-items: center;
  color: #0d5fe8;
  background: #eaf2ff;
  font-size: 26px;
}
.news-card small {
  display: block;
  margin-top: 6px;
  color: #66758b;
  font-style: normal;
}
.home-news-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  min-height: 120px;
  color: #66758b;
  max-width: 100%;
  text-align: center;
}

.home-news-empty > * {
  min-width: 0;
  max-width: 100%;
}

@media (max-width: 480px) {
  .home-news-empty {
    flex-direction: column;
    padding-inline: 8px;
  }

  .home-news-empty .btn {
    width: 100%;
    white-space: normal;
  }
}

/* KIT homepage presentation layer */
.kit-home {
  display: flex;
  flex-direction: column;
  padding-top: 22px;
}

.kit-home > * {
  order: 50;
}

.kit-home > .home-news-top {
  order: 10;
}

.kit-home > .home-market-strip {
  order: 15;
}

.kit-home > .home-guides-showcase {
  order: 55;
}

.kit-home > .home-jobs-card {
  order: 20;
}

.kit-home > .home-news-strip {
  order: 30;
}

.kit-home > .home-hero {
  order: 40;
}

.kit-home > .ad-slot {
  order: 45;
}

.ad-slot-placeholder {
  display: none !important;
}

.kit-home > .home-info-grid {
  order: 60;
}

.kit-home > .home-disclaimer {
  order: 70;
}

.kit-hero-slider__frame {
  border-radius: 8px;
}

.manset-slider .kit-hero-slider__layout {
  grid-template-columns: minmax(0, 1fr) 292px;
  min-height: 560px;
}

.manset-slider .kit-hero-slider__main {
  min-height: 560px;
}

.manset-slider .kit-hero-slider__media img {
  filter: saturate(1.06) contrast(1.04);
}

.manset-slider .kit-hero-slider__slide--image-only .kit-hero-slider__media img {
  filter: none;
}

.manset-slider .kit-hero-slider__overlay {
  background:
    radial-gradient(circle at 78% 58%, rgba(255, 184, 0, 0.16), transparent 26%),
    linear-gradient(90deg, rgba(3, 14, 38, 0.96) 0%, rgba(3, 14, 38, 0.82) 34%, rgba(3, 14, 38, 0.25) 66%, rgba(3, 14, 38, 0.1) 100%),
    linear-gradient(0deg, rgba(3, 14, 38, 0.7) 0%, rgba(3, 14, 38, 0.02) 72%);
}

.manset-slider .kit-hero-slider__caption {
  top: 76px;
  right: auto;
  bottom: auto;
  width: min(56%, 560px);
  padding: 0 0 0 54px;
}

.manset-slider .kit-hero-slider__title {
  font-size: clamp(30px, 4vw, 58px);
  line-height: 1.03;
  letter-spacing: 0;
  text-transform: uppercase;
  -webkit-line-clamp: 3;
}

.manset-slider .kit-hero-slider__summary {
  max-width: 460px;
  color: #e5edf7;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  -webkit-line-clamp: 2;
}

.manset-slider .kit-hero-slider__meta {
  margin-top: 22px;
  gap: 18px;
}

.manset-slider .kit-hero-slider__meta .meta-item {
  color: #fff4c4;
  font-size: 12px;
  text-transform: uppercase;
}

.manset-slider .kit-hero-slider__meta .meta-item i {
  color: #ffc21a;
  font-size: 18px;
}

.manset-slider .kit-hero-slider__badge {
  top: 20px;
  left: 22px;
  border-radius: 5px;
}

.manset-slider .kit-hero-slider__sidebar {
  background: #ffffff;
}

.manset-slider .kit-hero-slider__sidebar-header {
  min-height: 48px;
  background: #071936;
}

.manset-slider .manset-all-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 30px;
  padding: 0 9px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 5px;
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.manset-slider .manset-all-link:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.manset-slider .kit-hero-slider__thumb {
  min-height: 49px;
  padding: 9px 12px;
}

.kit-news-carousel {
  position: relative;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.kit-news-carousel__head {
  padding: 0 0 16px;
}

.kit-news-carousel__head h2 {
  position: relative;
  padding-left: 22px;
  color: #071936;
  font-size: 25px;
  font-weight: 900;
  text-transform: uppercase;
}

.kit-news-carousel__head h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  bottom: 3px;
  width: 6px;
  border-radius: 8px;
  background: #ffc21a;
}

.kit-news-carousel__controls {
  gap: 10px;
}

.kit-news-carousel__controls a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 6px;
  color: #ffffff;
  background: #071936;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.kit-news-carousel__controls button {
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(8, 40, 92, 0.12);
}

.kit-news-carousel__viewport {
  overflow: hidden;
  min-width: 0;
  padding: 0 12px 4px;
}

.kit-news-carousel__track {
  display: flex;
  grid-template-columns: none;
  gap: 18px;
  padding: 0;
  transition: transform 0.28s ease;
  will-change: transform;
}

.kit-news-card {
  flex: 0 0 calc((100% - 54px) / 4);
  grid-template-rows: 174px minmax(132px, 1fr);
  min-height: 306px;
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(8, 40, 92, 0.08);
}

.kit-news-card img,
.kit-news-card__placeholder {
  height: 174px;
}

.kit-news-card__copy {
  gap: 10px;
  padding: 14px 16px;
}

.kit-news-card__copy small {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #475569;
  font-size: 12px;
  font-weight: 800;
}

.kit-news-card__copy strong {
  color: #071936;
  font-size: 15.5px;
  font-weight: 850;
  -webkit-line-clamp: 2;
}

.kit-news-card__copy em {
  align-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
  padding-top: 12px;
  color: #075bd8;
  border-top: 1px solid #e7edf6;
  font-size: 12px;
  font-style: normal;
  font-weight: 850;
}

.kit-news-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  padding-top: 12px;
}

.kit-news-carousel__dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #c7d2e2;
}

.kit-news-carousel__dots button.active {
  width: 26px;
  background: #0d5fe8;
}
.news-page {
  grid-template-columns: 300px minmax(0, 1fr);
  padding: 22px 0;
}
.news-index-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 120px;
  align-items: center;
  gap: 20px;
  margin-bottom: 18px;
  padding: 34px;
  color: #fff;
  background: linear-gradient(130deg, #0a2c65, #061b43);
  border-radius: 12px;
}
.news-index-hero h1 {
  margin: 16px 0 8px;
  font-size: 42px;
  font-weight: 900;
}
.news-index-hero p {
  max-width: 760px;
  margin: 0;
  color: rgba(255,255,255,.88);
  font-size: 18px;
}
.news-index-hero > i {
  justify-self: end;
  color: rgba(255,255,255,.72);
  font-size: 84px;
}
.news-list-panel {
  padding: 18px;
}
.news-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding-top: 16px;
}
.news-card {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
  color: inherit;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.news-card:hover {
  color: inherit;
  transform: translateY(-2px);
  border-color: #b7cae7;
}
.news-card img,
.news-card-placeholder {
  width: 100%;
  aspect-ratio: 2.2 / 1;
  object-fit: cover;
}
.news-card-body {
  display: grid;
  gap: 8px;
  padding: 16px;
}
.news-card strong {
  color: #10234b;
  font-size: 19px;
  line-height: 1.3;
}
.news-card em {
  color: #536889;
  font-style: normal;
  line-height: 1.5;
}
.news-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  padding: 22px 0;
}
.news-detail-grid,
.news-detail-main,
.news-detail-article,
.news-detail-meta,
.news-story-box,
.news-spot-grid {
  min-width: 0;
}
.news-detail-article {
  padding: 30px;
}
.news-detail-meta {
  margin-bottom: 14px;
  color: #526b91;
  font-weight: 800;
}
.news-detail-article h1 {
  max-width: 920px;
  color: #08285c;
  font-size: 42px;
  font-weight: 900;
  line-height: 1.15;
  overflow-wrap: anywhere;
}
.news-lead {
  max-width: 880px;
  color: #536889;
  font-size: 19px;
  line-height: 1.6;
  overflow-wrap: anywhere;
}
.news-detail-cover {
  width: 100%;
  max-height: none;
  margin: 22px 0;
  border-radius: 8px;
  object-fit: contain;
  background: #070e1d;
}
.news-content {
  color: #21395e;
  font-size: 17px;
  line-height: 1.8;
}
.news-content h2,
.news-content h3 {
  color: #10234b;
  line-height: 1.35;
  letter-spacing: 0;
}
.news-content h2 {
  margin: 28px 0 10px;
  font-size: 24px;
}
.news-content h3 {
  margin: 22px 0 8px;
  font-size: 20px;
}
.news-content p {
  margin: 0 0 16px;
}
.announcement-readable-summary {
  display: grid;
  gap: 18px;
}
.summary-lead {
  margin: 0;
  color: #17345f;
  font-size: 18px;
  line-height: 1.65;
  font-weight: 650;
}
.summary-facts-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.summary-facts-grid div,
.summary-callouts div,
.news-spot-grid div,
.news-condition-grid div {
  min-width: 0;
  border: 1px solid #dbe7f7;
  border-radius: 8px;
  background: #f8fbff;
}
.summary-facts-grid div {
  display: grid;
  gap: 6px;
  padding: 13px;
}
.summary-facts-grid i {
  color: var(--primary);
  font-size: 19px;
}
.summary-facts-grid span,
.news-spot-grid span {
  color: #60718d;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.summary-facts-grid strong,
.news-spot-grid strong {
  color: #10234b;
  line-height: 1.35;
  overflow-wrap: anywhere;
}
.summary-callouts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.summary-callouts div {
  padding: 15px;
  background: #fffdf5;
  border-color: #f1ddad;
}
.summary-callouts strong,
.summary-callouts span {
  display: block;
}
.summary-callouts strong {
  color: #7a4b09;
  margin-bottom: 5px;
}
.summary-callouts span {
  color: #4d5d75;
  line-height: 1.55;
}
.official-text-details,
.news-original-content {
  border: 1px solid #dbe7f7;
  border-radius: 8px;
  padding: 14px 16px;
  background: #fff;
}
.official-text-details summary,
.news-original-content summary {
  cursor: pointer;
  color: #143866;
  font-weight: 850;
}
.official-text-details .announcement-content-text,
.news-original-content .news-content {
  margin-top: 14px;
}
.news-story-box {
  display: grid;
  gap: 16px;
  margin: 22px 0;
}
.news-spot-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.news-spot-grid div {
  padding: 13px;
  display: grid;
  gap: 6px;
}
.news-editor-note {
  border-left: 4px solid var(--primary);
  background: #f6faff;
  padding: 16px 18px;
  border-radius: 8px;
}
.news-editor-note strong {
  display: block;
  color: #10234b;
  margin-bottom: 5px;
}
.news-editor-note p {
  margin: 0;
  color: #36506f;
  line-height: 1.65;
}
.news-tabs-card {
  margin-top: 16px;
}
.news-detail-tabs {
  overflow-x: auto;
  flex-wrap: nowrap;
}
.news-detail-tabs .nav-link {
  white-space: nowrap;
}
.news-tab-content {
  padding-top: 18px;
  min-height: 240px;
}
.news-tab-content h2 {
  font-size: 23px;
  color: #10234b;
  margin-bottom: 12px;
}
.news-tab-content p,
.news-bullet-list li,
.news-condition-grid span {
  color: #263f63;
  line-height: 1.7;
}
.news-bullet-list {
  padding-left: 20px;
  margin: 0;
}
.news-bullet-list li {
  margin-bottom: 9px;
}
.news-condition-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.news-condition-grid div {
  padding: 15px;
}
.news-condition-grid strong,
.news-condition-grid span {
  display: block;
}
.news-condition-grid strong {
  color: #10234b;
  margin-bottom: 6px;
}
.news-detail-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
  padding: 16px;
  border-radius: 8px;
  background: #eef6ff;
  border: 1px solid #d2e4fb;
}
.news-detail-cta strong {
  color: #10234b;
}
.news-detail-cta a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: white;
  background: var(--primary);
  border-radius: 7px;
  padding: 10px 13px;
  font-weight: 850;
  white-space: nowrap;
}
.source-announcement-card {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) 18px;
  gap: 12px;
  align-items: center;
  color: #10234b;
}
.source-announcement-card:hover { color: #0d5fe8; }
.source-announcement-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: #fff;
  background: #0d5fe8;
  border-radius: 8px;
  font-size: 20px;
}
.source-announcement-card strong,
.source-announcement-card small,
.source-announcement-card em {
  display: block;
}
.source-announcement-card strong {
  line-height: 1.3;
}
.source-announcement-card small {
  margin-top: 4px;
  color: #66758b;
  font-size: 12px;
}
.source-announcement-card em {
  margin-top: 6px;
  color: #d6293e;
  font-size: 12px;
  font-style: normal;
  font-weight: 850;
}
.search-page {
  display: grid;
  gap: 18px;
  padding: 22px 0;
}
.search-results-panel {
  padding: 18px;
}
.search-result-list {
  display: grid;
  gap: 10px;
}
.search-result-list a {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) 18px;
  gap: 12px;
  align-items: center;
  padding: 13px;
  color: #10234b;
  border: 1px solid #e0e8f2;
  border-radius: 8px;
  transition: border-color .16s ease, background .16s ease;
}
.search-result-list a:hover {
  color: #0d5fe8;
  background: #f7fbff;
  border-color: #b8d2f4;
}
.search-result-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: #0d5fe8;
  background: #eaf2ff;
  border-radius: 8px;
  font-size: 20px;
}
.search-result-list b,
.search-result-list small {
  display: block;
}
.search-result-list small {
  margin-top: 4px;
  color: #66758b;
  line-height: 1.45;
}
.admin-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.admin-news-list {
  display: grid;
  gap: 10px;
}
.admin-news-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42px 42px;
  gap: 8px;
  align-items: center;
}
.admin-news-row form button {
  width: 42px;
  height: 42px;
  border: 1px solid #cad8eb;
  border-radius: 7px;
  color: #123d76;
  background: #fff;
}
.admin-cover-preview {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #536889;
}
.admin-cover-preview img {
  width: 160px;
  height: 90px;
  border-radius: 8px;
  object-fit: cover;
}

@media (min-width: 981px) {
  .announcements-page > .left-rail {
    position: sticky;
    top: 108px;
    align-self: start;
  }
  .announcements-page .announcements-table {
    min-width: 0;
  }
}
.contact-page {
  padding: 34px 0 38px;
}

.contact-hero {
  max-width: 920px;
  margin-bottom: 24px;
}

.contact-hero .eyebrow {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.contact-hero h1 {
  margin-bottom: 12px;
  color: #071b3a;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.08;
}

.contact-hero p {
  max-width: 720px;
  margin: 0;
  color: #5f718c;
  font-size: 17px;
  line-height: 1.65;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
  gap: 24px;
  align-items: start;
}

.contact-form {
  padding: 28px;
  border: 1px solid #dde6f2;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(8, 40, 92, .08);
}

.contact-form-heading {
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid #edf1f7;
}

.contact-form-heading h2 {
  margin-bottom: 6px;
  color: #071b3a;
  font-size: 23px;
  font-weight: 900;
}

.contact-form-heading p {
  max-width: 660px;
  margin: 0;
  color: #667085;
  font-size: 14px;
  line-height: 1.55;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 17px 18px;
  margin-bottom: 18px;
}

.contact-form-grid label {
  display: grid;
  align-content: start;
  gap: 7px;
  margin: 0;
  color: #10234b;
  font-size: 14px;
  font-weight: 800;
}

.contact-form-grid label > span:first-child {
  line-height: 1.25;
}

.contact-form-grid .span-all {
  grid-column: 1 / -1;
}

.contact-form-grid .form-control {
  min-height: 48px;
  padding: 10px 13px;
  border: 1px solid #d7e1ee;
  border-radius: 9px;
  color: #10234b;
  background: #fff;
  box-shadow: none;
  transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
}

.contact-form-grid .form-control:focus {
  border-color: #0d5fe8;
  background: #fbfdff;
  box-shadow: 0 0 0 4px rgba(13, 95, 232, .12);
  outline: 0;
}

.contact-form-grid textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.captcha-line {
  grid-column: 1 / -1;
  max-width: 360px;
  padding: 14px;
  border: 1px solid #d7e1ee;
  border-radius: 12px;
  background: #f8fbff;
}

.captcha-line .captcha-question {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #36527d;
  font-weight: 850;
}

.contact-form .btn-primary-wide {
  min-height: 50px;
  border-radius: 10px;
  font-size: 15px;
  box-shadow: 0 12px 22px rgba(13, 95, 232, .2);
}

.contact-side {
  display: grid;
  gap: 16px;
}

.contact-info-card {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 20px;
  border: 1px solid #dde6f2;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(8, 40, 92, .06);
}

.contact-info-card i {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: var(--primary);
  background: var(--primary-light);
  font-size: 20px;
}

.contact-info-card h2 {
  margin: 1px 0 6px;
  color: #071b3a;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.25;
}

.contact-info-card p {
  margin: 0;
  color: #667085;
  line-height: 1.55;
}

.contact-alert {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: 12px;
  font-weight: 800;
}

.contact-alert.success {
  color: #0f6b39;
  background: #e8fff2;
  border: 1px solid #bdebd1;
}

.contact-alert.warn {
  color: #fbbf24;
  background: rgba(251, 191, 36, .1);
  border: 1px solid rgba(251, 191, 36, .28);
}

.eligibility-assistant {
  padding: 24px;
  margin-bottom: 18px;
}

.assistant-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--border);
}

.assistant-head .eyebrow {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.assistant-head h2 {
  margin-bottom: 8px;
  font-size: 28px;
}

.assistant-head p {
  max-width: 720px;
  margin: 0;
  color: var(--text-muted);
}

.assistant-head > i {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 16px;
  color: var(--primary);
  background: var(--primary-light);
  font-size: 28px;
}

.eligibility-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.eligibility-form label {
  display: grid;
  gap: 8px;
  margin: 0;
  color: var(--text-dark);
  font-weight: 800;
}

.eligibility-form .span-all,
.eligibility-form .assistant-actions {
  grid-column: 1 / -1;
}

.eligibility-form .form-control,
.eligibility-form .form-select {
  min-height: 46px;
  border-color: var(--border);
  border-radius: 10px;
}

.assistant-actions {
  display: flex;
  justify-content: flex-end;
}

.eligibility-result-card {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  margin-top: 22px;
  padding: 18px;
  border: 1px solid #cfe0ff;
  border-radius: 16px;
  background: linear-gradient(135deg, #f8fbff, #eef5ff);
}

.eligibility-result-card.uygun {
  border-color: #bcebd1;
  background: linear-gradient(135deg, #f4fff8, #e8fff2);
}

.eligibility-result-card.uygun-değil,
.eligibility-result-card.uygun-degil {
  border-color: #ffd0d0;
  background: linear-gradient(135deg, #fff8f8, #fff0f0);
}

.result-score {
  width: 96px;
  height: 96px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 22px;
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 16px 36px rgba(13, 95, 232, .22);
}

.result-score strong {
  font-size: 34px;
  line-height: 1;
}

.result-score span {
  opacity: .82;
  font-weight: 800;
}

.result-summary span {
  color: var(--primary);
  font-weight: 900;
  text-transform: uppercase;
}

.result-summary h3 {
  margin: 5px 0 8px;
  font-size: 20px;
}

.result-summary p {
  margin: 0;
  color: var(--text-muted);
}

.eligibility-check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.eligibility-check-grid article {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 4px 12px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
}

.eligibility-check-grid i {
  grid-row: span 2;
  color: var(--primary);
  font-size: 24px;
}

.eligibility-check-grid article.success i { color: var(--success); }
.eligibility-check-grid article.warning i { color: var(--warning); }
.eligibility-check-grid article.danger i { color: var(--danger); }

.eligibility-check-grid strong {
  color: var(--text-dark);
}

.eligibility-check-grid span {
  color: var(--text-muted);
  line-height: 1.45;
}

.policy-page {
  padding: 36px 0 58px;
}

.policy-hero {
  margin-bottom: 22px;
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: linear-gradient(135deg, #f8fbff, #eef5ff);
  box-shadow: var(--shadow);
}

.policy-hero span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.policy-hero h1 {
  margin-bottom: 12px;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.05;
}

.policy-hero p {
  max-width: 780px;
  margin: 0;
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.6;
}

.policy-content {
  max-width: 920px;
  padding: 30px;
}

.policy-content h2 {
  margin: 26px 0 10px;
  font-size: 24px;
}

.policy-content h2:first-child {
  margin-top: 0;
}

.policy-content p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.8;
}

.policy-content a {
  color: var(--primary);
  font-weight: 800;
}

@media (max-width: 900px) {
  .contact-hero,
  .contact-layout,
  .contact-form-grid,
  .eligibility-form,
  .eligibility-result-card,
  .eligibility-check-grid {
    grid-template-columns: 1fr;
  }

  .contact-page {
    padding: 26px 0 32px;
  }

  .contact-layout {
    gap: 18px;
  }

  .contact-form {
    padding: 22px;
  }

  .captcha-line {
    max-width: none;
  }

  .assistant-head {
    flex-direction: column;
  }

  .assistant-actions {
    justify-content: stretch;
  }
}

@media (max-width: 520px) {
  .contact-page {
    padding: 22px 0 28px;
  }

  .contact-hero {
    margin-bottom: 18px;
  }

  .contact-hero h1 {
    font-size: 32px;
  }

  .contact-hero p {
    font-size: 15px;
  }

  .contact-form {
    padding: 18px;
    border-radius: 14px;
  }

  .contact-form-heading {
    margin-bottom: 18px;
    padding-bottom: 14px;
  }

  .contact-form-heading h2 {
    font-size: 21px;
  }

  .contact-form-grid {
    gap: 14px;
  }

  .contact-form-grid .form-control {
    min-height: 46px;
  }

  .contact-form-grid textarea.form-control {
    min-height: 132px;
  }

  .contact-info-card {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
    padding: 16px;
  }

  .contact-info-card i {
    width: 42px;
    height: 42px;
  }
}

/* Executive Top Navigation Bar & Detail Enhancements */
.detail-top-nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
}

.executive-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #64748b;
}

.executive-breadcrumb .nav-crumb {
  color: #475569;
  text-decoration: none;
  transition: color 0.15s ease;
}

.executive-breadcrumb .nav-crumb:hover {
  color: #2563eb;
}

.executive-breadcrumb .nav-crumb.inst {
  color: #0f172a;
  font-weight: 700;
}

.executive-breadcrumb .nav-crumb.active-title {
  color: #1e293b;
  font-weight: 700;
  max-width: 320px;
}

.executive-breadcrumb .crumb-sep {
  color: #cbd5e1;
  font-size: 11px;
}

.btn-executive-back {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 20px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #334155;
  font-size: 12.5px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-executive-back:hover {
  background: #ffffff;
  border-color: #2563eb;
  color: #2563eb;
  transform: translateX(-3px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.12);
}

@media (max-width: 480px) {
  .detail-top-nav-bar {
    align-items: stretch;
    flex-direction: column;
    padding: 10px 12px;
  }

  .btn-executive-back {
    width: 100%;
    justify-content: center;
    border-radius: 10px;
    min-height: 42px;
    white-space: normal;
    text-align: center;
  }
}

.hero-view-count-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #e2e8f0;
  font-size: 12.5px;
  font-weight: 750;
  backdrop-filter: blur(8px);
}

/* Executive Similar Announcement Mini Cards */
.similar-card-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid #f1f5f9;
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.similar-card-item:hover {
  border-color: #cbd5e1;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.06);
}

.similar-card-media {
  width: 74px;
  height: 64px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.similar-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.similar-card-item:hover .similar-card-media img {
  transform: scale(1.08);
}

.similar-card-content {
  min-width: 0;
  flex: 1;
}

.similar-card-inst {
  display: block;
  font-size: 10.5px;
  font-weight: 800;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 2px;
}

.similar-card-title {
  font-size: 12.5px;
  font-weight: 750;
  color: #0f172a;
  line-height: 1.35;
  margin: 0 0 6px 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.similar-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Job card grid layout */
.home-jobs-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 18px !important;
  margin-top: 16px;
}

@media (max-width: 1200px) {
  .home-jobs-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 992px) {
  .home-jobs-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 576px) {
  .home-jobs-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Job News Card Styling */
.job-news-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.2s ease;
  height: 100%;
}

.job-news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1);
  border-color: #cbd5e1;
}

.job-news-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #f1f5f9;
  display: block;
}

.job-news-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.job-news-card:hover .job-news-card__media img {
  transform: scale(1.06);
}

.job-news-card__badges {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 6px;
  pointer-events: none;
  z-index: 2;
}

.job-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11.5px;
  font-weight: 750;
  color: #ffffff;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(8px);
}

.job-status-badge.active {
  background: rgba(16, 185, 129, 0.9);
}

.job-status-badge.closing {
  background: rgba(245, 158, 11, 0.9);
}

.job-status-badge.closed {
  background: rgba(239, 68, 68, 0.9);
}

.job-location-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11.5px;
  font-weight: 700;
  color: #1e293b;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
}

.job-news-card__body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.job-news-card__institution {
  font-size: 12.5px;
  font-weight: 750;
  color: #1552c6;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
}

.job-news-card__title {
  font-size: 14.5px;
  font-weight: 800;
  line-height: 1.4;
  margin: 0 0 8px 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.job-news-card__title a {
  color: #0f172a;
  text-decoration: none;
  transition: color 0.15s ease;
}

.job-news-card__title a:hover {
  color: #2563eb;
}

.job-news-card__summary {
  font-size: 13.5px;
  color: #475569;
  line-height: 1.5;
  margin: 0 0 12px 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.job-news-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}

.job-meta-tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 9px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 800;
  background: #eef2f7;
  color: #334155;
}

.job-meta-tag.primary {
  background: #eff6ff;
  color: #1d4ed8;
}

.job-meta-tag.warning {
  background: #fffbeb;
  color: #b45309;
}

.job-news-card__footer {
  padding: 12px 14px;
  border-top: 1px solid #f1f5f9;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.job-news-card__deadline {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 8px 10px;
  border: 1px solid #fecaca;
  border-left: 4px solid #dc2626;
  border-radius: 8px;
  background: #fff7f7;
}

.deadline-label {
  font-size: 11.5px;
  color: #991b1b;
  font-weight: 900;
  text-transform: uppercase;
}

.deadline-date {
  font-size: 15px;
  line-height: 1.15;
  color: #b91c1c;
  font-weight: 900;
}

.job-news-card__btn {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 8px;
  background: #f1f5f9;
  color: #1e293b;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.15s ease;
}

.job-news-card:hover .job-news-card__btn {
  background: #2563eb;
  color: #ffffff;
}

/* Home announcement sections */
.home-announcements-section {
  border-radius: 14px;
  border-color: #dfe7f1;
  box-shadow: 0 8px 24px rgba(12, 23, 45, 0.055);
  overflow: hidden;
}

.home-announcements-section--urgent {
  background: linear-gradient(180deg, #fffaf2 0%, #ffffff 26%);
  border-color: #f1dcc0;
}

.home-announcements-section--large {
  background: linear-gradient(180deg, #f5fbff 0%, #ffffff 28%);
  border-color: #cfe4f5;
}

.home-announcements-section .home-section-title {
  min-height: 72px;
  align-items: center;
  padding: 14px 18px;
  background: #ffffff;
}

.home-announcements-section--urgent .home-section-title {
  background: linear-gradient(90deg, #fff8ed 0%, #ffffff 62%);
}

.home-announcements-section--large .home-section-title {
  background: linear-gradient(90deg, #eef8ff 0%, #ffffff 64%);
}

.home-section-title > div {
  min-width: 0;
}

.home-section-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px;
}

.home-section-kicker {
  display: block;
  margin-bottom: 3px;
  color: #64748b;
  font-size: 12px;
  font-weight: 750;
}

.home-announcements-section .home-section-title h2 {
  font-size: 22px;
  line-height: 1.25;
  font-weight: 850;
  letter-spacing: 0;
}

.home-section-link,
.home-announcements-section .home-section-title a.home-section-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 15px;
  border: 1px solid #cfe0f5;
  border-radius: 10px;
  background: #f8fbff;
  color: #1454c6;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
}

.home-section-modal-button {
  cursor: pointer;
  font: inherit;
}

.home-announcements-section--urgent .home-section-modal-button {
  border-color: #f2c58e;
  background: #fff7ed;
  color: #9a4b00;
}

.home-section-link:hover {
  background: #eaf3ff;
  border-color: #9ebce8;
  transform: translateY(-1px);
}

.home-announcements-section--urgent .home-section-modal-button:hover {
  background: #ffedd5;
  border-color: #f0ad58;
}

.home-announcements-section .home-jobs-grid {
  margin-top: 0;
  padding: 18px;
  gap: 18px !important;
}

.urgent-announcements-modal .modal-content {
  border: 1px solid #dfe7f1;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 26px 70px rgba(12, 23, 45, .22);
}

.urgent-announcements-modal .modal-header {
  align-items: center;
  padding: 18px 22px;
  background: linear-gradient(90deg, #fff8ed 0%, #ffffff 70%);
  border-bottom: 1px solid #edf1f7;
}

.urgent-announcements-modal .modal-title {
  margin: 0;
  color: #071b3a;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.2;
}

.urgent-announcements-modal .modal-body {
  padding: 20px;
  background: #f8fafc;
}

.urgent-modal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.urgent-modal-grid .home-announcement-card {
  min-height: 0;
}

.home-announcement-card {
  min-height: 465px;
  border-radius: 12px;
  box-shadow: 0 3px 12px rgba(15, 23, 42, 0.045);
}

.home-announcement-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.095);
  border-color: #c3d2e7;
}

.home-announcement-card .job-news-card__media {
  aspect-ratio: 16 / 10;
  background: #eef4fb;
}

.home-announcement-card .job-news-card__media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  background: linear-gradient(to top, rgba(8, 18, 39, .42), transparent);
  pointer-events: none;
}

.home-announcement-card .job-news-card__media img {
  object-fit: cover;
  object-position: center;
}

.home-announcement-card:hover .job-news-card__media img {
  transform: scale(1.035);
}

.job-news-card__deadline-pill {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  max-width: calc(100% - 24px);
  min-height: 28px;
  padding: 0 11px;
  border-radius: 999px;
  background: rgba(180, 83, 9, .92);
  color: #ffffff;
  font-size: 12px;
  font-weight: 850;
  backdrop-filter: blur(8px);
}

.home-announcement-card.is-large-quota .job-news-card__deadline-pill {
  background: rgba(14, 116, 144, .92);
}

.home-announcement-card.is-large-quota .job-news-card__facts div:first-child {
  border-color: #b7dbea;
  background: #edfaff;
}

.home-announcement-card.is-large-quota .job-news-card__facts div:first-child strong {
  color: #0e7490;
}

.home-announcement-card .job-news-card__body {
  padding: 16px 16px 14px;
  gap: 0;
}

.home-announcement-card .job-news-card__institution {
  display: block;
  min-height: 18px;
  margin-bottom: 8px;
  color: #315a91;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.home-announcement-card .job-news-card__title {
  min-height: 42px;
  margin-bottom: 9px;
  font-size: 15.5px;
  line-height: 1.35;
  -webkit-line-clamp: 2;
}

.home-announcement-card .job-news-card__summary {
  min-height: 60px;
  margin-bottom: 14px;
  color: #526175;
  font-size: 13.5px;
  line-height: 1.48;
  -webkit-line-clamp: 3;
}

.job-news-card__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: auto;
}

.job-news-card__facts div {
  min-width: 0;
  padding: 9px 8px;
  border: 1px solid #e5edf6;
  border-radius: 9px;
  background: #f8fbff;
}

.job-news-card__facts span,
.job-news-card__facts strong {
  display: block;
  min-width: 0;
}

.job-news-card__facts span {
  margin-bottom: 3px;
  color: #76849a;
  font-size: 10.5px;
  font-weight: 800;
}

.job-news-card__facts strong {
  color: #17243a;
  font-size: 12px;
  line-height: 1.25;
  font-weight: 850;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.home-announcement-card .job-news-card__footer {
  padding: 13px 16px;
  background: #fbfdff;
}

.home-announcement-card .job-news-card__deadline {
  flex: 1;
  padding: 0;
  border: 0;
  background: transparent;
}

.home-announcement-card.is-urgent .job-news-card__deadline {
  padding-left: 10px;
  border-left: 3px solid #d97706;
}

.home-announcement-card .deadline-label {
  margin-bottom: 2px;
  color: #66758b;
  font-size: 10.5px;
  letter-spacing: 0;
}

.home-announcement-card .deadline-date {
  color: #13233d;
  font-size: 14px;
  line-height: 1.2;
}

.home-announcement-card.is-urgent .deadline-date {
  color: #a34807;
}

.home-announcement-card .job-news-card__btn {
  min-height: 36px;
  padding: 0 14px;
  border-radius: 10px;
  background: #0d5fe8;
  color: #ffffff;
  font-size: 13px;
  font-weight: 850;
}

.home-announcement-card .job-news-card__btn:hover,
.home-announcement-card:hover .job-news-card__btn {
  background: #0b4fc1;
  color: #ffffff;
}

/* Home slider image fit improvements */
.kit-home .home-news-slider.manset-slider {
  border-radius: 16px !important;
}

.kit-home .manset-slider .manset-layout,
.kit-home .manset-slider .kit-hero-slider__layout {
  height: clamp(340px, 32vw, 430px) !important;
  min-height: 340px !important;
}

.kit-home .manset-slider .manset-main,
.kit-home .manset-slider .kit-hero-slider__main,
.kit-home .manset-slider .manset-sidebar,
.kit-home .manset-slider .kit-hero-slider__sidebar {
  height: 100% !important;
  min-height: 0 !important;
}

.kit-home .manset-slider .manset-main,
.kit-home .manset-slider .kit-hero-slider__main {
  background: #07142c !important;
}

.kit-home .manset-slider .manset-card-link {
  background: #07142c !important;
}

.kit-home .manset-slider .manset-image-area {
  background: #07142c !important;
}

.kit-home .manset-slider .manset-image-backdrop {
  position: absolute;
  inset: -18px;
  z-index: 0;
  display: block;
  background-position: center center;
  background-size: cover;
  filter: blur(18px) saturate(1.08);
  opacity: .62;
  transform: scale(1.05);
}

.kit-home .manset-slider .manset-image-area img {
  position: relative;
  z-index: 1;
  object-fit: contain !important;
  object-position: center center !important;
  padding: 0;
  background: transparent !important;
  transform: none !important;
  filter: saturate(1.04) contrast(1.03);
}

.kit-home .manset-slider .manset-caption {
  top: auto !important;
  right: 24px !important;
  bottom: 0 !important;
  left: 0 !important;
  width: auto !important;
  max-width: none !important;
  height: auto !important;
  min-height: 0 !important;
  padding: 82px 28px 20px !important;
  text-align: left !important;
  pointer-events: none !important;
  z-index: 7 !important;
}

.kit-home .manset-slider .manset-title {
  max-width: min(760px, 90%);
  font-size: clamp(22px, 2vw, 30px) !important;
  line-height: 1.18 !important;
  text-transform: none !important;
  -webkit-line-clamp: 2 !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .55);
}

.kit-home .manset-slider .manset-summary {
  max-width: min(740px, 90%);
  font-size: clamp(13px, 1.08vw, 16px) !important;
  line-height: 1.42 !important;
  text-transform: none !important;
  -webkit-line-clamp: 2 !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .48);
}

@media (max-width: 1200px) {
  .kit-home .manset-slider .manset-layout,
  .kit-home .manset-slider .kit-hero-slider__layout {
    height: 370px !important;
    min-height: 370px !important;
  }

  .kit-home .manset-slider .manset-caption {
    right: 18px !important;
    padding: 74px 22px 18px !important;
  }
}

@media (max-width: 992px) {
  .home-announcements-section .home-section-title {
    min-height: 66px;
  }

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

  .home-announcement-card {
    min-height: 440px;
  }

  .kit-home .manset-slider .manset-layout,
  .kit-home .manset-slider .kit-hero-slider__layout {
    height: auto !important;
    min-height: 0 !important;
  }

  .kit-home .manset-slider .manset-main,
  .kit-home .manset-slider .kit-hero-slider__main,
  .kit-home .manset-slider .manset-sidebar,
  .kit-home .manset-slider .kit-hero-slider__sidebar {
    min-height: 0 !important;
  }
}

@media (max-width: 640px) {
  .home-announcements-section .home-section-title {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding: 16px;
  }

  .home-announcements-section .home-section-title h2 {
    font-size: 20px;
  }

  .home-section-actions {
    width: 100%;
  }

  .home-section-link,
  .home-announcements-section .home-section-title a.home-section-link {
    width: 100%;
  }

  .urgent-announcements-modal .modal-dialog {
    margin: 10px;
  }

  .urgent-announcements-modal .modal-header,
  .urgent-announcements-modal .modal-body {
    padding: 16px;
  }

  .urgent-modal-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .home-announcements-section .home-jobs-grid {
    padding: 14px;
  }

  .home-announcement-card {
    min-height: 0;
  }

  .job-news-card__facts {
    grid-template-columns: 1fr;
  }

  .home-announcement-card .job-news-card__summary {
    min-height: 0;
  }

  .kit-home .manset-slider .manset-main,
  .kit-home .manset-slider .kit-hero-slider__main,
  .kit-home .manset-slider .manset-slide,
  .kit-home .manset-slider .manset-card-link {
    height: 260px !important;
    min-height: 260px !important;
  }

  .kit-home .manset-slider .manset-caption {
    right: 0 !important;
    padding: 34px 14px 14px !important;
  }

  .kit-home .manset-slider .manset-title {
    max-width: 100%;
    font-size: 20px !important;
  }

  .kit-home .manset-slider .manset-summary {
    max-width: 100%;
    font-size: 13px !important;
  }
}

/* Ilanlar Page 2-Column Layout (Left Filter Rail + Main Content) */
.ilanlar-page-grid {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

@media (max-width: 992px) {
  .ilanlar-page-grid {
    grid-template-columns: 1fr;
  }
}

.filters-panel {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.filter-field-group {
  margin-bottom: 14px;
}

.filter-field-group label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 750;
  color: #334155;
  margin-bottom: 6px;
}

.btn-filter-submit {
  width: 100%;
  padding: 10px 16px;
  border-radius: 10px;
  background: #2563eb;
  color: #ffffff;
  font-size: 13.5px;
  font-weight: 750;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.15s ease, transform 0.15s ease;
  margin-top: 8px;
}

.btn-filter-submit:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
}

/* Executive Detail Page Layout & Hero Section */
.detail-layout,
.news-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 20px;
  align-items: start;
}

@media (max-width: 992px) {
  .detail-layout,
  .news-detail-grid {
    grid-template-columns: 1fr;
  }
}

/* Executive Hero Header Banner */
.detail-hero-executive {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #0f172a;
  color: #ffffff;
  padding: 28px 24px 20px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.15);
}

.detail-hero-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  filter: blur(4px) scale(1.05);
  z-index: 1;
}

.detail-hero-content {
  position: relative;
  z-index: 2;
}

.detail-hero-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.hero-badges {
  display: flex;
  align-items: center;
  gap: 8px;
}

.days-left-pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 20px;
  background: rgba(239, 68, 68, 0.2);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #fca5a5;
  font-size: 12px;
  font-weight: 750;
}

.detail-hero-body {
  margin-bottom: 20px;
}

.institution-pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #93c5fd;
  font-size: 12px;
  font-weight: 750;
  margin-bottom: 10px;
}

.hero-announcement-title {
  font-size: 24px;
  font-weight: 850;
  line-height: 1.35;
  color: #ffffff;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.position-tag-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #e2e8f0;
  font-size: 12.5px;
  font-weight: 750;
  backdrop-filter: blur(8px);
}

/* Executive Stats Grid Strip */
.executive-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

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

.stat-box {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.stat-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.stat-icon.blue { background: rgba(59, 130, 246, 0.2); color: #60a5fa; }
.stat-icon.purple { background: rgba(168, 85, 247, 0.2); color: #c084fc; }
.stat-icon.amber { background: rgba(245, 158, 11, 0.2); color: #fbbf24; }
.stat-icon.emerald { background: rgba(16, 185, 129, 0.2); color: #34d399; }

.stat-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.stat-label {
  font-size: 10px;
  font-weight: 800;
  color: #94a3b8;
  letter-spacing: 0.5px;
}

.stat-value {
  font-size: 13px;
  font-weight: 800;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 480px) {
  .executive-stats-grid {
    gap: 10px;
  }

  .stat-box {
    align-items: flex-start;
    gap: 10px;
    padding: 12px 10px;
  }

  .stat-value {
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    line-height: 1.25;
    overflow-wrap: anywhere;
  }
}

/* Detail Content Card & Tabs */
.detail-content-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.application-details-card {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 14px;
  padding: 18px;
  border: 1px solid #dce6f3;
  border-radius: 8px;
  background: #ffffff;
}

.application-details-card__icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #eef5ff;
  color: #0d6efd;
  font-size: 22px;
}

.application-details-card__body {
  min-width: 0;
}

.application-details-card h3 {
  margin: 0 0 8px;
  color: #08285c;
  font-size: 18px;
  font-weight: 850;
  line-height: 1.25;
}

.application-details-card p {
  margin: 0;
  color: #536889;
  line-height: 1.6;
}

.application-details-card__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 14px 0;
}

.application-details-card__facts div {
  min-width: 0;
  padding: 10px 12px;
  border: 1px solid #e5edf7;
  border-radius: 8px;
  background: #f8fbff;
}

.application-details-card__facts dt {
  color: #667085;
  font-size: 12px;
  font-weight: 800;
}

.application-details-card__facts dd {
  margin: 3px 0 0;
  color: #10234b;
  font-size: 13px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.application-details-card__button {
  border-radius: 8px;
  min-height: 42px;
  font-weight: 800;
}

.application-details-card__note {
  margin-top: 12px !important;
  color: #64748b !important;
  font-size: 13px;
}

.official-description-section {
  min-width: 0;
}

.official-description-section .section-title {
  margin: 0 0 14px;
  color: #08285c;
  font-size: 19px;
  font-weight: 900;
  line-height: 1.3;
}

.paragraphs-list {
  display: grid;
  gap: 12px;
}

.paragraphs-list p {
  margin: 0;
  color: #273b5d;
  font-size: 15.5px;
  line-height: 1.75;
  overflow-wrap: anywhere;
}

.official-raw-text-panel {
  margin-top: 16px;
  border: 1px solid #d8e3f2;
  border-radius: 8px;
  background: #f8fbff;
  overflow: hidden;
}

.official-raw-text-panel summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 48px;
  padding: 13px 16px;
  color: #0f3472;
  font-weight: 850;
  cursor: pointer;
}

.official-raw-text-panel summary::marker {
  color: #0d6efd;
}

.official-raw-text-panel summary small {
  flex: 0 0 auto;
  color: #64748b;
  font-size: 12px;
  font-weight: 800;
}

.official-raw-text {
  display: grid;
  gap: 12px;
  padding: 16px;
  border-top: 1px solid #d8e3f2;
  background: #ffffff;
}

.official-raw-text p {
  margin: 0;
  color: #344664;
  font-size: 14.5px;
  line-height: 1.72;
  overflow-wrap: anywhere;
}

.verified-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.verified-info-block {
  min-width: 0;
  padding: 14px;
  border: 1px solid #dce6f3;
  border-radius: 8px;
  background: #ffffff;
}

.verified-info-block--wide {
  grid-column: 1 / -1;
}

.verified-info-block h4 {
  margin: 0 0 10px;
  color: #0f3472;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.35;
}

.verified-info-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  color: #334155;
  font-size: 14px;
  line-height: 1.6;
}

.verified-info-list li,
.verified-info-text {
  overflow-wrap: anywhere;
}

.verified-info-text {
  margin: 0;
  color: #334155;
  font-size: 14px;
  line-height: 1.65;
}

.announcement-application-guide {
  padding: 20px;
  border: 1px solid #dbe6f3;
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.announcement-application-guide__header {
  max-width: 820px;
}

.announcement-application-guide__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
  color: #0d6efd;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.announcement-application-guide h3,
.announcement-application-guide h4 {
  color: #08285c;
  font-weight: 900;
  line-height: 1.25;
}

.announcement-application-guide h3 {
  margin: 0 0 8px;
  font-size: 22px;
}

.announcement-application-guide p {
  margin: 0;
  color: #536889;
  line-height: 1.65;
}

.announcement-application-guide__steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.announcement-application-guide__step {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  padding: 14px;
  border: 1px solid #e1ebf7;
  border-radius: 8px;
  background: #ffffff;
}

.announcement-application-guide__icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #eef5ff;
  color: #0d6efd;
  font-size: 20px;
}

.announcement-application-guide__step h4,
.announcement-application-guide__tips h4,
.announcement-application-guide__faq h4 {
  margin: 0 0 6px;
  font-size: 15px;
}

.announcement-application-guide__step p {
  font-size: 13.5px;
}

.announcement-application-guide__details {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 14px;
  margin-top: 16px;
}

.announcement-application-guide__tips,
.announcement-application-guide__faq {
  min-width: 0;
  padding: 16px;
  border: 1px solid #e1ebf7;
  border-radius: 8px;
  background: #ffffff;
}

.announcement-application-guide__tips ul {
  margin: 10px 0 0;
  padding-left: 18px;
  color: #334155;
  line-height: 1.65;
}

.announcement-application-guide__tips li {
  margin-bottom: 6px;
}

.announcement-application-guide__faq details {
  border-top: 1px solid #e8eef7;
  padding: 10px 0;
}

.announcement-application-guide__faq details:first-of-type {
  border-top: 0;
}

.announcement-application-guide__faq summary {
  cursor: pointer;
  color: #10234b;
  font-weight: 850;
  overflow-wrap: anywhere;
}

.announcement-application-guide__faq details p {
  margin-top: 8px;
  font-size: 13.5px;
}

.announcement-application-guide__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid #e1ebf7;
}

.announcement-application-guide__footer p {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13.5px;
}

.announcement-application-guide__footer i {
  color: #0d6efd;
}

.announcement-application-guide__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.announcement-application-guide__actions .btn {
  border-radius: 8px;
  font-weight: 850;
  white-space: normal;
}

.official-document-modal .modal-dialog {
  max-width: min(1180px, calc(100% - 32px));
}

.official-document-modal .modal-content {
  height: min(90vh, 920px);
  border: 0;
  border-radius: 8px;
  overflow: hidden;
}

.official-document-modal .modal-header {
  min-height: 58px;
  border-bottom-color: #e5edf7;
}

.official-document-modal .modal-title {
  color: #08285c;
  font-size: 18px;
  font-weight: 850;
}

.official-document-modal .modal-body {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 10px;
  min-height: 0;
  padding: 12px;
  background: #f8fafc;
}

.official-document-frame {
  width: 100%;
  height: 100%;
  min-height: 0;
  border: 1px solid #dce6f3;
  border-radius: 8px;
  background: #ffffff;
}

.official-document-fallback {
  margin: 0;
  color: #64748b;
  font-size: 13px;
  text-align: center;
}

.official-document-fallback a {
  color: #0d6efd;
  font-weight: 800;
}

@media (max-width: 640px) {
  .application-details-card {
    grid-template-columns: minmax(0, 1fr);
    padding: 14px;
  }

  .application-details-card__facts {
    grid-template-columns: minmax(0, 1fr);
  }

  .application-details-card__button {
    width: 100%;
    white-space: normal;
  }

  .announcement-application-guide {
    padding: 14px;
  }

  .announcement-application-guide h3 {
    font-size: 19px;
  }

  .announcement-application-guide__steps,
  .announcement-application-guide__details {
    grid-template-columns: minmax(0, 1fr);
  }

  .announcement-application-guide__step {
    grid-template-columns: minmax(0, 1fr);
  }

  .announcement-application-guide__footer {
    align-items: stretch;
    flex-direction: column;
  }

  .announcement-application-guide__actions,
  .announcement-application-guide__actions .btn {
    width: 100%;
  }

  .official-document-modal .modal-dialog {
    max-width: none;
    width: calc(100% - 16px);
    margin: 8px auto;
  }

  .official-document-modal .modal-content {
    height: 90dvh;
    max-height: 90dvh;
  }

  .official-document-modal .modal-title {
    font-size: 16px;
  }
}

.card-header-tabs {
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  padding: 12px 16px 0;
}

.executive-pills .nav-link {
  border-radius: 8px 8px 0 0;
  padding: 10px 18px;
  font-weight: 750;
  font-size: 13.5px;
  color: #64748b;
  border: none;
  background: transparent;
  transition: all 0.15s ease;
}

.executive-pills .nav-link:hover {
  color: #2563eb;
  background: rgba(37, 99, 235, 0.05);
}

.executive-pills .nav-link.active {
  color: #2563eb;
  background: #ffffff;
  box-shadow: 0 -2px 0 #2563eb inset, 0 -2px 6px rgba(15, 23, 42, 0.03);
}

.card-body-content {
  padding: 24px;
}

.summary-highlight-banner {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  border-radius: 12px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #1e3a8a;
}

.summary-highlight-banner .highlight-icon {
  font-size: 24px;
  color: #2563eb;
  flex-shrink: 0;
}

.summary-highlight-banner h4 {
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 4px;
}

.summary-highlight-banner p {
  font-size: 13.5px;
  line-height: 1.55;
  margin: 0;
}

/* Conditions & FAQ Grid */
.conditions-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

@media (max-width: 768px) {
  .conditions-grid {
    grid-template-columns: 1fr;
  }
}

.condition-card {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
}

.condition-header {
  padding: 12px 16px;
  font-weight: 800;
  font-size: 13.5px;
  color: #ffffff;
}

.condition-header.blue { background: #2563eb; }
.condition-header.purple { background: #7c3aed; }

.condition-list {
  list-style: none;
  padding: 16px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.condition-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: #334155;
}

/* Bottom Share Bar */
.bottom-share-bar {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.share-title {
  font-size: 13px;
  font-weight: 750;
  color: #334155;
}

.btn-share-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  transition: all 0.15s ease;
  cursor: pointer;
}

.btn-share-pill.whatsapp { background: #dcfce7; color: #15803d; border-color: #bbf7d0; }
.btn-share-pill.whatsapp:hover { background: #16a34a; color: #ffffff; }

.btn-share-pill.twitter { background: #f1f5f9; color: #0f172a; border-color: #e2e8f0; }
.btn-share-pill.twitter:hover { background: #0f172a; color: #ffffff; }

.btn-share-pill.facebook { background: #dbeafe; color: #1d4ed8; border-color: #bfdbfe; }
.btn-share-pill.facebook:hover { background: #2563eb; color: #ffffff; }

.btn-share-pill.copy { background: #f8fafc; color: #475569; border-color: #cbd5e1; }
.btn-share-pill.copy:hover { background: #475569; color: #ffffff; }

/* News Detail Spot Grid & Lead Quote */
.news-lead-quote {
  position: relative;
  padding: 16px 20px 16px 44px;
  border-radius: 12px;
  background: #f8fafc;
  border-left: 4px solid #2563eb;
  margin-bottom: 20px;
}

.news-lead-quote .quote-icon {
  position: absolute;
  left: 14px;
  top: 14px;
  font-size: 20px;
  color: #2563eb;
}

.news-lead-quote p {
  font-size: 14px;
  line-height: 1.6;
  font-weight: 600;
  color: #334155;
  margin: 0;
}

.news-spot-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .news-spot-cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.spot-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border-radius: 10px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

.spot-card.highlight {
  background: #fffbeb;
  border-color: #fde68a;
}

.spot-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: #eff6ff;
  color: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.spot-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.spot-info span {
  font-size: 10.5px;
  font-weight: 750;
  color: #64748b;
  text-transform: uppercase;
}

.spot-info strong {
  font-size: 12.5px;
  font-weight: 800;
  color: #0f172a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Categories Page Layout & Hero Styling */
.categories-hero-banner,
.category-detail-hero-banner {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #ffffff;
  padding: 32px;
  border-radius: 16px;
  margin-bottom: 24px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

@media (max-width: 992px) {
  .categories-hero-banner,
  .category-detail-hero-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}

.categories-hero-banner h1,
.category-detail-hero-banner h1 {
  color: #ffffff !important;
  font-size: 28px;
  font-weight: 850;
  margin-bottom: 8px;
}

.categories-hero-banner p,
.category-detail-hero-banner p {
  color: #cbd5e1 !important;
  font-size: 14.5px;
  margin-bottom: 16px;
}

.hero-stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.stat-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #e2e8f0;
  font-size: 12.5px;
  font-weight: 700;
}

/* Category Main Cards (3-Column Grid) */
.category-card-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 20px !important;
}

@media (max-width: 992px) {
  .category-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 576px) {
  .category-card-grid {
    grid-template-columns: 1fr !important;
  }
}

.category-main-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.category-main-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
  border-color: #cbd5e1;
}

.category-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.category-card-icon-badge {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #eff6ff;
  color: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.category-count-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 20px;
  background: #f1f5f9;
  color: #334155;
  font-size: 12px;
  font-weight: 750;
}

.category-card-body h2 {
  font-size: 17px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 6px;
}

.category-card-body p {
  font-size: 13px;
  color: #64748b;
  line-height: 1.5;
  margin-bottom: 14px;
}

.child-pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 6px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #475569;
  font-size: 11.5px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.15s ease;
}

.child-pill:hover {
  background: #2563eb;
  color: #ffffff;
  border-color: #2563eb;
}

.btn-category-explore {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  border-radius: 10px;
  background: #f1f5f9;
  color: #1e293b;
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
  margin-top: 14px;
  transition: all 0.15s ease;
}

.category-main-card:hover .btn-category-explore {
  background: #2563eb;
  color: #ffffff;
}

.category-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 20px;
  align-items: start;
}

@media (max-width: 992px) {
  .category-content-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Haber Detay Sayfası (News Detail Page Complete Styles)
   ========================================================================== */
/* ==========================================================================
   Haber Detay Sayfası (News Detail Page Premium AntiGravity Styles)
   ========================================================================== */
.news-detail-article {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 6px 24px rgba(15, 23, 42, 0.04);
}

@media (max-width: 768px) {
  .news-detail-article {
    padding: 20px 16px;
  }
}

.news-detail-title {
  font-family: var(--font-serif) !important;
  font-size: 28px !important;
  font-weight: 800 !important;
  line-height: 1.35 !important;
  color: #0c172d !important;
  margin-bottom: 20px !important;
  letter-spacing: -0.3px;
}

@media (max-width: 768px) {
  .news-detail-title {
    font-size: 22px !important;
  }
}

.news-detail-meta-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.news-detail-category-badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 14px;
  border-radius: 20px;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.2);
  color: #2563eb;
  font-size: 12px;
  font-weight: 750;
}

.news-detail-meta-item {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 20px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  font-size: 12px;
  font-weight: 650;
  color: #64748b;
}

.news-lead-quote {
  display: flex !important;
  align-items: flex-start !important;
  gap: 14px !important;
  position: relative !important;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%) !important;
  border-left: 4px solid var(--accent-gold) !important;
  border-radius: 0 14px 14px 0 !important;
  padding: 18px 22px !important;
  margin-bottom: 24px !important;
}

.news-lead-quote .quote-icon {
  position: static !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 34px !important;
  height: 34px !important;
  border-radius: 10px !important;
  background: rgba(245, 158, 11, 0.18) !important;
  color: var(--accent-gold) !important;
  font-size: 20px !important;
  line-height: 1 !important;
  flex-shrink: 0 !important;
  margin: 0 !important;
  transform: none !important;
  float: none !important;
}

.news-lead-quote p {
  flex: 1 !important;
  margin: 0 !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  line-height: 1.6 !important;
  color: #334155 !important;
}

.news-detail-cover-wrapper {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 28px;
  box-shadow: 0 12px 32px rgba(12, 23, 45, 0.1);
  background: #0c172d;
  aspect-ratio: 16 / 9;
}

.news-detail-cover {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: contain;
  display: block;
  background: #070e1d;
  transition: transform 0.4s ease;
}

.news-story-box {
  margin-bottom: 28px;
}

.news-spot-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 20px;
}

@media (max-width: 992px) {
  .news-spot-cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 576px) {
  .news-spot-cards-grid {
    grid-template-columns: 1fr;
  }
}

.spot-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  transition: all 0.2s ease;
}

.spot-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(12, 23, 45, 0.08);
  border-color: #cbd5e1;
}

.spot-card.highlight {
  background: #fffbeb;
  border-color: #fde68a;
}

.spot-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #eff6ff;
  color: #2563eb;
  display: grid;
  place-items: center;
  font-size: 20px;
  flex-shrink: 0;
}

.spot-card.highlight .spot-icon {
  background: #fef3c7;
  color: #d97706;
}

.spot-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.spot-info span {
  font-size: 11px;
  font-weight: 750;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 2px;
}

.spot-info strong {
  font-size: 13px;
  font-weight: 800;
  color: #0c172d;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news-editor-note {
  background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 100%);
  border: 1px solid #dbeafe;
  border-left: 4px solid #2563eb;
  border-radius: 12px;
  padding: 18px 22px;
}

.note-header {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 800;
  color: #1e3a8a;
  margin-bottom: 6px;
}

.news-editor-note p {
  font-size: 13.5px;
  color: #334155;
  line-height: 1.6;
  margin: 0;
}

.news-tabs-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 28px;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
}

.news-detail-tabs {
  border-bottom: 1px solid #e2e8f0;
  margin-bottom: 20px;
  gap: 8px;
}

.news-detail-tabs .nav-link {
  border: none;
  padding: 10px 18px;
  border-radius: 10px;
  font-weight: 750;
  font-size: 13.5px;
  color: #64748b;
  background: #f8fafc;
  transition: all 0.2s ease;
}

.news-detail-tabs .nav-link:hover {
  color: #0c172d;
  background: #e2e8f0;
}

.news-detail-tabs .nav-link.active {
  background: #0c172d;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(12, 23, 45, 0.2);
}

.tab-heading {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 800;
  color: #0c172d;
  margin-bottom: 12px;
}

.tab-lead {
  font-size: 14px;
  color: #475569;
  line-height: 1.65;
  margin-bottom: 18px;
}

.news-bullet-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.news-bullet-list li {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #334155;
}

.news-condition-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

@media (max-width: 768px) {
  .news-condition-grid {
    grid-template-columns: 1fr;
  }
}

.condition-item {
  padding: 14px 16px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.condition-item strong {
  font-size: 11.5px;
  text-transform: uppercase;
  color: #64748b;
  font-weight: 800;
}

.condition-item span {
  font-size: 13.5px;
  font-weight: 750;
  color: #0c172d;
}

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

@media (max-width: 768px) {
  .date-summary {
    grid-template-columns: 1fr;
  }
}

.date-summary div {
  padding: 14px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  text-align: center;
}

.date-summary div.highlight-date {
  background: #fffbeb;
  border-color: #fde68a;
}

.date-summary span {
  display: block;
  font-size: 11px;
  color: #64748b;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.date-summary b {
  display: block;
  font-size: 14px;
  color: #0c172d;
  font-weight: 800;
}

.news-original-content {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 28px 32px;
  margin-bottom: 28px;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
}

@media (max-width: 768px) {
  .news-original-content {
    padding: 20px 16px;
  }
}

.news-original-content .section-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 800;
  color: #0c172d;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #f1f5f9;
}

.news-content p {
  font-size: 15.5px;
  line-height: 1.75;
  color: #334155;
  margin-bottom: 20px;
}

.news-content h2 {
  font-family: var(--font-serif);
  font-size: 21px;
  font-weight: 800;
  color: #0c172d;
  margin-top: 32px;
  margin-bottom: 14px;
  border-left: 4px solid var(--accent-gold);
  padding-left: 12px;
}

.news-content h3 {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 750;
  color: #1e293b;
  margin-top: 24px;
  margin-bottom: 10px;
}

.news-detail-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 32px;
  border-radius: 16px;
  background: linear-gradient(135deg, #0c172d 0%, #172544 100%);
  color: #ffffff;
  margin-top: 28px;
  box-shadow: 0 12px 32px rgba(12, 23, 45, 0.15);
}

@media (max-width: 768px) {
  .news-detail-cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
  }
}

.cta-text strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 4px;
}

.cta-text p {
  font-size: 13.5px;
  color: #a9c7ec;
  margin: 0;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  border-radius: 12px;
  background: var(--accent-gold);
  color: #0c172d;
  font-weight: 800;
  font-size: 14.5px;
  text-decoration: none;
  transition: all 0.2s ease;
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.3);
}

.btn-cta:hover {
  background: #d97706;
  color: #0c172d;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.4);
}

/* Sidebar Panels */
.news-source-announcement {
  padding: 20px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  margin-bottom: 24px;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
}

.news-source-announcement .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11.5px;
  font-weight: 900;
  letter-spacing: 0.05em;
  color: #0c172d;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid #f1f5f9;
}

.source-announcement-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border-radius: 12px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #1e3a8a;
  text-decoration: none;
  transition: all 0.2s ease;
}

.source-announcement-card:hover {
  background: #dbeafe;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.1);
}

.source-announcement-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #2563eb;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.source-announcement-card span strong {
  display: block;
  font-size: 13.5px;
  font-weight: 800;
  color: #1e3a8a;
  line-height: 1.35;
}

.source-announcement-card span small {
  display: block;
  font-size: 12px;
  color: #2563eb;
  font-weight: 600;
  margin-top: 3px;
}

.source-announcement-card span em {
  display: block;
  font-size: 11.5px;
  color: #dc2626;
  font-style: normal;
  font-weight: 800;
  margin-top: 3px;
}

.related-news-panel {
  padding: 20px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
}

.related-news-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid #f1f5f9;
  font-weight: 900;
  font-size: 11.5px;
  letter-spacing: 0.05em;
  color: #0c172d;
}

.related-news-header a {
  font-size: 12px;
  font-weight: 750;
  color: #2563eb;
  text-decoration: none;
}

.related-news-card {
  display: flex;
  gap: 12px;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  text-decoration: none;
  margin-bottom: 12px;
  transition: all 0.2s ease;
}

.related-news-card:hover {
  background: #ffffff;
  border-color: #cbd5e1;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
}

.related-news-thumb {
  width: 76px;
  height: 60px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.related-news-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
}

.related-news-info strong {
  font-size: 13px;
  font-weight: 750;
  color: #0c172d;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.related-news-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  color: #64748b;
  margin-top: 4px;
}

/* ==========================================================================
   Kategori Detay Sayfası (Category Detail Page Complete Styles)
   ========================================================================== */
.category-detail-page {
  padding-top: 16px;
  padding-bottom: 40px;
}

.category-detail-hero-banner {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #ffffff;
  padding: 32px;
  border-radius: 16px;
  margin-bottom: 24px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

@media (max-width: 992px) {
  .category-detail-hero-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
  }
}

.category-hero-main {
  display: flex;
  align-items: center;
  gap: 20px;
}

@media (max-width: 576px) {
  .category-hero-main {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}

.category-hero-icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: grid;
  place-items: center;
  font-size: 30px;
  color: #60a5fa;
  flex-shrink: 0;
}

.category-hero-text {
  display: flex;
  flex-direction: column;
}

.category-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  border-radius: 20px;
  background: rgba(96, 165, 250, 0.15);
  border: 1px solid rgba(96, 165, 250, 0.3);
  color: #60a5fa;
  font-size: 12px;
  font-weight: 750;
  margin-bottom: 8px;
  width: fit-content;
}

.category-badge-pill strong {
  color: #ffffff;
}

.category-detail-hero-banner h1 {
  color: #ffffff !important;
  font-size: 26px !important;
  font-weight: 850 !important;
  margin: 0 0 6px 0 !important;
  letter-spacing: -0.3px;
}

.category-detail-hero-banner p {
  color: #cbd5e1 !important;
  font-size: 14px !important;
  margin: 0 !important;
  line-height: 1.5;
}

.btn-category-all-jobs {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 10px;
  background: #2563eb;
  color: #ffffff;
  font-weight: 750;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  white-space: nowrap;
}

.btn-category-all-jobs:hover {
  background: #1d4ed8;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.4);
}

/* Subcategories Section */
.category-subsections-container {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
}

.section-title-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f1f5f9;
}

.section-title-bar h2 {
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
}

.sub-count-tag {
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  background: #f1f5f9;
  color: #475569;
}

.subcategory-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
}

.subcategory-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  text-decoration: none;
  color: #1e293b;
  font-weight: 750;
  font-size: 13.5px;
  transition: all 0.2s ease;
}

.subcategory-card:hover {
  background: #eff6ff;
  border-color: #bfdbfe;
  color: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.08);
}

.sub-card-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sub-icon {
  color: #3b82f6;
  font-size: 14px;
}

.sub-arrow {
  color: #94a3b8;
  font-size: 13px;
  transition: transform 0.2s ease;
}

.subcategory-card:hover .sub-arrow {
  color: #2563eb;
  transform: translateX(3px);
}

/* Category Content Panels */
.category-panel-section {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
}

.category-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  text-align: center;
  color: #64748b;
}

.category-empty i {
  font-size: 42px;
  color: #cbd5e1;
  margin-bottom: 12px;
}

.category-empty strong {
  font-size: 16px;
  color: #1e293b;
  margin-bottom: 4px;
}

.category-empty span {
  font-size: 13px;
  color: #64748b;
}

.category-seo-guide {
  display: grid;
  gap: 18px;
}

.category-seo-intro {
  margin: 0;
  color: #334155;
  font-size: 16px;
  line-height: 1.75;
}

.category-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.category-info-card {
  min-width: 0;
  min-height: 132px;
  padding: 16px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
}

.category-info-card i {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 12px;
  color: #2563eb;
  background: #eff6ff;
  border-radius: 10px;
  font-size: 17px;
}

.category-info-card strong {
  display: block;
  margin-bottom: 6px;
  color: #0f172a;
  font-size: 15px;
  font-weight: 850;
}

.category-info-card span {
  display: block;
  color: #475569;
  font-size: 13px;
  line-height: 1.55;
}

.category-seo-copy-grid {
  display: grid;
  gap: 14px;
}

.category-seo-copy-grid article {
  padding: 18px 0 0;
  border-top: 1px solid #e2e8f0;
}

.category-seo-copy-grid h3 {
  margin: 0 0 8px;
  color: #0f172a;
  font-size: 18px;
  font-weight: 850;
}

.category-seo-copy-grid p {
  margin: 0;
  color: #334155;
  font-size: 15px;
  line-height: 1.72;
}

.category-faq-list {
  display: grid;
  gap: 10px;
}

.category-faq-list details {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
}

.category-faq-list summary {
  cursor: pointer;
  padding: 15px 16px;
  color: #0f172a;
  font-weight: 850;
  line-height: 1.4;
}

.category-faq-list p {
  margin: 0;
  padding: 0 16px 16px;
  color: #475569;
  font-size: 14px;
  line-height: 1.65;
}

@media (max-width: 760px) {
  .category-info-grid {
    grid-template-columns: 1fr;
  }

  .category-panel-section {
    padding: 18px;
  }
}

/* Related Guides List */
.related-guide-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.guide-item-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  text-decoration: none;
  color: #0f172a;
  transition: all 0.2s ease;
}

.guide-item-card:hover {
  background: #ffffff;
  border-color: #cbd5e1;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.06);
}

.guide-icon-box {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #eff6ff;
  color: #2563eb;
  display: grid;
  place-items: center;
  font-size: 18px;
  flex-shrink: 0;
}

.guide-item-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}

.guide-item-info strong {
  font-size: 14px;
  font-weight: 750;
  color: #0f172a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.guide-item-info small {
  font-size: 12px;
  color: #64748b;
}

.guide-item-card .arrow {
  color: #94a3b8;
  font-size: 14px;
}

.guide-item-card:hover .arrow {
  color: #2563eb;
  transform: translateX(3px);
}

/* Sidebar Panels */
.side-panel-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 24px;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
}

.side-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: #0f172a;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid #f1f5f9;
}

.side-panel-header a {
  font-size: 12px;
  font-weight: 750;
  color: #2563eb;
  text-decoration: none;
}

.side-deadline-list,
.side-discussion-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.deadline-item,
.discussion-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 14px;
  border-radius: 10px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  text-decoration: none;
  color: #0f172a;
  transition: all 0.15s ease;
}

.deadline-item:hover,
.discussion-item:hover {
  background: #ffffff;
  border-color: #cbd5e1;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
}

.deadline-item strong,
.discussion-item strong {
  font-size: 13px;
  font-weight: 750;
  color: #0f172a;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.deadline-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11.5px;
  color: #64748b;
  margin-top: 4px;
}

.days-badge {
  padding: 2px 8px;
  border-radius: 12px;
  background: #fef2f2;
  color: #dc2626;
  font-weight: 800;
  font-size: 11px;
}

.discussion-item small {
  font-size: 11.5px;
  color: #64748b;
}

/* AntiGravity How it Works Visual Feature Section */
.antigravity-guide-section {
  background: linear-gradient(135deg, #0c172d 0%, #172544 100%);
  border-radius: 16px;
  padding: 36px 32px;
  margin-top: 36px;
  margin-bottom: 36px;
  box-shadow: 0 16px 40px -10px rgba(12, 23, 45, 0.15);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.antigravity-guide-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, rgba(245, 158, 11, 0) 70%);
  pointer-events: none;
}

.guide-section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 32px auto;
}

.guide-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 14px;
  border-radius: 20px;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: var(--accent-gold);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.guide-section-header h2 {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.guide-section-header p {
  font-size: 14px;
  color: #a9c7ec;
  margin: 0;
  line-height: 1.5;
}

.guide-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

@media (max-width: 992px) {
  .guide-steps-grid {
    grid-template-columns: 1fr;
  }
}

.guide-step-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border-radius: 14px;
  padding: 24px 20px;
  transition: all 0.25 ease;
  display: flex;
  flex-direction: column;
}

.guide-step-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(245, 158, 11, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.step-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(245, 158, 11, 0.15);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
  position: relative;
}

.step-num {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent-gold);
  color: #0c172d;
  font-size: 11px;
  font-weight: 900;
  display: grid;
  place-items: center;
}

.guide-step-card h3 {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 750;
  color: #ffffff;
  margin-bottom: 8px;
}

.guide-step-card p {
  font-size: 13px;
  color: #a9c7ec;
  line-height: 1.5;
  margin: 0;
}
/* Modern haber portalı detay sayfası */
.news-portal-shell {
  width: min(1340px, calc(100% - 32px));
  margin: 0 auto 34px;
}
.news-breadcrumb { margin: 18px 0 16px; color: #64748b; font-size: 13px; }
.news-portal-grid { display: grid; grid-template-columns: minmax(0, .74fr) minmax(300px, .26fr); gap: 28px; align-items: start; }
.news-portal-article { min-width: 0; }
.news-article-header { background: #fff; border: 1px solid #e5eaf2; border-radius: 16px; padding: 30px; box-shadow: 0 10px 28px rgba(15,23,42,.04); }
.news-meta-line { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; color: #64748b; font-size: 13px; font-weight: 650; }
.news-meta-line span:not(:last-child)::after { content: "•"; margin-left: 10px; color: #94a3b8; }
.news-detail-title { max-width: 980px; margin: 14px 0 !important; color: #071b3a !important; font-family: var(--font-sans, system-ui, sans-serif) !important; font-size: clamp(28px, 3.1vw, 40px) !important; font-weight: 800 !important; line-height: 1.18 !important; letter-spacing: 0 !important; }
.news-author-row { display: flex; gap: 12px; align-items: center; margin-bottom: 20px; color: #475569; }
.news-author-avatar { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: #eff6ff; color: #2563eb; font-weight: 850; border: 1px solid #bfdbfe; }
.news-author-row strong,.news-author-row small { display: block; }
.news-author-row strong { color: #1e293b; font-size: 14px; }
.news-author-row small { margin-top: 2px; color: #64748b; font-size: 12px; }
.news-lead-quote { display: block !important; margin: 0 0 24px !important; padding: 20px 24px !important; background: #eff6ff !important; border: 0 !important; border-left: 4px solid #2563eb !important; border-radius: 0 14px 14px 0 !important; }
.news-lead-quote p { margin: 0 !important; color: #1e3a8a !important; font-size: 18px !important; font-weight: 500 !important; line-height: 1.65 !important; }
.news-detail-cover-wrapper { margin: 0 0 18px; background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 16px; overflow: hidden; box-shadow: none; aspect-ratio: auto; }
.news-detail-cover { display: block; width: 100%; height: auto; max-height: 560px; object-fit: cover; object-position: center; background: #f8fafc; }
.news-detail-cover-wrapper figcaption { padding: 9px 14px; color: #64748b; font-size: 12px; border-top: 1px solid #e2e8f0; }
.news-spot-cards-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; margin: 20px 0 0; }
.spot-card { min-height: 76px; display: flex; gap: 12px; align-items: center; padding: 14px; background: #fff; border: 1px solid #e5eaf2; border-radius: 14px; transition: transform .16s ease, border-color .16s ease; }
.spot-card:hover { transform: translateY(-2px); box-shadow: none; border-color: #bfdbfe; }
.spot-card.deadline { background: #fffbeb; border-color: #fde68a; }
.spot-card.deadline.expired { background: #fef2f2; border-color: #fecaca; }
.spot-icon { width: 42px; height: 42px; flex: 0 0 42px; display: grid; place-items: center; border-radius: 12px; background: #eff6ff; color: #2563eb; font-size: 18px; }
.spot-info { min-width: 0; }
.spot-info span { display: block; margin-bottom: 3px; color: #64748b; font-size: 11px; font-weight: 800; text-transform: uppercase; }
.spot-info strong { display: -webkit-box; overflow: hidden; color: #1e293b; font-size: 13px; font-weight: 800; line-height: 1.32; white-space: normal; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.news-editor-note,.news-toc-inline,.news-detail-table-card,.news-original-content,.news-detail-cta,.news-share-strip,.news-bottom-cta,.news-inline-newsletter { margin-top: 22px; }
.news-editor-note { padding: 22px 24px; background: #eff6ff; border: 1px solid #bfdbfe; border-left: 4px solid #2563eb; border-radius: 0 14px 14px 0; }
.note-header { display: flex; gap: 8px; align-items: center; margin-bottom: 8px; color: #1d4ed8; font-size: 15px; font-weight: 850; }
.news-editor-note p { margin: 0; color: #1e3a8a; font-size: 16px; line-height: 1.7; }
.news-toc-inline { display: flex; gap: 14px; align-items: flex-start; padding: 16px 18px; background: #fff; border: 1px solid #e5eaf2; border-radius: 14px; }
.news-toc-inline strong { flex: 0 0 auto; color: #071b3a; }
.news-toc-inline div { display: flex; flex-wrap: wrap; gap: 8px; }
.news-toc-inline a,.rail-toc a { color: #2563eb; text-decoration: none; font-weight: 750; }
.news-toc-inline a { padding: 6px 10px; background: #eff6ff; border-radius: 999px; font-size: 13px; }
.news-detail-table-card { overflow: hidden; background: #fff; border: 1px solid #dbe6f3; border-radius: 16px; box-shadow: 0 10px 28px rgba(15,23,42,.04); }
.news-detail-table-heading { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 18px 22px; background: #f8fafc; border-bottom: 1px solid #e5eaf2; }
.news-detail-table-heading span { display: inline-flex; align-items: center; gap: 8px; color: #2563eb; font-size: 12px; font-weight: 850; text-transform: uppercase; }
.news-detail-table-heading strong { color: #071b3a; font-size: 19px; font-weight: 850; }
.news-detail-table-wrap { overflow-x: auto; }
.news-detail-table { width: 100%; border-collapse: collapse; table-layout: fixed; }
.news-detail-table th,.news-detail-table td { padding: 15px 18px; border-bottom: 1px solid #e5eaf2; vertical-align: top; line-height: 1.45; }
.news-detail-table tr:last-child th,.news-detail-table tr:last-child td { border-bottom: 0; }
.news-detail-table th { width: 34%; color: #475569; background: #fbfdff; font-size: 13px; font-weight: 850; text-align: left; text-transform: uppercase; }
.news-detail-table td { color: #0f172a; font-size: 15px; font-weight: 700; overflow-wrap: anywhere; }
.news-original-content { padding: 34px 38px; background: #fff; border: 1px solid #e5eaf2; border-radius: 16px; box-shadow: 0 10px 28px rgba(15,23,42,.04); }
.news-original-content .section-title { margin: 0 0 22px; color: #071b3a; font-size: 22px; font-weight: 850; border: 0; }
.news-content { max-width: 840px; }
.news-content p { margin: 0 0 19px; color: #334155; font-size: 18px; line-height: 1.82; }
.news-content h2 { margin: 38px 0 16px; padding-left: 14px; color: #071b3a; font-family: var(--font-sans, system-ui, sans-serif); font-size: 28px; font-weight: 850; line-height: 1.25; border-left: 4px solid #2563eb; }
.news-content h3 { margin: 30px 0 12px; color: #0f2a55; font-family: var(--font-sans, system-ui, sans-serif); font-size: 22px; font-weight: 800; }
.news-content ul,.news-content ol { margin: 0 0 22px; padding: 0; list-style: none; }
.news-content li { position: relative; margin-bottom: 10px; padding-left: 28px; color: #334155; font-size: 17px; line-height: 1.7; }
.news-content li::before { content: "✓"; position: absolute; left: 0; top: 0; color: #2563eb; font-weight: 900; }
.news-detail-cta { display: flex; justify-content: space-between; gap: 18px; align-items: center; padding: 26px; background: #071b3a; border-radius: 16px; color: #fff; }
.cta-text strong,.news-bottom-cta strong,.news-inline-newsletter strong { display: block; font-size: 20px; line-height: 1.3; }
.cta-text p { margin: 6px 0 0; color: #cbd5e1; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 10px; justify-content: flex-end; }
.btn-cta { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; padding: 0 16px; border-radius: 10px; text-decoration: none; font-weight: 800; }
.btn-cta.primary { background: #2563eb; color: #fff; }
.btn-cta.secondary { background: #fff; color: #1d4ed8; border: 1px solid #bfdbfe; }
.news-share-strip { display: flex; flex-wrap: wrap; gap: 9px; align-items: center; padding: 14px; background: #fff; border: 1px solid #e5eaf2; border-radius: 14px; }
.news-share-strip strong { margin-right: 4px; color: #071b3a; }
.news-share-strip a,.news-share-strip button { padding: 8px 11px; color: #2563eb; background: #eff6ff; border: 1px solid #bfdbfe; border-radius: 999px; font-weight: 800; text-decoration: none; }
.news-bottom-cta,.news-inline-newsletter { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 24px; border-radius: 16px; }
.news-bottom-cta { background: #fff; border: 1px solid #e5eaf2; }
.news-bottom-cta span,.news-inline-newsletter span,.rail-card > span { display: block; color: #64748b; font-size: 12px; font-weight: 850; text-transform: uppercase; }
.news-bottom-cta a { color: #fff; background: #2563eb; padding: 12px 16px; border-radius: 10px; font-weight: 850; text-decoration: none; }
.news-inline-newsletter { background: #071b3a; color: #fff; }
.news-inline-newsletter span { color: #93c5fd; }
.news-inline-newsletter form { display: flex; gap: 8px; min-width: min(420px, 100%); }
.news-inline-newsletter input { flex: 1; min-height: 44px; padding: 0 13px; border: 1px solid #334155; border-radius: 10px; }
.news-inline-newsletter button { min-height: 44px; padding: 0 16px; color: #fff; background: #2563eb; border: 0; border-radius: 10px; font-weight: 850; }
.news-portal-rail { min-width: 0; }
.news-rail-sticky { position: sticky; top: 92px; display: grid; gap: 14px; }
.rail-card { padding: 18px; background: #fff; border: 1px solid #e5eaf2; border-radius: 16px; }
.rail-card > strong { display: block; margin-bottom: 10px; color: #071b3a; font-size: 17px; }
.rail-deadline-card { background: #fffbeb; border-color: #fde68a; }
.rail-deadline-card.expired { background: #fef2f2; border-color: #fecaca; }
.rail-deadline-card strong { margin: 4px 0; color: #92400e; font-size: 22px; }
.rail-toc { display: grid; gap: 9px; }
.rail-toc a.level-3 { padding-left: 10px; color: #64748b; font-size: 13px; }
.related-news-header { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 10px; }
.related-news-header span { color: #071b3a; font-weight: 850; }
.related-news-list { display: grid; gap: 12px; }
.related-news-card { display: grid; grid-template-columns: 86px minmax(0,1fr); gap: 11px; align-items: center; padding-bottom: 12px; color: inherit; border-bottom: 1px solid #e5eaf2; text-decoration: none; }
.related-news-card:last-child { padding-bottom: 0; border-bottom: 0; }
.related-news-thumb { width: 86px; height: 64px; object-fit: cover; border-radius: 10px; }
.related-news-card strong { display: -webkit-box; overflow: hidden; color: #1e293b; font-size: 14px; line-height: 1.35; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.related-news-card small { display: block; margin-top: 5px; color: #64748b; font-size: 12px; }
.rail-announcements { display: grid; gap: 10px; }
.rail-announcements a { display: grid; gap: 3px; padding: 11px 0; color: inherit; border-top: 1px solid #e5eaf2; text-decoration: none; }
.rail-announcements span,.rail-announcements small { color: #64748b; font-size: 12px; }
.rail-announcements b { display: -webkit-box; overflow: hidden; color: #1e293b; font-size: 14px; line-height: 1.35; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.rail-follow { background: #eff6ff; border-color: #bfdbfe; }
.rail-follow a { display: inline-flex; margin-top: 12px; color: #fff; background: #2563eb; padding: 10px 13px; border-radius: 10px; font-weight: 850; text-decoration: none; }
html { scroll-behavior: smooth; }
@media (max-width: 1100px) {
  .news-portal-grid { grid-template-columns: 1fr; }
  .news-rail-sticky { position: static; }
}
@media (max-width: 760px) {
  .news-portal-shell { width: min(100% - 24px, 640px); }
  .news-article-header,.news-original-content { padding: 20px 16px; }
  .news-detail-title { font-size: clamp(27px, 8vw, 31px) !important; }
  .news-meta-line { gap: 6px; }
  .news-spot-cards-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .spot-card.deadline { grid-column: 1 / -1; }
  .news-content p { font-size: 16.5px; }
  .news-content h2 { font-size: 25px; }
  .news-content h3 { font-size: 20px; }
  .news-toc-inline,.news-detail-cta,.news-bottom-cta,.news-inline-newsletter { flex-direction: column; align-items: stretch; }
  .news-detail-table-heading { align-items: flex-start; flex-direction: column; padding: 16px; }
  .news-detail-table th,.news-detail-table td { display: block; width: 100%; padding: 12px 14px; }
  .news-detail-table th { border-bottom: 0; }
  .cta-actions,.news-inline-newsletter form { flex-direction: column; }
  .btn-cta,.news-bottom-cta a,.news-inline-newsletter button { width: 100%; }
}
@media (max-width: 460px) {
  .news-spot-cards-grid { grid-template-columns: 1fr; }
}
/* KIT mockup-aligned UI refresh */
:root {
  --kit-primary: #0b5cff;
  --kit-navy: #081a3a;
  --kit-bg: #f7f9fc;
  --kit-card: #fff;
  --kit-border: #e5eaf2;
  --kit-muted: #66748a;
  --kit-danger: #ef4444;
  --kit-warning: #f97316;
  --kit-success: #16a34a;
  --kit-shadow: 0 14px 36px rgba(8, 26, 58, .08);
}

body { background: var(--kit-bg); color: var(--kit-navy); }
.app-header.kit-site-header { background: rgba(255,255,255,.96); border-bottom: 1px solid var(--kit-border); box-shadow: 0 4px 18px rgba(8,26,58,.04); }
.kit-site-header .header-shell { min-height: 64px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 28px; }
.kit-site-header .brand { gap: 10px; color: var(--kit-navy); }
.kit-site-header .brand-mark { width: 34px; height: 34px; border-radius: 8px; background: var(--kit-primary); color: #fff; }
.kit-site-header .brand strong { color: var(--kit-navy); font-size: 17px; }
.kit-site-header .brand-white,
.kit-site-header .brand-accent { color: inherit; }
.kit-site-header .main-nav { justify-content: center; gap: 28px; }
.kit-site-header .main-nav a { color: var(--kit-navy); font-size: 13px; font-weight: 700; }
.kit-site-header .main-nav a.active,
.kit-site-header .main-nav a:hover { color: var(--kit-primary); }
.kit-site-header .header-right-controls { justify-content: flex-end; }
.kit-site-header .icon-btn,
.kit-site-header .auth-link { border-radius: 8px; }
.kit-site-header .auth-link { min-height: 38px; padding: 0 16px; background: var(--kit-primary); color: #fff; border: 0; font-weight: 700; }

.mobile-bottom-nav { display: none; }

.kit-home-page { display: grid; gap: 22px; padding-top: 22px; padding-bottom: 28px; }
.kit-home-page > *,
.kit-home-hero > * { min-width: 0; }
.kit-home-hero { display: grid; grid-template-columns: minmax(360px, .78fr) minmax(0, 1.35fr); gap: 18px; align-items: stretch; }
.kit-home-search-panel,
.kit-home-slider,
.kit-spotlight,
.kit-stat-bar article,
.kit-announcement-section,
.kit-popular-searches,
.kit-guides-section,
.kit-news-section { background: var(--kit-card); border: 1px solid var(--kit-border); border-radius: 8px; box-shadow: var(--kit-shadow); }
.kit-home-search-panel { padding: 28px; }
.kit-kicker { display: inline-flex; align-items: center; gap: 6px; color: var(--kit-primary); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .02em; }
.kit-home-search-panel h1 { max-width: 540px; margin: 10px 0 10px; color: var(--kit-navy); font-size: 36px; line-height: 1.14; font-weight: 800; letter-spacing: 0; }
.kit-home-search-panel p { max-width: 570px; margin: 0 0 20px; color: var(--kit-muted); font-size: 15px; line-height: 1.65; }
.kit-home-search { display: grid; grid-template-columns: 24px minmax(0, 1fr) auto; align-items: center; gap: 10px; min-height: 58px; padding: 6px 7px 6px 16px; border: 1px solid #d9e4f2; border-radius: 8px; background: #fff; box-shadow: 0 10px 26px rgba(8,26,58,.06); }
.kit-home-search i { color: #526278; }
.kit-home-search input { min-width: 0; border: 0; outline: 0; font-size: 14px; color: var(--kit-navy); }
.kit-home-search button { min-height: 44px; border: 0; border-radius: 8px; background: var(--kit-primary); color: #fff; padding: 0 24px; font-weight: 800; }
.kit-quick-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; margin-top: 16px; }
.kit-quick-grid a { display: grid; place-items: center; gap: 8px; min-height: 82px; padding: 10px; border: 1px solid var(--kit-border); border-radius: 8px; color: var(--kit-navy); text-align: center; text-decoration: none; background: #fff; }
.kit-quick-grid a i { color: var(--kit-primary); font-size: 24px; }
.kit-quick-grid a span { font-size: 12px; font-weight: 800; line-height: 1.25; }
.kit-home-feature { min-width: 0; }
.kit-home-slider { position: relative; height: 100%; min-height: 332px; overflow: hidden; }
.kit-home-slide-frame { position: relative; height: 100%; min-height: 332px; }
.kit-home-slide { position: absolute; inset: 0; opacity: 0; pointer-events: none; transition: opacity .22s ease; }
.kit-home-slide.active { opacity: 1; pointer-events: auto; }
.kit-home-slide a { position: relative; display: block; height: 100%; color: #fff; text-decoration: none; }
.kit-home-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.kit-slide-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(4,15,36,.92) 0%, rgba(4,15,36,.55) 45%, rgba(4,15,36,.08) 100%); }
.kit-slide-badges { position: absolute; top: 18px; left: 18px; display: flex; gap: 8px; }
.kit-slide-badges b { border-radius: 6px; padding: 6px 9px; background: var(--kit-danger); color: #fff; font-size: 11px; }
.kit-slide-badges b + b { background: var(--kit-primary); }
.kit-slide-copy { position: absolute; left: 22px; right: 28px; bottom: 24px; display: grid; gap: 9px; max-width: 560px; }
.kit-slide-copy strong { font-size: 30px; line-height: 1.12; font-weight: 900; }
.kit-slide-copy small { color: rgba(255,255,255,.88); font-size: 14px; line-height: 1.45; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.kit-slide-copy em { justify-self: start; border-radius: 8px; background: #fff; color: var(--kit-navy); padding: 10px 14px; font-style: normal; font-weight: 800; font-size: 13px; }
.kit-slider-controls { position: absolute; right: 16px; bottom: 16px; display: flex; align-items: center; gap: 8px; z-index: 3; }
.kit-slider-controls button { width: 34px; height: 34px; border: 1px solid rgba(255,255,255,.35); border-radius: 8px; background: rgba(255,255,255,.16); color: #fff; }
.kit-slider-dots { display: flex; gap: 5px; }
.kit-slider-dots button { width: 8px; height: 8px; min-width: 8px; padding: 0; border-radius: 999px; background: rgba(255,255,255,.55); }
.kit-slider-dots button.active { width: 18px; background: #fff; }
.kit-spotlight { padding: 16px; display: grid; gap: 10px; }
.kit-section-head { display: flex; justify-content: space-between; align-items: end; gap: 14px; margin-bottom: 16px; }
.kit-section-head.compact { margin-bottom: 10px; }
.kit-section-head h2 { margin: 2px 0 0; color: var(--kit-navy); font-size: 21px; line-height: 1.2; font-weight: 900; }
.kit-section-head a { color: var(--kit-primary); text-decoration: none; font-size: 13px; font-weight: 800; white-space: nowrap; }
.kit-spotlight-item { display: grid; grid-template-columns: 74px minmax(0, 1fr); gap: 10px; align-items: center; padding: 9px; border: 1px solid var(--kit-border); border-radius: 8px; color: var(--kit-navy); text-decoration: none; }
.kit-spotlight-item img { width: 74px; height: 54px; border-radius: 7px; object-fit: cover; }
.kit-spotlight-item strong { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; font-size: 12px; line-height: 1.3; }
.kit-spotlight-item small { color: var(--kit-muted); font-size: 11px; }
.kit-stat-bar { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.kit-stat-bar article { display: flex; align-items: center; gap: 13px; min-height: 78px; padding: 16px; }
.kit-stat-bar i { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: var(--kit-primary); color: #fff; font-size: 20px; }
.kit-stat-bar strong { display: block; color: var(--kit-navy); font-size: 22px; line-height: 1; font-weight: 900; }
.kit-stat-bar small { color: var(--kit-muted); font-size: 12px; }
.kit-announcement-section,
.kit-popular-searches,
.kit-guides-section,
.kit-news-section { padding: 18px; }
.kit-announcement-section.urgent { border-top: 3px solid var(--kit-warning); }
.kit-announcement-section.quota { border-top: 3px solid var(--kit-primary); }
.kit-announcement-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.kit-home-page .home-announcement-card { min-height: 100%; box-shadow: none; border-color: var(--kit-border); }
.kit-home-page .home-announcement-card .job-news-card__media { min-height: 126px; }
.kit-home-page .home-announcement-card .job-news-card__summary { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.kit-popular-searches { padding: 16px 18px; }
.kit-popular-searches .kit-section-head { margin-bottom: 12px; }
.kit-popular-searches .kit-section-head h2 { font-size: 18px; }
.kit-popular-searches .kit-section-head a { color: var(--kit-primary); font-size: 12px; font-weight: 800; text-decoration: none; }
.kit-chip-row { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.kit-chip-row a { display: inline-flex; align-items: center; justify-content: center; min-height: 34px; border: 1px solid #d8e5f8; border-radius: 7px; background: linear-gradient(180deg, #fff 0%, #f8fbff 100%); color: var(--kit-primary); padding: 8px 13px; font-size: 12px; font-weight: 800; line-height: 1; text-decoration: none; box-shadow: 0 1px 0 rgba(9, 41, 91, .03); }
.kit-chip-row a:hover { border-color: #9fc0fb; background: #eef5ff; transform: translateY(-1px); }
.kit-guide-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.kit-guide-card { display: grid; gap: 9px; min-height: 190px; padding: 16px; border: 1px solid var(--kit-border); border-radius: 8px; color: var(--kit-navy); text-decoration: none; background: #fff; }
.kit-guide-card span { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 8px; background: #eef5ff; color: var(--kit-primary); font-size: 22px; }
.kit-guide-card strong { font-size: 15px; line-height: 1.35; }
.kit-guide-card small { color: var(--kit-muted); display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; line-height: 1.45; }
.kit-guide-card em { margin-top: auto; color: var(--kit-primary); font-size: 12px; font-style: normal; font-weight: 800; }
.kit-news-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.kit-news-card { overflow: hidden; border: 1px solid var(--kit-border); border-radius: 8px; background: #fff; color: var(--kit-navy); text-decoration: none; }
.kit-news-card img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; display: block; }
.kit-news-body { display: grid; gap: 8px; padding: 13px; }
.kit-news-body small { color: var(--kit-primary); font-size: 12px; font-weight: 800; }
.kit-news-body strong { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; font-size: 15px; line-height: 1.35; }
.kit-news-body em { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; color: var(--kit-muted); font-size: 13px; font-style: normal; line-height: 1.45; }

@media (max-width: 1200px) {
  .kit-home-hero { grid-template-columns: minmax(0, .95fr) minmax(400px, 1.05fr); }
  .kit-spotlight { display: none; }
  .kit-announcement-grid,
  .kit-guide-grid,
  .kit-news-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 991.98px) {
  body { padding-bottom: calc(76px + env(safe-area-inset-bottom)); }
  html,
  body { max-width: 100%; overflow-x: hidden; }
  .kit-site-header .header-shell { grid-template-columns: 1fr auto; min-height: 60px; }
  .kit-site-header .desktop-nav,
  .desktop-only { display: none !important; }
  .kit-site-header .brand strong { font-size: 15px; }
  .mobile-header-icon { display: inline-grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; color: var(--kit-navy); text-decoration: none; position: relative; }
  .mobile-header-icon::after { content: ""; position: absolute; top: 7px; right: 7px; width: 8px; height: 8px; border-radius: 50%; background: var(--kit-danger); }
  .mobile-bottom-nav { position: fixed; left: 0; right: 0; bottom: 0; z-index: 1040; display: grid; grid-template-columns: repeat(auto-fit, minmax(64px, 1fr)); min-height: calc(64px + env(safe-area-inset-bottom)); padding: 7px 8px calc(7px + env(safe-area-inset-bottom)); border-top: 1px solid var(--kit-border); background: rgba(255,255,255,.97); box-shadow: 0 -8px 26px rgba(8,26,58,.08); }
  .mobile-bottom-nav a { display: grid; place-items: center; gap: 3px; color: var(--kit-navy); text-decoration: none; font-size: 11px; font-weight: 700; }
  .mobile-bottom-nav a i { font-size: 19px; }
  .mobile-bottom-nav a.active { color: var(--kit-primary); }
  .kit-home-page { width: calc(100vw - 20px); max-width: 720px; padding-top: 14px; gap: 14px; }
  .kit-home-hero { width: 100%; grid-template-columns: minmax(0, 1fr); gap: 14px; }
  .kit-home-search-panel,
  .kit-home-feature,
  .kit-spotlight { width: 100%; max-width: 100%; }
  .kit-home-search-panel { padding: 18px; }
  .kit-home-search-panel h1 { max-width: 100%; font-size: 28px; overflow-wrap: anywhere; }
  .kit-home-search-panel p { max-width: 100%; font-size: 14px; overflow-wrap: anywhere; }
  .kit-home-search { grid-template-columns: 24px minmax(0, 1fr) auto; min-height: 54px; }
  .kit-home-search button { padding: 0 16px; }
  .kit-quick-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .kit-quick-grid a { min-height: 72px; padding: 8px 4px; }
  .kit-quick-grid a i { font-size: 21px; }
  .kit-quick-grid a span { font-size: 11px; }
  .kit-home-slider,
  .kit-home-slide-frame { min-height: 245px; }
  .kit-slide-copy strong { display: -webkit-box; font-size: 22px; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
  .kit-slide-copy small { display: -webkit-box; font-size: 13px; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
  .kit-slide-copy em { padding: 9px 12px; }
  .kit-stat-bar { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .kit-stat-bar article { min-height: 70px; padding: 13px; }
  .kit-announcement-section,
  .kit-popular-searches,
  .kit-guides-section,
  .kit-news-section { padding: 14px; }
}

@media (max-width: 575.98px) {
  .kit-home-page { width: calc(100vw - 20px); max-width: 430px; }
  .kit-home-search-panel h1 { font-size: 26px; }
  .kit-home-search { grid-template-columns: 22px minmax(0, 1fr) 64px; padding-left: 12px; }
  .kit-home-search input { font-size: 13px; }
  .kit-home-search button { min-height: 42px; padding: 0 12px; }
  .kit-home-slider,
  .kit-home-slide-frame { min-height: 230px; }
  .kit-slide-badges { top: 12px; left: 12px; }
  .kit-slide-copy { left: 14px; right: 14px; bottom: 14px; }
  .kit-slider-controls { right: 12px; bottom: 12px; }
  .kit-announcement-grid,
  .kit-guide-grid,
  .kit-news-grid { grid-template-columns: 1fr; }
  .kit-chip-row { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 2px; }
  .kit-chip-row a { white-space: nowrap; }
}

/* Listing page refresh */
.announcements-page.ilanlar-page-grid { display: grid; grid-template-columns: 280px minmax(0, 1fr); gap: 20px; align-items: start; padding-top: 22px; }
.announcements-page .left-rail { position: sticky; top: 84px; }
.announcements-page .filters-panel { border: 1px solid var(--kit-border); border-radius: 8px; box-shadow: var(--kit-shadow); background: #fff; }
.announcements-page .page-title-row.with-art { min-height: 82px; border: 1px solid var(--kit-border); border-radius: 8px; background: #fff; box-shadow: var(--kit-shadow); padding: 18px 22px; }
.announcements-page .page-title-row h1 { font-size: 24px; color: var(--kit-navy); }
.announcements-page .page-title-row p { color: var(--kit-muted); }
.announcements-page .announcements-panel { border: 1px solid var(--kit-border); border-radius: 8px; box-shadow: var(--kit-shadow); background: #fff; }
.announcements-page .tabs-line { overflow-x: auto; padding-bottom: 2px; }
.announcements-page .tabs-line a { white-space: nowrap; border-radius: 8px; }
.announcements-page .announcement-list-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.announcements-page .announcements-grid-container { display: grid; grid-template-columns: minmax(0, 1fr); gap: 12px; margin-top: 0; }
.announcements-page .announcements-grid-container > .job-news-card { display: grid; grid-template-columns: 88px minmax(0, 1fr) minmax(232px, 260px); gap: 12px; align-items: center; min-height: 142px; height: auto; border: 1px solid var(--kit-border); border-radius: 8px; box-shadow: none; overflow: hidden; transform: none; }
.announcements-page .announcements-grid-container > .job-news-card:hover { transform: none; box-shadow: 0 8px 18px rgba(9, 41, 91, .07); }
.announcements-page .announcements-grid-container .job-news-card__media { width: 76px; height: 76px; min-height: 0; aspect-ratio: 1 / 1; margin-left: 14px; border-radius: 50%; background: #f3f7ff; }
.announcements-page .announcements-grid-container .job-news-card__media img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; transform: none; }
.announcements-page .announcements-grid-container .job-news-card__badges { display: none; }
.announcements-page .announcements-grid-container .job-news-card__body { padding: 14px 0; min-width: 0; }
.announcements-page .announcements-grid-container .job-news-card__institution { color: var(--kit-muted); font-size: 12px; }
.announcements-page .announcements-grid-container .job-news-card__title { margin: 3px 0 8px; font-size: 16px; line-height: 1.28; }
.announcements-page .announcements-grid-container .job-news-card__title a { display: -webkit-box; overflow: hidden; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.announcements-page .announcements-grid-container .job-news-card__summary {
  display: -webkit-box;
  margin: 0 0 8px;
  color: var(--kit-muted);
  font-size: 13px;
  line-height: 1.45;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.announcements-page .announcements-grid-container .job-news-card__tags { display: flex; flex-wrap: wrap; gap: 7px; }
.announcements-page .announcements-grid-container .job-meta-tag { border-radius: 7px; background: #f5f8ff; color: var(--kit-navy); }
.announcements-page .announcements-grid-container .job-news-card__footer { display: grid; grid-template-columns: minmax(126px, 1fr) 38px 38px; gap: 12px; align-items: center; padding: 14px 16px; border-top: 0; border-left: 1px solid var(--kit-border); background: #fff; }
.announcements-page .announcements-grid-container .job-news-card__deadline { align-items: end; text-align: right; }
.announcements-page .announcements-grid-container .deadline-label { white-space: nowrap; }
.announcements-page .announcements-grid-container .deadline-date { color: var(--kit-danger); font-size: 13px; }
.announcements-page .announcements-grid-container .fav-btn,
.announcements-page .announcements-grid-container .job-news-card__btn { width: 38px; height: 38px; min-width: 38px; padding: 0; display: grid; place-items: center; border-radius: 8px; font-size: 0; }
.announcements-page .announcements-grid-container .job-news-card__btn::before { content: "\F285"; font-family: "bootstrap-icons"; font-size: 16px; }

@media (max-width: 1200px) {
  .announcements-page.ilanlar-page-grid { width: 100%; max-width: 100%; grid-template-columns: minmax(0, 1fr); gap: 12px; padding: 12px 10px 0; overflow-x: hidden; }
  .announcements-page.ilanlar-page-grid,
  .announcements-page.ilanlar-page-grid * { box-sizing: border-box; min-width: 0; }
  .announcements-page .left-rail { display: none; }
  .announcements-page .page-title-row.with-art { min-height: 0; padding: 10px 4px; border: 0; box-shadow: none; background: transparent; text-align: center; }
  .announcements-page .page-title-row h1 { font-size: 18px; }
  .announcements-page .page-title-row p,
  .announcements-page .title-art { display: none; }
  .announcements-page .announcements-panel { width: 100%; max-width: 100%; padding: 12px !important; overflow: hidden; }
  .announcements-page .tabs-line { display: flex; gap: 8px; max-width: 100%; overflow-x: auto; }
  .announcements-page .tabs-line a { flex: 0 0 auto; min-height: 38px; padding: 9px 12px; border: 1px solid var(--kit-border); background: #fff; }
  .announcements-page .announcement-list-toolbar { display: grid; grid-template-columns: 1fr; gap: 10px; }
  .announcements-page .announcement-list-toolbar form { width: 100%; display: grid !important; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); justify-content: stretch; gap: 8px !important; }
  .announcements-page .announcement-list-toolbar label { flex: none; display: grid !important; grid-template-columns: 1fr; gap: 6px !important; font-size: 12px; }
  .announcements-page .announcement-list-toolbar .form-select { width: 100%; }
  .announcements-page .announcements-grid-container { width: 100%; max-width: 100%; }
  .announcements-page .announcements-grid-container > .job-news-card { width: 100%; max-width: 100%; grid-template-columns: 56px minmax(0, 1fr) 40px; min-height: 128px; gap: 8px; }
  .announcements-page .announcements-grid-container .job-news-card__media { width: 44px; height: 44px; margin-left: 10px; }
  .announcements-page .announcements-grid-container .job-news-card__body { padding: 12px 0; }
  .announcements-page .announcements-grid-container .job-news-card__institution,
  .announcements-page .announcements-grid-container .job-news-card__title,
  .announcements-page .announcements-grid-container .job-meta-tag { overflow-wrap: anywhere; }
  .announcements-page .announcements-grid-container .job-news-card__title { font-size: 14px; line-height: 1.25; }
  .announcements-page .announcements-grid-container .job-news-card__tags { gap: 5px; font-size: 11px; }
  .announcements-page .announcements-grid-container .job-meta-tag { max-width: 100%; }
  .announcements-page .announcements-grid-container .job-news-card__footer { grid-template-columns: 32px; justify-content: end; padding: 8px 8px 8px 0; border-left: 0; }
  .announcements-page .announcements-grid-container .job-news-card__footer { grid-template-columns: 32px 32px; }
  .announcements-page .announcements-grid-container .job-news-card__deadline { display: none; }
}
