:root {
  --blog-bg: #f4efe8;
  --blog-surface: rgba(255, 252, 246, 0.86);
  --blog-panel: rgba(255, 255, 255, 0.76);
  --blog-panel-strong: #fffdf9;
  --blog-ink: #182226;
  --blog-muted: #58656c;
  --blog-line: rgba(24, 34, 38, 0.1);
  --blog-accent: #0f766e;
  --blog-accent-deep: #0a4f4a;
  --blog-accent-soft: #cceee8;
  --blog-warm: #f59e0b;
  --blog-alert: #c2410c;
  --blog-shadow: 0 24px 80px rgba(43, 63, 68, 0.12);
  --blog-radius-xl: 32px;
  --blog-radius-lg: 24px;
  --blog-radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Sora", sans-serif;
  color: var(--blog-ink);
  background:
    radial-gradient(circle at top left, rgba(15, 118, 110, 0.16), transparent 28%),
    radial-gradient(circle at top right, rgba(245, 158, 11, 0.18), transparent 22%),
    linear-gradient(180deg, #fffaf5 0%, var(--blog-bg) 48%, #ece6dd 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.28) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.22) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.62), transparent 84%);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

h1,
h2,
h3,
p,
ul {
  margin: 0;
}

.blog-shell {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding-bottom: 72px;
}

.blog-nav,
.blog-hero-card,
.blog-topic-card,
.blog-panel,
.result-card,
.blog-callout,
.blog-placeholder {
  border: 1px solid var(--blog-line);
  box-shadow: var(--blog-shadow);
}

.blog-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 14px;
  padding: 18px 22px;
  border-radius: 999px;
  background: rgba(255, 250, 244, 0.72);
  backdrop-filter: blur(16px);
}

.blog-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.blog-brand-text {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.blog-brand img {
  width: auto;
  height: 48px;
}

.blog-nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--blog-muted);
}

.blog-hero,
.blog-article-hero {
  padding-top: 26px;
}

.blog-hero-card,
.blog-panel,
.blog-callout,
.blog-placeholder,
.result-card,
.blog-topic-card {
  border-radius: var(--blog-radius-xl);
  background: linear-gradient(180deg, rgba(255, 253, 249, 0.96), rgba(246, 240, 232, 0.88));
}

.blog-hero-card,
.blog-placeholder {
  position: relative;
  overflow: hidden;
  padding: 34px;
}

.blog-hero-card::after,
.blog-placeholder::after {
  content: "";
  position: absolute;
  inset: auto -8% -24% auto;
  width: 320px;
  height: 320px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(15, 118, 110, 0.18), rgba(15, 118, 110, 0));
}

