:root {
  --sf-bg: #f6f7f9;
  --sf-surface: #ffffff;
  --sf-surface-soft: #eef7f1;
  --sf-text: #171b22;
  --sf-muted: #596273;
  --sf-border: #dce2ea;
  --sf-primary: #0b6bcb;
  --sf-primary-dark: #084f96;
  --sf-accent: #12805c;
  --sf-warning: #b85b00;
  --sf-danger: #b3261e;
  --sf-ink: #11233f;
  --sf-shadow: 0 10px 30px rgba(17, 35, 63, 0.08);
  --sf-radius: 8px;
  --sf-radius-sm: 6px;
  --sf-header-height: 72px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--sf-bg);
  color: var(--sf-text);
  font-family: "Noto Sans Devanagari", "Noto Sans", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

a {
  color: var(--sf-primary);
  text-decoration: none;
}

a:hover,
a:focus {
  color: var(--sf-primary-dark);
}

img {
  height: auto;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

input,
select,
textarea {
  border: 1px solid var(--sf-border);
  border-radius: var(--sf-radius-sm);
  color: var(--sf-text);
  min-height: 44px;
  padding: 10px 12px;
  width: 100%;
}

textarea {
  min-height: 140px;
}

input:focus,
select:focus,
textarea:focus,
button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(11, 107, 203, 0.22);
  outline-offset: 2px;
}

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

.container {
  margin: 0 auto;
  max-width: 1180px;
  padding: 0 18px;
  width: 100%;
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute;
  width: 1px;
}