.blog-eyebrow,
.blog-meta-chip,
.blog-status-chip,
.result-tag,
.blog-kicker {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.blog-eyebrow,
.blog-kicker,
.result-tag {
  background: rgba(15, 118, 110, 0.1);
  color: var(--blog-accent-deep);
}

.blog-eyebrow-inverse {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.blog-meta-chip,
.blog-status-chip {
  background: rgba(24, 34, 38, 0.08);
  color: var(--blog-ink);
}

.blog-hero-grid,
.blog-article-hero-grid,
.blog-topic-grid,
.blog-panel-grid,
.blog-link-grid,
.blog-placeholder-grid,
.blog-quick-grid,
.result-grid {
  display: grid;
  gap: 20px;
}

.blog-hero-grid,
.blog-article-hero-grid {
  grid-template-columns: minmax(0, 1.16fr) minmax(300px, 0.84fr);
  align-items: stretch;
}

.blog-article-hero-grid-spaced,
.blog-panel-grid-spaced,
.blog-link-grid-spaced,
.blog-list-spaced,
.blog-topic-grid-spaced {
  margin-top: 18px;
}

.blog-hero-copy,
.blog-article-copy {
  display: grid;
  gap: 18px;
}

.blog-hero-copy h1,
.blog-article-copy h1,
.blog-panel h2,
.blog-callout h2,
.blog-placeholder h1 {
  font-family: "Fraunces", serif;
  letter-spacing: -0.06em;
  line-height: 0.94;
}

.blog-hero-copy h1,
.blog-article-copy h1,
.blog-placeholder h1 {
  font-size: clamp(3rem, 7vw, 5.8rem);
  max-width: 11ch;
}

.blog-panel h2,
.blog-callout h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.blog-lead,
.blog-article-lead,
.blog-panel p,
.result-card p,
.blog-placeholder p,
.blog-note,
.blog-topic-card p,
.blog-tips li,
.blog-list li {
  color: var(--blog-muted);
  line-height: 1.74;
}

.blog-actions,
.blog-inline-actions,
.blog-topic-card-footer,
.result-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.blog-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.blog-article-meta span {
  display: inline-flex;
  align-items: center;
  padding: 9px 12px;
  border: 1px solid var(--blog-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.64);
  color: var(--blog-muted);
  font-size: 0.88rem;
}

.blog-topic-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.blog-topic-meta span {
  display: inline-flex;
  align-items: center;
  padding: 8px 11px;
  border: 1px solid rgba(24, 34, 38, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--blog-muted);
  font-size: 0.82rem;
}

.blog-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font: inherit;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.blog-button:hover,
.blog-topic-card:hover,
.result-card:hover {
  transform: translateY(-2px);
}

.blog-button-primary {
  background: var(--blog-accent);
  color: #ffffff;
}

.blog-button-secondary {
  background: rgba(255, 255, 255, 0.72);
  color: var(--blog-ink);
  border-color: var(--blog-line);
}

.blog-visual {
  min-height: 100%;
  padding: 22px;
  border-radius: calc(var(--blog-radius-xl) - 8px);
  background:
    radial-gradient(circle at top, rgba(15, 118, 110, 0.18), transparent 42%),
    linear-gradient(180deg, #103a38 0%, #0f2528 100%);
  color: #eefbfa;
}

.blog-visual-stack {
  display: grid;
  gap: 14px;
  height: 100%;
}

.blog-visual-card,
.blog-mini-stat {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  padding: 16px;
}

.blog-visual-card-featured {
  gap: 16px;
}

.blog-graphic-frame {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  min-height: 220px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.22), transparent 32%),
    linear-gradient(135deg, rgba(15, 118, 110, 0.55), rgba(8, 32, 35, 0.9));
}

.blog-graphic-frame-dark {
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.16), transparent 30%),
    linear-gradient(135deg, rgba(10, 79, 74, 0.68), rgba(8, 24, 29, 0.96));
}

.blog-graphic-frame-board {
  background:
    radial-gradient(circle at 12% 14%, rgba(255, 255, 255, 0.18), transparent 28%),
    linear-gradient(140deg, rgba(8, 72, 70, 0.92), rgba(9, 31, 37, 0.98));
}

.blog-graphic-frame-recruitment {
  background:
    radial-gradient(circle at 86% 16%, rgba(245, 158, 11, 0.24), transparent 24%),
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.16), transparent 26%),
    linear-gradient(140deg, rgba(20, 63, 90, 0.96), rgba(10, 31, 45, 0.98));
}

.blog-graphic-frame-examflow {
  background:
    radial-gradient(circle at 84% 18%, rgba(255, 255, 255, 0.14), transparent 24%),
    radial-gradient(circle at 18% 20%, rgba(245, 158, 11, 0.22), transparent 26%),
    linear-gradient(140deg, rgba(93, 58, 19, 0.96), rgba(44, 30, 18, 0.98));
}

.blog-graphic-frame::after {
  content: "";
  position: absolute;
  inset: auto -10% -25% auto;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.28), rgba(245, 158, 11, 0));
}

.blog-graphic-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
  opacity: 0.96;
}

.blog-board-graphic {
  position: relative;
  min-height: 220px;
  padding: 20px;
}

.blog-board-graphic-card {
  position: absolute;
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 36px rgba(4, 18, 22, 0.24);
  backdrop-filter: blur(10px);
  max-width: 190px;
}

.blog-board-graphic-card span,
.blog-board-graphic-pill {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.blog-board-graphic-card strong {
  font-family: "Fraunces", serif;
  font-size: 1.45rem;
  letter-spacing: -0.04em;
}

.blog-board-graphic-card small {
  color: rgba(238, 251, 250, 0.78);
  font-size: 0.83rem;
  line-height: 1.45;
}

.blog-board-graphic-card-primary {
  top: 20px;
  left: 20px;
}

.blog-board-graphic-card-secondary {
  right: 20px;
  bottom: 56px;
}

.blog-board-graphic-pill {
  position: absolute;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(243, 251, 250, 0.92);
}

.blog-board-graphic-pill:nth-of-type(3) {
  right: 24px;
  top: 22px;
}

.blog-board-graphic-pill:nth-of-type(4) {
  left: 26px;
  bottom: 22px;
}

.blog-board-graphic-pill:nth-of-type(5) {
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
}

.blog-recruitment-graphic {
  position: relative;
  min-height: 220px;
  padding: 20px;
}

.blog-recruitment-card {
  position: absolute;
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 36px rgba(4, 18, 22, 0.24);
  backdrop-filter: blur(10px);
  max-width: 200px;
}

.blog-recruitment-card span,
.blog-recruitment-pill {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.blog-recruitment-card strong {
  font-family: "Fraunces", serif;
  font-size: 1.4rem;
  letter-spacing: -0.04em;
}

.blog-recruitment-card small {
  color: rgba(238, 251, 250, 0.78);
  font-size: 0.83rem;
  line-height: 1.45;
}

.blog-recruitment-card-primary {
  top: 20px;
  left: 20px;
}

.blog-recruitment-card-secondary {
  right: 20px;
  bottom: 56px;
}

.blog-recruitment-pill {
  position: absolute;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(243, 251, 250, 0.92);
}

.blog-recruitment-pill:nth-of-type(3) {
  right: 24px;
  top: 22px;
}

.blog-recruitment-pill:nth-of-type(4) {
  left: 24px;
  bottom: 22px;
}

.blog-recruitment-pill:nth-of-type(5) {
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
}

.blog-examflow-graphic {
  position: relative;
  min-height: 220px;
  padding: 20px;
}

.blog-examflow-card {
  position: absolute;
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 36px rgba(28, 16, 7, 0.24);
  backdrop-filter: blur(10px);
  max-width: 200px;
}

.blog-examflow-card span,
.blog-examflow-pill {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.blog-examflow-card strong {
  font-family: "Fraunces", serif;
  font-size: 1.4rem;
  letter-spacing: -0.04em;
}

.blog-examflow-card small {
  color: rgba(255, 246, 236, 0.78);
  font-size: 0.83rem;
  line-height: 1.45;
}

.blog-examflow-card-primary {
  top: 20px;
  left: 20px;
}

.blog-examflow-card-secondary {
  right: 20px;
  bottom: 56px;
}

.blog-examflow-pill {
  position: absolute;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 248, 241, 0.92);
}

.blog-examflow-pill:nth-of-type(3) {
  right: 24px;
  top: 22px;
}

.blog-examflow-pill:nth-of-type(4) {
  left: 24px;
  bottom: 22px;
}

.blog-examflow-pill:nth-of-type(5) {
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
}

.blog-graphic-badges {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  z-index: 1;
}

.blog-kicker-light {
  background: rgba(255, 255, 255, 0.88);
  color: var(--blog-accent-deep);
}

.blog-kicker-soft {
  background: rgba(255, 255, 255, 0.14);
  color: #f3fbfa;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.blog-visual-caption {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.blog-visual-caption span {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(238, 251, 250, 0.86);
  font-size: 0.85rem;
}

.blog-visual-card strong,
.blog-mini-stat strong,
.blog-stat-card strong,
.result-card h3,
.blog-topic-card h3 {
  display: block;
  font-weight: 700;
}

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

.blog-stat-card {
  padding: 18px;
  border: 1px solid var(--blog-line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.58);
}

.blog-stat-card strong {
  font-family: "Fraunces", serif;
  font-size: 2rem;
  letter-spacing: -0.04em;
}

.blog-main {
  padding-top: 28px;
}

.blog-section {
  margin-top: 24px;
}

.blog-panel,
.blog-callout {
  padding: 28px;
}

.blog-panel-grid,
.blog-link-grid,
.result-grid,
.blog-topic-grid,
.blog-placeholder-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.blog-topic-card,
.result-card {
  display: grid;
  gap: 14px;
  padding: 20px;
}

.blog-topic-preview {
  position: relative;
  overflow: hidden;
  min-height: 138px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.blog-topic-preview::after {
  content: "";
  position: absolute;
  inset: auto -12% -35% auto;
  width: 160px;
  height: 160px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0));
}

.blog-topic-preview-results {
  background:
    radial-gradient(circle at 15% 18%, rgba(255, 255, 255, 0.2), transparent 26%),
    linear-gradient(140deg, rgba(10, 88, 83, 0.96), rgba(8, 30, 36, 0.98));
}

.blog-topic-preview-recruitment {
  background:
    radial-gradient(circle at 84% 18%, rgba(245, 158, 11, 0.24), transparent 24%),
    linear-gradient(140deg, rgba(16, 63, 94, 0.96), rgba(10, 30, 46, 0.98));
}

.blog-topic-preview-board {
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.18), transparent 24%),
    linear-gradient(140deg, rgba(7, 72, 67, 0.96), rgba(11, 35, 41, 0.98));
}