.site-header {
  backdrop-filter: blur(16px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 249, 255, 0.96));
  border-bottom: 1px solid var(--sf-border);
  box-shadow: 0 2px 14px rgba(17, 35, 63, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-wrap {
  align-items: center;
  display: flex;
  gap: 16px;
  min-height: var(--sf-header-height);
}

.site-brand {
  align-items: center;
  color: var(--sf-text);
  display: inline-flex;
  flex: 0 0 auto;
  gap: 10px;
  min-width: 230px;
}

.site-brand:hover {
  color: var(--sf-text);
}

.site-brand__mark {
  align-items: center;
  background: var(--sf-primary);
  border-radius: 8px;
  color: #fff;
  display: inline-flex;
  font-size: 0.95rem;
  font-weight: 800;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.site-brand .custom-logo {
  border-radius: 10px;
  box-shadow: 0 8px 18px rgba(17, 35, 63, 0.12);
  display: block;
  flex: 0 0 auto;
  height: 50px;
  object-fit: contain;
  width: 50px;
}

.site-brand__text {
  display: grid;
  line-height: 1.2;
  max-width: 230px;
  min-width: 0;
}

.site-brand__text strong {
  font-size: 1.2rem;
  white-space: nowrap;
}

.site-brand__text small {
  color: var(--sf-muted);
  font-size: 0.76rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.main-navigation {
  margin-left: auto;
  min-width: 0;
}

.primary-menu {
  align-items: center;
  display: flex;
  flex-wrap: nowrap;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.primary-menu > li {
  flex: 0 0 auto;
  position: relative;
}

.primary-menu a {
  align-items: center;
  border-radius: 6px;
  color: var(--sf-text);
  display: flex;
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.12;
  min-height: 40px;
  padding: 10px 11px;
  white-space: nowrap;
}

.primary-menu a:hover,
.primary-menu .current-menu-item > a {
  background: #edf5ff;
  color: var(--sf-primary);
}

.primary-menu .sub-menu {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(242, 247, 255, 0.99));
  border: 1px solid rgba(194, 211, 232, 0.9);
  border-radius: var(--sf-radius);
  box-shadow: 0 18px 36px rgba(17, 35, 63, 0.14);
  display: grid;
  gap: 4px;
  left: 0;
  list-style: none;
  margin: 0;
  min-width: 190px;
  opacity: 0;
  padding: 8px;
  pointer-events: none;
  position: absolute;
  top: calc(100% + 8px);
  transform: translateY(6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  visibility: hidden;
  z-index: 130;
}

.primary-menu .sub-menu::before {
  content: "";
  height: 10px;
  left: 0;
  position: absolute;
  right: 0;
  top: -10px;
}

.primary-menu > li:last-child > .sub-menu {
  left: auto;
  right: 0;
}

.primary-menu li:hover > .sub-menu,
.primary-menu li:focus-within > .sub-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.primary-menu .sub-menu a {
  font-size: 0.9rem;
  justify-content: flex-start;
  min-height: 38px;
  padding: 10px 12px;
}

.menu-toggle {
  align-items: center;
  background: var(--sf-surface);
  border: 1px solid var(--sf-border);
  border-radius: 8px;
  display: none;
  height: 42px;
  justify-content: center;
  margin-left: auto;
  padding: 0;
  width: 42px;
}

.menu-toggle span:not(.screen-reader-text) {
  background: var(--sf-text);
  display: block;
  height: 2px;
  margin: 3px 0;
  width: 18px;
}

.site-main {
  min-height: 60vh;
}

.hero-search,
.page-hero {
  background: #edf5ff;
  border-bottom: 1px solid #d3e6ff;
  padding: 38px 0;
}

.hero-search__inner {
  align-items: center;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
}

.eyebrow {
  color: var(--sf-accent);
  display: inline-block;
  font-size: 0.83rem;
  font-weight: 800;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.hero-search h1,
.page-hero h1 {
  color: var(--sf-ink);
  font-size: 2.5rem;
  line-height: 1.15;
  margin: 0 0 10px;
}

.hero-search p,
.page-hero p {
  color: var(--sf-muted);
  font-size: 1.05rem;
  margin: 0;
  max-width: 760px;
}

.hero-search__form {
  align-items: stretch;
  background: var(--sf-surface);
  border: 1px solid var(--sf-border);
  border-radius: 8px;
  box-shadow: var(--sf-shadow);
  display: flex;
  gap: 8px;
  padding: 8px;
}

.hero-search__form input {
  border: 0;
  min-width: 0;
}

.hero-search__form button,
.sf-button {
  align-items: center;
  background: var(--sf-primary);
  border: 1px solid var(--sf-primary);
  border-radius: 6px;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  text-align: center;
}

.hero-search__form button:hover,
.sf-button:hover {
  background: var(--sf-primary-dark);
  border-color: var(--sf-primary-dark);
  color: #fff;
}

.sf-button--small {
  min-height: 38px;
  padding: 8px 12px;
}

.sf-link {
  font-weight: 800;
}

.update-strip {
  background: linear-gradient(135deg, #fff7ed 0%, #ffffff 44%, #eaf4ff 100%);
  border-bottom: 1px solid #f0d2a4;
  border-top: 1px solid rgba(245, 158, 11, 0.28);
  box-shadow: 0 10px 26px rgba(180, 83, 9, 0.08);
  overflow: hidden;
  position: relative;
}

.update-strip__inner {
  align-items: center;
  display: flex;
  gap: 14px;
  min-height: 62px;
  min-width: 0;
}

.update-strip__label {
  align-items: center;
  background: linear-gradient(135deg, #b91c1c, #f97316);
  border-radius: var(--sf-radius);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.38), 0 10px 20px rgba(185, 28, 28, 0.18);
  color: #fff;
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1.1;
  min-height: 38px;
  overflow: hidden;
  padding: 10px 14px;
  position: relative;
  text-shadow: 0 1px 1px rgba(17, 35, 63, 0.24);
  text-transform: uppercase;
}

.update-strip__label::after {
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.update-strip__label span {
  position: relative;
  z-index: 1;
}

.update-strip__viewport {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  position: relative;
}

.update-strip__viewport::before,
.update-strip__viewport::after {
  content: "";
  height: 100%;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 34px;
  z-index: 2;
}

.update-strip__viewport::before {
  background: linear-gradient(90deg, #fff7ed, rgba(255, 247, 237, 0));
  left: 0;
}

.update-strip__viewport::after {
  background: linear-gradient(270deg, #eaf4ff, rgba(234, 244, 255, 0));
  right: 0;
}

.update-strip__items {
  display: flex;
  min-width: max-content;
  width: max-content;
  animation: sf-update-marquee 34s linear infinite;
}

.update-strip__items:hover,
.update-strip__items:focus-within {
  animation-play-state: paused;
}

.update-strip__group {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  gap: 12px;
  padding-right: 12px;
  white-space: nowrap;
}

.update-strip__items a {
  align-items: center;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(245, 158, 11, 0.38);
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(17, 35, 63, 0.08);
  color: #7c2d12;
  display: inline-flex;
  font-size: 0.94rem;
  font-weight: 900;
  min-height: 34px;
  padding: 7px 13px;
}

.update-strip__items a::before {
  background: #ef4444;
  border-radius: 999px;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.13);
  content: "";
  flex: 0 0 auto;
  height: 7px;
  margin-right: 9px;
  width: 7px;
}

.update-strip__items a:hover,
.update-strip__items a:focus {
  background: #fff;
  color: #b91c1c;
}

@keyframes sf-update-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .update-strip__items {
    animation: none;
    overflow-x: auto;
    width: 100%;
  }

  .update-strip__group[aria-hidden="true"] {
    display: none;
  }
}

.quick-links {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  margin: 24px 0 10px;
}

.quick-links a {
  align-items: center;
  background: linear-gradient(135deg, #175ddc, #04a1d8);
  border: 0;
  border-radius: var(--sf-radius);
  box-shadow: 0 10px 20px rgba(17, 35, 63, 0.13);
  color: #fff;
  display: flex;
  font-weight: 800;
  justify-content: center;
  min-height: 58px;
  overflow: hidden;
  padding: 12px;
  position: relative;
  text-align: center;
  text-shadow: 0 1px 1px rgba(17, 35, 63, 0.22);
  transition: box-shadow 0.18s ease, transform 0.18s ease;
  white-space: nowrap;
}

.quick-links a::before {
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.44), rgba(255, 255, 255, 0.08) 48%, rgba(255, 255, 255, 0));
  content: "";
  height: 58%;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
}

.quick-links a::after {
  border-radius: calc(var(--sf-radius) - 1px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.44), inset 0 -1px 0 rgba(17, 35, 63, 0.15);
  content: "";
  inset: 1px;
  pointer-events: none;
  position: absolute;
}

.quick-links a.quick-links__item--jobs {
  background: linear-gradient(135deg, #d71920, #ff7a18);
}

.quick-links a.quick-links__item--results {
  background: linear-gradient(135deg, #084fca, #21a7f3);
}

.quick-links a.quick-links__item--admit-card {
  background: linear-gradient(135deg, #6d28d9, #c026d3);
}

.quick-links a.quick-links__item--admission {
  background: linear-gradient(135deg, #087f5b, #22c55e);
}

.quick-links a.quick-links__item--answer-key {
  background: linear-gradient(135deg, #b45309, #f59e0b);
}

.quick-links a.quick-links__item--syllabus {
  background: linear-gradient(135deg, #0f766e, #14b8a6);
}

.quick-links a.quick-links__item--tools {
  background: linear-gradient(135deg, #28364d, #64748b);
}

.quick-links a:hover {
  box-shadow: 0 15px 28px rgba(17, 35, 63, 0.18);
  color: #fff;
  transform: translateY(-2px);
}

.sf-section {
  --section-accent: var(--sf-primary);
  margin: 28px 0;
}

.sf-section--latest-job {
  --section-accent: #d71920;
}

.sf-section--result {
  --section-accent: #084fca;
}

.sf-section--admit-card {
  --section-accent: #6d28d9;
}

.sf-section--admission {
  --section-accent: #087f5b;
}

.sf-section--answer-key {
  --section-accent: #b45309;
}

.sf-section--syllabus {
  --section-accent: #0f766e;
}

.sf-section--notice {
  --section-accent: #b3261e;
}

.sf-section__head {
  align-items: center;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  margin-bottom: 14px;
}

.sf-section__head h2,
.content-box h2,
.sidebar-box h2 {
  color: var(--sf-ink);
  font-size: 1.28rem;
  line-height: 1.25;
  margin: 0;
}

.sf-section__head h2 {
  align-items: center;
  display: flex;
  gap: 8px;
}

.sf-section__head h2::before {
  background: var(--section-accent);
  border-radius: 999px;
  box-shadow: 0 0 0 4px rgba(17, 35, 63, 0.06);
  content: "";
  flex: 0 0 auto;
  height: 21px;
  width: 7px;
}

.section-grid {
  display: grid;
  gap: 22px;
}

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

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

.notice-list--archive {
  margin-top: 18px;
}

.notice-card,
.tool-card,
.content-box,
.sidebar-box,
.summary-box,
.disclaimer-box,
.filter-bar,
.tools-controls {
  background: var(--sf-surface);
  border: 1px solid var(--sf-border);
  border-radius: var(--sf-radius);
  box-shadow: 0 1px 0 rgba(17, 35, 63, 0.02);
}

.notice-card {
  padding: 16px;
}

.notice-card:hover,
.tool-card:hover {
  box-shadow: var(--sf-shadow);
}

.notice-card__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 8px;
}

.sf-badge {
  align-items: center;
  background: #eef2f6;
  border-radius: 999px;
  color: var(--sf-muted);
  display: inline-flex;
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1;
  min-height: 24px;
  padding: 5px 10px;
}

.sf-badge--type {
  background: linear-gradient(135deg, #175ddc, #04a1d8);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.38);
  color: #fff;
}

.sf-badge--notice-type-latest-job {
  background: linear-gradient(135deg, #d71920, #ff7a18);
}

.sf-badge--notice-type-result {
  background: linear-gradient(135deg, #084fca, #21a7f3);
}

.sf-badge--notice-type-admit-card {
  background: linear-gradient(135deg, #6d28d9, #c026d3);
}

.sf-badge--notice-type-admission {
  background: linear-gradient(135deg, #087f5b, #22c55e);
}

.sf-badge--notice-type-answer-key {
  background: linear-gradient(135deg, #b45309, #f59e0b);
}

.sf-badge--notice-type-syllabus {
  background: linear-gradient(135deg, #0f766e, #14b8a6);
}

.sf-badge--notice-type-notice {
  background: linear-gradient(135deg, #991b1b, #ef4444);
}

.sf-badge--status {
  background: #e8f7ef;
  color: var(--sf-accent);
}

.notice-card__title {
  font-size: 1.03rem;
  line-height: 1.38;
  margin: 0 0 8px;
}

.notice-card__title a {
  color: var(--sf-text);
}

.notice-card__title a:hover {
  color: var(--sf-primary);
}

.notice-card__meta {
  color: var(--sf-muted);
  display: flex;
  flex-wrap: wrap;
  font-size: 0.86rem;
  gap: 12px;
}

.notice-card__summary {
  color: var(--sf-muted);
  margin: 10px 0 0;
}

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

.tool-card {
  display: grid;
  gap: 14px;
  grid-template-rows: auto 1fr auto;
  min-height: 230px;
  padding: 18px;
}

.tool-card[hidden] {
  display: none;
}

.tool-card__icon {
  align-items: center;
  background: #f0f7ff;
  border: 1px solid #d5e8ff;
  border-radius: 8px;
  color: var(--sf-primary);
  display: inline-flex;
  font-size: 0.9rem;
  font-weight: 900;
  height: 44px;
  justify-content: center;
  width: 52px;
}

.tool-card__category {
  color: var(--sf-accent);
  display: block;
  font-size: 0.82rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.tool-card__title {
  color: var(--sf-ink);
  font-size: 1.08rem;
  line-height: 1.3;
  margin: 0 0 8px;
}

.tool-card p {
  color: var(--sf-muted);
  margin: 0;
}

.link-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.link-cloud a,
.tool-chips button {
  background: var(--sf-surface);
  border: 1px solid var(--sf-border);
  border-radius: 999px;
  color: var(--sf-text);
  cursor: pointer;
  font-weight: 700;
  padding: 8px 12px;
}

.tool-chips button.is-active,
.link-cloud a:hover,
.tool-chips button:hover {
  background: var(--sf-primary);
  border-color: var(--sf-primary);
  color: #fff;
}

.page-layout,
.single-layout {
  margin-top: 28px;
}

.page-hero--job,
.page-hero--notice-detail,
.single-layout--notice-detail {
  --notice-gradient: linear-gradient(135deg, #d71920, #ff7a18);
  --notice-gradient-hover: linear-gradient(135deg, #b91c1c, #ea580c);
  --notice-soft: #fff7ed;
  --notice-soft-strong: #ffedd5;
  --notice-border: #f0d2a4;
  --notice-ink: #7c2d12;
  --notice-shadow-rgb: 215, 25, 32;
}

.page-hero--result,
.single-layout--result {
  --notice-gradient: linear-gradient(135deg, #084fca, #21a7f3);
  --notice-gradient-hover: linear-gradient(135deg, #073ca6, #0284c7);
  --notice-soft: #eff6ff;
  --notice-soft-strong: #dbeafe;
  --notice-border: #bfdbfe;
  --notice-ink: #075985;
  --notice-shadow-rgb: 8, 79, 202;
}

.page-hero--admit-card,
.single-layout--admit-card {
  --notice-gradient: linear-gradient(135deg, #6d28d9, #c026d3);
  --notice-gradient-hover: linear-gradient(135deg, #5b21b6, #a21caf);
  --notice-soft: #f5f3ff;
  --notice-soft-strong: #f3e8ff;
  --notice-border: #ddd6fe;
  --notice-ink: #581c87;
  --notice-shadow-rgb: 109, 40, 217;
}

.page-hero--admission,
.single-layout--admission {
  --notice-gradient: linear-gradient(135deg, #087f5b, #22c55e);
  --notice-gradient-hover: linear-gradient(135deg, #065f46, #16a34a);
  --notice-soft: #f0fdf4;
  --notice-soft-strong: #dcfce7;
  --notice-border: #bbf7d0;
  --notice-ink: #14532d;
  --notice-shadow-rgb: 8, 127, 91;
}

.page-hero--answer-key,
.single-layout--answer-key {
  --notice-gradient: linear-gradient(135deg, #b45309, #f59e0b);
  --notice-gradient-hover: linear-gradient(135deg, #92400e, #d97706);
  --notice-soft: #fffbeb;
  --notice-soft-strong: #fef3c7;
  --notice-border: #fde68a;
  --notice-ink: #78350f;
  --notice-shadow-rgb: 180, 83, 9;
}

.page-hero--syllabus,
.single-layout--syllabus {
  --notice-gradient: linear-gradient(135deg, #0f766e, #14b8a6);
  --notice-gradient-hover: linear-gradient(135deg, #115e59, #0d9488);
  --notice-soft: #f0fdfa;
  --notice-soft-strong: #ccfbf1;
  --notice-border: #99f6e4;
  --notice-ink: #134e4a;
  --notice-shadow-rgb: 15, 118, 110;
}

.page-hero--notice,
.single-layout--notice {
  --notice-gradient: linear-gradient(135deg, #991b1b, #ef4444);
  --notice-gradient-hover: linear-gradient(135deg, #7f1d1d, #dc2626);
  --notice-soft: #fff1f2;
  --notice-soft-strong: #ffe4e6;
  --notice-border: #fecdd3;
  --notice-ink: #7f1d1d;
  --notice-shadow-rgb: 153, 27, 27;
}

.page-hero--notice-detail {
  background: linear-gradient(135deg, var(--notice-soft) 0%, #ffffff 56%, var(--notice-soft-strong) 100%);
  border-bottom-color: var(--notice-border);
}

.notice-title-row {
  align-items: flex-start;
  display: flex;
  gap: 24px;
  justify-content: space-between;
}

.notice-title-row__content {
  min-width: 0;
}

.notice-title-row--job,
.notice-title-row--structured {
  align-items: flex-end;
}

.job-hero-actions {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  max-width: 390px;
}

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

.single-layout--tool {
  grid-template-columns: minmax(0, 1fr) 300px;
}

.single-layout--job,
.single-layout--notice-detail {
  grid-template-columns: minmax(0, 1fr) 310px;
}

.single-layout--job .single-sidebar,
.single-layout--notice-detail .single-sidebar {
  position: sticky;
  top: calc(var(--sf-header-height) + 18px);
}

.single-content,
.single-sidebar {
  display: grid;
  gap: 18px;
}

.summary-box,
.content-box,
.sidebar-box,
.disclaimer-box {
  padding: 18px;
}

.summary-box {
  background: var(--sf-surface-soft);
  border-color: #cde7d8;
}

.summary-box h2 {
  font-size: 1rem;
  margin: 0 0 6px;
}

.summary-box p,
.disclaimer-box p {
  margin: 0;
}

.disclaimer-box {
  background: #fff6e8;
  border-color: #f1d4a8;
  color: #6d3a00;
  font-weight: 700;
}

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

.overview-grid div {
  background: #f8fafc;
  border: 1px solid var(--sf-border);
  border-radius: 6px;
  padding: 12px;
}

.overview-grid span {
  color: var(--sf-muted);
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.overview-grid strong {
  color: var(--sf-text);
  display: block;
}

.job-snapshot {
  background: linear-gradient(180deg, #ffffff, var(--notice-soft));
  border: 1px solid var(--notice-border);
  border-radius: var(--sf-radius);
  box-shadow: 0 14px 32px rgba(var(--notice-shadow-rgb), 0.1);
  overflow: hidden;
  padding: 0;
}

.job-snapshot__head {
  align-items: center;
  background: var(--notice-gradient);
  color: #fff;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  padding: 15px 18px;
}

.job-snapshot__head span {
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  padding: 6px 10px;
  text-transform: uppercase;
}

.job-snapshot__head h2 {
  color: #fff;
  font-size: 1.22rem;
  margin: 0;
}

.job-snapshot__grid {
  background: var(--notice-border);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.job-snapshot__grid div {
  background: rgba(255, 255, 255, 0.94);
  min-height: 82px;
  padding: 14px;
}

.job-snapshot__grid span {
  color: var(--notice-ink);
  display: block;
  font-size: 0.78rem;
  font-weight: 900;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.job-snapshot__grid strong {
  color: var(--sf-ink);
  display: block;
  font-size: 1rem;
  line-height: 1.35;
}

.content-box--job-section {
  overflow: hidden;
  position: relative;
}

.content-box--job-section::before {
  background: var(--notice-gradient);
  content: "";
  display: block;
  height: 4px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.content-box--job-section h2 {
  padding-top: 2px;
}

.important-links--job {
  background: linear-gradient(135deg, var(--notice-soft), #ffffff);
  border-color: var(--notice-border);
  box-shadow: 0 14px 32px rgba(var(--notice-shadow-rgb), 0.09);
}

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

.useful-important-links h2 {
  text-transform: uppercase;
}

.useful-link-list {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--notice-border);
  border-radius: var(--sf-radius-sm);
  overflow: hidden;
}

.useful-link-row {
  align-items: center;
  display: grid;
  gap: 12px;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 12px;
}

.useful-link-row + .useful-link-row {
  border-top: 1px solid var(--notice-border);
}

.useful-link-row strong {
  color: var(--notice-ink);
  line-height: 1.35;
}

.job-action-button {
  background: var(--notice-gradient);
  border: 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.34), 0 10px 20px rgba(var(--notice-shadow-rgb), 0.16);
  color: #fff;
}

.job-action-button:hover {
  background: var(--notice-gradient-hover);
  color: #fff;
}

.job-sidebar-card {
  background: linear-gradient(180deg, #ffffff, var(--notice-soft));
}

.job-section-nav {
  display: grid;
  gap: 8px;
}

.job-section-nav a {
  align-items: center;
  background: #f8fafc;
  border: 1px solid var(--sf-border);
  border-radius: 6px;
  color: var(--sf-text);
  display: flex;
  font-size: 0.9rem;
  font-weight: 800;
  justify-content: space-between;
  min-height: 40px;
  padding: 9px 11px;
}

.job-section-nav a::after {
  color: var(--notice-ink);
  content: ">";
  font-weight: 900;
}

.job-section-nav a:hover {
  background: var(--notice-soft);
  border-color: var(--notice-border);
  color: var(--notice-ink);
}

.job-verify-card {
  background: var(--notice-soft);
  border-color: var(--notice-border);
}

.job-verify-card ul {
  color: var(--notice-ink);
  display: grid;
  font-weight: 700;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
}

.notice-note-box {
  background: linear-gradient(135deg, var(--notice-soft), #ffffff);
  border-color: var(--notice-border);
}

.notice-note-box .entry-content {
  color: var(--notice-ink);
  font-weight: 700;
}

.sf-table-wrap {
  margin-top: 12px;
  overflow-x: auto;
}

.sf-table th,
.sf-table td,
.resume-format th,
.resume-format td,
.size-guide th,
.size-guide td {
  border: 1px solid var(--sf-border);
  padding: 11px;
  text-align: left;
  vertical-align: top;
}

.sf-table th,
.resume-format th,
.size-guide th {
  background: #f1f5f9;
  color: var(--sf-ink);
  width: 34%;
}

.entry-content > *:first-child {
  margin-top: 0;
}

.entry-content > *:last-child {
  margin-bottom: 0;
}

.entry-content ul,
.entry-content ol {
  padding-left: 22px;
}

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

.faq-section details {
  background: var(--sf-surface);
  border: 1px solid var(--sf-border);
  border-radius: 6px;
  margin-top: 10px;
  padding: 12px;
}

.faq-section summary {
  color: var(--sf-ink);
  cursor: pointer;
  font-weight: 800;
}

.faq-section details p {
  color: var(--sf-muted);
  margin: 10px 0 0;
}

.compact-list {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.compact-list a {
  border-bottom: 1px solid var(--sf-border);
  color: var(--sf-text);
  display: grid;
  gap: 4px;
  padding: 0 0 10px;
}

.compact-list strong {
  line-height: 1.35;
}

.compact-list span {
  color: var(--sf-muted);
  font-size: 0.84rem;
}

.filter-bar {
  display: grid;
  gap: 10px;
  grid-template-columns: minmax(220px, 1fr) repeat(4, minmax(140px, 170px)) auto;
  padding: 12px;
}

.tools-controls {
  display: grid;
  gap: 12px;
  padding: 14px;
}

.tool-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tool-form {
  display: grid;
  gap: 14px;
  max-width: 560px;
}

.tool-form label {
  color: var(--sf-ink);
  display: grid;
  font-weight: 800;
  gap: 6px;
}

.tool-result {
  background: #eef7f1;
  border: 1px solid #cde7d8;
  border-radius: 6px;
  color: var(--sf-accent);
  display: none;
  font-size: 1.12rem;
  font-weight: 900;
  padding: 12px;
}

.tool-result.is-visible {
  display: block;
}

.tool-privacy-note {
  color: var(--sf-muted);
  font-size: 0.9rem;
  margin-bottom: 0;
}

.typing-tool {
  display: grid;
  gap: 14px;
}

.typing-sample {
  background: #f8fafc;
  border: 1px solid var(--sf-border);
  border-radius: 6px;
  color: var(--sf-ink);
  font-weight: 700;
  margin: 0;
  padding: 14px;
}

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

.typing-stats span {
  background: #f8fafc;
  border: 1px solid var(--sf-border);
  border-radius: 6px;
  color: var(--sf-muted);
  padding: 12px;
}

.typing-stats strong {
  color: var(--sf-ink);
  display: block;
  font-size: 1.35rem;
}

.pagination {
  margin: 26px 0;
  text-align: center;
}

.pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.pagination a,
.pagination span {
  background: var(--sf-surface);
  border: 1px solid var(--sf-border);
  border-radius: 6px;
  color: var(--sf-text);
  display: inline-flex;
  font-weight: 800;
  min-width: 40px;
  padding: 8px 12px;
}

.pagination .current {
  background: var(--sf-primary);
  border-color: var(--sf-primary);
  color: #fff;
}

.breadcrumbs {
  align-items: center;
  color: var(--sf-muted);
  display: flex;
  flex-wrap: wrap;
  font-size: 0.86rem;
  gap: 7px;
  margin-bottom: 10px;
}

.breadcrumbs a {
  font-weight: 800;
}

.updated-date {
  color: var(--sf-muted);
  font-weight: 700;
}

.empty-message {
  background: var(--sf-surface);
  border: 1px dashed var(--sf-border);
  border-radius: 8px;
  color: var(--sf-muted);
  padding: 18px;
}

.site-footer {
  background: #172235;
  color: #e6edf7;
  margin-top: 48px;
  padding: 42px 0 0;
}

.footer-grid {
  display: grid;
  gap: 26px;
  grid-template-columns: 1.4fr repeat(3, 1fr);
}

.site-footer h2 {
  color: #fff;
  font-size: 1rem;
  margin: 0 0 12px;
}

.footer-brand {
  align-items: center;
  color: #fff;
  display: inline-flex;
  font-size: 1.05rem;
  font-weight: 900;
  gap: 10px;
  line-height: 1.1;
  margin-bottom: 14px;
}

.footer-brand:hover {
  color: #fff;
}

.footer-brand__logo,
.footer-brand .site-brand__mark {
  border-radius: 9px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
  height: 44px;
  object-fit: contain;
  width: 44px;
}

.site-footer p {
  color: #c7d2e2;
  margin: 0 0 10px;
}

.site-footer ul {
  display: grid;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer a {
  color: #dbe7f7;
}

.site-footer a:hover {
  color: #fff;
}

.footer-disclaimer {
  font-size: 0.9rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 28px;
  padding: 16px 0;
}

.footer-bottom p {
  margin: 0;
  text-align: center;
}

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

@media (max-width: 1080px) {
  .primary-menu a {
    font-size: 0.9rem;
    padding: 9px 8px;
  }

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

@media (max-width: 1100px) {
  :root {
    --sf-header-height: 62px;
  }

  body {
    padding-bottom: 62px;
  }

  .header-wrap {
    min-height: var(--sf-header-height);
  }

  .site-brand {
    min-width: 0;
  }

  .site-brand .custom-logo {
    height: 44px;
    width: 44px;
  }

  .site-brand__text small {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .main-navigation {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(244, 248, 255, 0.99));
    border-bottom: 1px solid var(--sf-border);
    border-top: 1px solid var(--sf-border);
    box-shadow: 0 18px 34px rgba(17, 35, 63, 0.12);
    display: none;
    left: 0;
    margin: 0;
    max-height: calc(100vh - var(--sf-header-height));
    overflow: auto;
    position: absolute;
    right: 0;
    top: 100%;
  }

  .main-navigation.is-open {
    display: block;
  }

  .primary-menu {
    align-items: stretch;
    display: grid;
    gap: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 10px 18px;
  }

  .primary-menu > li {
    min-width: 0;
  }

  .primary-menu .menu-item-has-children {
    grid-column: span 2;
  }

  .primary-menu a {
    justify-content: center;
    line-height: 1.2;
    min-height: 44px;
    text-align: center;
    white-space: normal;
  }

  .primary-menu .sub-menu {
    background: rgba(237, 245, 255, 0.75);
    border: 1px solid rgba(211, 230, 255, 0.9);
    box-shadow: none;
    display: grid;
    gap: 4px;
    margin-top: 4px;
    min-width: 0;
    opacity: 1;
    padding: 6px;
    pointer-events: auto;
    position: static;
    transform: none;
    visibility: visible;
  }

  .primary-menu .sub-menu::before {
    display: none;
  }

  .primary-menu .sub-menu a {
    background: rgba(255, 255, 255, 0.72);
    justify-content: center;
    min-height: 40px;
  }

  .hero-search__inner,
  .section-grid--two,
  .single-layout,
  .single-layout--tool,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .single-layout--job .single-sidebar,
  .single-layout--notice-detail .single-sidebar {
    position: static;
  }

  .notice-title-row,
  .notice-title-row--job,
  .notice-title-row--structured {
    align-items: flex-start;
    flex-direction: column;
  }

  .job-hero-actions {
    justify-content: flex-start;
    max-width: none;
    width: 100%;
  }

  .job-snapshot__grid,
  .important-links--job .important-link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

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

  .mobile-bottom-nav {
    background: var(--sf-surface);
    border-top: 1px solid var(--sf-border);
    bottom: 0;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    left: 0;
    position: fixed;
    right: 0;
    z-index: 120;
  }

  .mobile-bottom-nav a {
    align-items: center;
    color: var(--sf-text);
    display: flex;
    font-size: 0.78rem;
    font-weight: 800;
    justify-content: center;
    min-height: 58px;
    padding: 8px 4px;
    text-align: center;
  }
}

@media (max-width: 620px) {
  .container {
    padding: 0 14px;
  }

  .hero-search,
  .page-hero {
    padding: 26px 0;
  }

  .hero-search h1,
  .page-hero h1 {
    font-size: 2rem;
  }

  .hero-search__form {
    display: grid;
  }

  .update-strip__inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
    padding-bottom: 10px;
    padding-top: 10px;
  }

  .update-strip__viewport {
    width: 100%;
  }

  .sf-section__head {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .tool-grid,
  .filter-bar,
  .overview-grid,
  .job-snapshot__grid,
  .important-links--job .important-link-grid,
  .important-link-grid,
  .typing-stats {
    grid-template-columns: 1fr;
  }

  .notice-card,
  .tool-card,
  .content-box,
  .sidebar-box,
  .summary-box,
  .disclaimer-box {
    padding: 14px;
  }

  .useful-link-row {
    align-items: stretch;
    grid-template-columns: 1fr;
  }

  .useful-link-row .sf-button {
    width: 100%;
  }

  .quick-links a {
    min-height: 52px;
  }
}

@media print {
  .site-header,
  .site-footer,
  .page-hero,
  .single-sidebar,
  .mobile-bottom-nav,
  #sf-print-resume {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
    padding: 0;
  }

  .container,
  .single-layout {
    display: block;
    max-width: none;
    padding: 0;
  }

  .content-box {
    border: 0;
    box-shadow: none;
  }
}