.blog-topic-preview-examflow {
  background:
    radial-gradient(circle at 82% 16%, rgba(255, 255, 255, 0.14), transparent 22%),
    linear-gradient(140deg, rgba(92, 58, 18, 0.96), rgba(48, 31, 18, 0.98));
}

.blog-topic-preview-card {
  position: absolute;
  top: 16px;
  left: 16px;
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  max-width: 210px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.1);
  color: #f5fbfa;
  box-shadow: 0 18px 36px rgba(11, 23, 28, 0.24);
  backdrop-filter: blur(10px);
  z-index: 1;
}

.blog-topic-preview-card span,
.blog-topic-preview-pill {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.blog-topic-preview-card strong {
  font-family: "Fraunces", serif;
  font-size: 1.3rem;
  letter-spacing: -0.04em;
  line-height: 1;
}

.blog-topic-preview-pill {
  position: absolute;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(245, 252, 251, 0.92);
  z-index: 1;
}

.blog-topic-preview-pill:nth-of-type(2) {
  top: 18px;
  right: 18px;
}

.blog-topic-preview-pill:nth-of-type(3) {
  left: 18px;
  bottom: 16px;
}

.blog-topic-preview-pill:nth-of-type(4) {
  right: 18px;
  bottom: 16px;
}

.blog-topic-card.is-live {
  background: linear-gradient(180deg, rgba(255, 253, 249, 0.98), rgba(229, 246, 243, 0.88));
}

.blog-topic-card.is-soon {
  opacity: 0.92;
}

.blog-topic-card-footer {
  justify-content: space-between;
  align-items: center;
}

.blog-list,
.blog-tips {
  padding-left: 20px;
  display: grid;
  gap: 10px;
}

.blog-callout {
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.92), rgba(9, 73, 69, 0.96));
  color: #f2fcfb;
}

.blog-callout p,
.blog-callout .blog-note,
.blog-callout .blog-list li {
  color: rgba(242, 252, 251, 0.82);
}

.blog-jump-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.blog-jump-links a {
  padding: 10px 14px;
  border: 1px solid var(--blog-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--blog-ink);
}

.result-grid {
  margin-top: 16px;
}

.result-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.result-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--blog-muted);
  line-height: 1.7;
}

.blog-foot-note {
  margin-top: 18px;
  padding: 16px 18px;
  border-left: 4px solid var(--blog-warm);
  border-radius: 16px;
  background: rgba(245, 158, 11, 0.08);
}

.blog-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--blog-muted);
  font-size: 0.94rem;
}

.blog-breadcrumbs span {
  opacity: 0.7;
}

.blog-footer {
  margin-top: 28px;
  padding: 24px 0 8px;
  color: var(--blog-muted);
}

@media (max-width: 980px) {
  .blog-hero-grid,
  .blog-article-hero-grid,
  .blog-panel-grid,
  .blog-link-grid,
  .result-grid,
  .blog-topic-grid,
  .blog-placeholder-grid {
    grid-template-columns: 1fr;
  }

  .blog-nav {
    border-radius: 26px;
    align-items: start;
    flex-direction: column;
  }

  .blog-nav-links {
    gap: 14px;
  }

  .blog-hero-copy h1,
  .blog-article-copy h1,
  .blog-placeholder h1 {
    max-width: none;
  }
}

@media (max-width: 680px) {
  .blog-shell {
    width: min(100%, calc(100% - 20px));
  }

  .blog-hero-card,
  .blog-panel,
  .blog-callout,
  .blog-placeholder,
  .blog-topic-card,
  .result-card {
    padding: 22px;
    border-radius: 24px;
  }

  .blog-mini-grid,
  .blog-quick-grid {
    grid-template-columns: 1fr;
  }

  .blog-board-graphic {
    display: grid;
    gap: 12px;
    align-content: start;
  }

  .blog-recruitment-graphic {
    display: grid;
    gap: 12px;
    align-content: start;
  }

  .blog-examflow-graphic {
    display: grid;
    gap: 12px;
    align-content: start;
  }

  .blog-board-graphic-card,
  .blog-board-graphic-pill,
  .blog-recruitment-card,
  .blog-recruitment-pill,
  .blog-examflow-card,
  .blog-examflow-pill {
    position: static;
    transform: none;
    max-width: none;
  }
}