:root {
  --blue: #0677fd;
  --blue-dark: #0455c4;
  --blue-light: #e8f1ff;
  --footer-bg: #242422;
  --white: #ffffff;
  --off-white: #f8f8f8;
  --text: #1a1a1a;
  --text-mid: #555555;
  --text-light: #888888;
  --border: #e5e5e5;
  --section-dark: #1d2327;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: Montserrat, sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}
a {
  text-decoration: none;
}

/* TOP BAR */
.top-bar {
  background: var(--section-dark);
  padding: 10px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.top-bar-left {
  display: flex;
  align-items: center;
  gap: 28px;
}
.top-bar-contact {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}
.top-bar-contact:hover {
  color: white;
}
.top-bar-contact svg {
  width: 14px;
  height: 14px;
  fill: var(--blue);
  flex-shrink: 0;
}
.top-bar-divider {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.15);
}
.top-bar-social {
  display: flex;
  gap: 8px;
}
.top-bar-social a {
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  text-decoration: none;
  transition:
    background 0.2s,
    color 0.2s;
}
.top-bar-social a:hover {
  background: var(--blue);
  color: white;
}

/* MAIN NAV */
.main-nav {
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 0 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 2px 16px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  letter-spacing: 0.3px;
}
.nav-logo-text small {
  font-size: 10px;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mid);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 8px;
  transition: 0.2s;
  letter-spacing: 0.2px;
}
.nav-link:hover {
  color: var(--blue);
  background: var(--blue-light);
}
.nav-cta {
  background: var(--blue);
  color: white;
  font-size: 13px;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 200px;
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: 0.2s;
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--blue-dark);
  box-shadow: rgba(6, 119, 253, 0.35) 0px 6px 20px;
  transform: translateY(-1px);
}

/* ARTICLE HERO */
.article-hero {
  background: var(--section-dark);
  padding: 52px 50px;
  position: relative;
  overflow: hidden;
}
.article-hero::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -40px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(6, 119, 253, 0.1) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.article-hero-inner {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hero-crumb {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 16px;
  font-weight: 500;
}
.hero-crumb a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.hero-crumb a:hover {
  color: rgba(255, 255, 255, 0.75);
}
.hero-crumb span {
  color: rgba(255, 255, 255, 0.2);
  margin: 0 8px;
}
.article-cat {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 16px;
  background: #eef7ff;
  color: #0455c4;
}
.article-hero h1 {
  font-size: clamp(24px, 3.2vw, 38px);
  font-weight: 800;
  color: white;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 18px;
}
.article-meta {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.article-meta strong {
  color: rgba(255, 255, 255, 0.8);
}
.article-meta .sep {
  color: rgba(255, 255, 255, 0.2);
}

/* ARTICLE LAYOUT */
.article-layout {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 50px 80px;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 52px;
  align-items: start;
}

/* ARTICLE BODY */
.article-body {
  max-width: 720px;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mid);
  text-decoration: none;
  margin-bottom: 32px;
  padding: 8px 16px;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  transition: 0.2s;
}
.back-link:hover {
  color: var(--blue);
  border-color: var(--blue);
  background: var(--blue-light);
}
.article-body .lead {
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 36px;
  font-weight: 500;
  border-left: 4px solid var(--blue);
  padding-left: 22px;
}
.article-body h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  margin: 40px 0 14px;
  letter-spacing: -0.3px;
  line-height: 1.2;
}
.article-body h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin: 28px 0 10px;
}
.article-body p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 18px;
}
.article-body ul,
.article-body ol {
  margin: 0 0 22px 0;
  padding-left: 24px;
}
.article-body li {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 10px;
}
.article-body strong {
  color: var(--text);
  font-weight: 700;
}

/* COMPARISON TABLE */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1.5px solid var(--border);
}
.comparison-table th {
  background: var(--section-dark);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 20px;
  text-align: left;
}
.comparison-table th:first-child {
  width: 30%;
}
.comparison-table td {
  font-size: 13.5px;
  color: var(--text-mid);
  padding: 13px 20px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  line-height: 1.6;
}
.comparison-table tr:last-child td {
  border-bottom: none;
}
.comparison-table tr:hover td {
  background: var(--off-white);
}
.comparison-table td:first-child {
  font-weight: 700;
  color: var(--text);
}
.pro {
  color: #2e7d32;
  font-weight: 600;
}
.con {
  color: #bf360c;
  font-weight: 600;
}

/* INFO BOX */
.info-box {
  background: var(--blue-light);
  border-left: 4px solid var(--blue);
  border-radius: 0 10px 10px 0;
  padding: 20px 24px;
  margin: 32px 0;
}
.info-box .ib-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 8px;
}
.info-box p {
  margin: 0;
  font-size: 14px;
  color: var(--section-dark);
  line-height: 1.7;
}

/* CALLOUT */
.callout {
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 24px 28px;
  margin: 32px 0;
}
.callout h4 {
  font-size: 14px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
}
.callout ul {
  margin: 0;
  padding-left: 20px;
}
.callout li {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 6px;
}

/* ARTICLE CTA */
.article-cta {
  background: var(--section-dark);
  border-radius: 14px;
  padding: 36px;
  margin: 44px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.article-cta::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(6, 119, 253, 0.15) 0%,
    transparent 70%
  );
}
.article-cta h3 {
  font-size: 21px;
  font-weight: 800;
  color: white;
  margin-bottom: 10px;
}
.article-cta p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 24px;
  line-height: 1.7;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.article-cta .btn-group {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.article-cta .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: white;
  padding: 13px 28px;
  border-radius: 200px;
  font-size: 13px;
  font-weight: 700;
  font-family: Montserrat, sans-serif;
  letter-spacing: 0.3px;
  text-decoration: none;
  transition: 0.2s;
}
.article-cta .btn:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
}
.article-cta .btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}
.article-cta .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.18);
}

/* TAGS */
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 36px 0 0;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.tag-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  align-self: center;
  margin-right: 4px;
}
.tag {
  font-size: 11px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 50px;
  background: var(--off-white);
  color: var(--text-mid);
  border: 1px solid var(--border);
  transition: 0.2s;
}
.tag:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-light);
}

/* RELATED POSTS */
.related-posts {
  margin-top: 52px;
  padding-top: 36px;
  border-top: 2px solid var(--border);
}
.related-posts h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 20px;
  letter-spacing: -0.2px;
}
.related-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.related-card {
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 20px;
  transition: 0.25s;
  text-decoration: none;
  display: block;
}
.related-card:hover {
  border-color: var(--blue);
  background: var(--blue-light);
  transform: translateY(-2px);
  box-shadow: rgba(6, 119, 253, 0.1) 0px 6px 20px;
}
.related-card .r-cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 7px;
}
.related-card .r-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
}
.related-card .r-arrow {
  font-size: 12px;
  color: var(--blue);
  margin-top: 8px;
  font-weight: 700;
}

/* SIDEBAR */
.sidebar {
  position: sticky;
  top: 104px;
}
.sidebar-widget {
  background: var(--white);
  border: 1.5px solid var(--border);
  margin-bottom: 24px;
  overflow: hidden;
  border-radius: 4px;
}
.widget-title {
  background: var(--section-dark);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 20px;
}
.categories-list {
  list-style: none;
}
.categories-list li {
  border-bottom: 1px solid var(--border);
}
.categories-list li:last-child {
  border-bottom: none;
}
.categories-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  font-size: 13px;
  color: var(--text-mid);
  font-weight: 500;
  text-decoration: none;
  transition:
    color 0.2s,
    background 0.2s;
}
.categories-list a:hover {
  color: var(--blue);
  background: var(--blue-light);
}
.count {
  font-size: 11px;
  font-weight: 700;
  background: var(--off-white);
  color: var(--text-light);
  padding: 2px 8px;
  border-radius: 50px;
  border: 1px solid var(--border);
}
.register-widget {
  padding: 24px 20px;
  background: var(--section-dark);
}
.register-widget h4 {
  font-size: 14px;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
  line-height: 1.3;
}
.register-widget p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
  margin-bottom: 16px;
}
.register-widget a {
  display: block;
  background: var(--blue);
  color: white;
  text-align: center;
  padding: 12px;
  font-size: 13px;
  font-weight: 700;
  font-family: Montserrat, sans-serif;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s;
}
.register-widget a:hover {
  background: var(--blue-dark);
}
.vacancy-widget {
  padding: 20px;
}
.vacancy-widget p {
  font-size: 12.5px;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 14px;
}
.vacancy-widget a {
  display: block;
  border: 2px solid var(--blue);
  color: var(--blue);
  text-align: center;
  padding: 10px;
  font-size: 13px;
  font-weight: 700;
  font-family: Montserrat, sans-serif;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.2s;
}
.vacancy-widget a:hover {
  background: var(--blue);
  color: white;
}

/* SHARE BAR */
.share-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 32px 0;
}
.share-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 6px;
  border: 1.5px solid var(--border);
  color: var(--text-mid);
  transition: 0.2s;
  cursor: pointer;
  background: none;
  font-family: Montserrat, sans-serif;
}
.share-btn:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-light);
}

/* FOOTER */
footer {
  background: var(--footer-bg);
  color: rgba(255, 255, 255, 0.55);
  padding: 70px 50px 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 52px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 32px;
}
.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.footer-brand-logo img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
}
.footer-brand-name {
  font-size: 14px;
  font-weight: 700;
  color: white;
}
.footer-brand-sub {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.footer-brand p {
  font-size: 13px;
  line-height: 1.75;
  max-width: 570px;
}
.footer-social {
  display: flex;
  gap: 8px;
  margin-top: 22px;
}
.footer-social a {
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: 0.2s;
}
.footer-social a:hover {
  background: var(--blue);
  color: white;
}
.footer-app-badges {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.app-badge {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 7px 14px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: 0.2s;
}
.app-badge:hover {
  border-color: rgba(255, 255, 255, 0.4);
  color: white;
}
.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  color: white;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col a {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover {
  color: white;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  font-weight: 400;
}
.footer-bottom a {
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  margin-left: 18px;
}
.footer-bottom a:hover {
  color: rgba(255, 255, 255, 0.7);
}

.article-layout {
  display: block !important;
  /*     margin: 0 !important; */
  padding: 12px !important;
  width: 100%;
}

.article-body {
  max-width: 100% !important;
}

.sidebar {
  position: unset !important;
}

@media screen and (min-width: 1100px) {
  .sidebar {
    position: sticky !important;
    top: 104px !important;
  }

  .article-layout {
    display: block !important;
    margin: 0 auto !important;
    padding: 60px 50px 80px !important;
    display: grid !important;
    grid-template-columns: 1fr 280px !important;
  }

  .article-body {
    max-width: 720px !important;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: Montserrat, sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}
a {
  text-decoration: none;
}
.top-bar {
  background: var(--section-dark);
  padding: 10px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.top-bar-left {
  display: flex;
  align-items: center;
  gap: 28px;
}
.top-bar-contact {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
}
.top-bar-contact svg {
  width: 14px;
  height: 14px;
  fill: var(--blue);
  flex-shrink: 0;
}
.top-bar-divider {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.15);
}
.top-bar-social {
  display: flex;
  gap: 8px;
}
.top-bar-social a {
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  text-decoration: none;
}
.main-nav {
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 0 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 2px 16px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}
.nav-logo-text small {
  font-size: 10px;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mid);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 8px;
  transition: 0.2s;
}
.nav-link:hover {
  color: var(--blue);
  background: var(--blue-light);
}
.nav-cta {
  background: var(--blue);
  color: white;
  font-size: 13px;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 200px;
  text-decoration: none;
}
.article-hero {
  background: var(--section-dark);
  padding: 52px 50px;
  position: relative;
  overflow: hidden;
}
.article-hero::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -40px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(6, 119, 253, 0.1) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.article-hero-inner {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hero-crumb {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 16px;
  font-weight: 500;
}
.hero-crumb a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
}
.hero-crumb span {
  color: rgba(255, 255, 255, 0.2);
  margin: 0 8px;
}
.article-cat {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 16px;
  background: var(--blue-light);
  color: var(--blue-dark);
}
.article-hero h1 {
  font-size: clamp(24px, 3.2vw, 38px);
  font-weight: 800;
  color: white;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 18px;
}
.article-meta {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  gap: 16px;
}
.article-meta strong {
  color: rgba(255, 255, 255, 0.8);
}
.article-meta .sep {
  color: rgba(255, 255, 255, 0.2);
}
.article-layout {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 50px 80px;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 52px;
  align-items: start;
}
.article-body {
  max-width: 720px;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mid);
  text-decoration: none;
  margin-bottom: 32px;
  padding: 8px 16px;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  transition: 0.2s;
}
.back-link:hover {
  color: var(--blue);
  border-color: var(--blue);
  background: var(--blue-light);
}
.article-body .lead {
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 36px;
  font-weight: 500;
  border-left: 4px solid var(--blue);
  padding-left: 22px;
}
.article-body h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  margin: 40px 0 14px;
  letter-spacing: -0.3px;
}
.article-body h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin: 28px 0 10px;
}
.article-body p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 18px;
}
.article-body ul {
  margin: 0 0 22px 0;
  padding-left: 24px;
}
.article-body li {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 10px;
}
.article-body strong {
  color: var(--text);
  font-weight: 700;
}
.info-box {
  background: var(--blue-light);
  border-left: 4px solid var(--blue);
  border-radius: 0 10px 10px 0;
  padding: 20px 24px;
  margin: 32px 0;
}
.info-box .ib-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 8px;
}
.info-box p {
  margin: 0;
  font-size: 14px;
  color: var(--section-dark);
  line-height: 1.7;
}
.roles-spotlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 24px 0 32px;
}
.rs-card {
  border-radius: 12px;
  padding: 22px;
  border: 2px solid var(--border);
}
.rs-card.ecp {
  border-color: #0455c4;
  background: #eef7ff;
}
.rs-card.enp {
  border-color: #7b1fa2;
  background: #f3e5f5;
}
.rs-card.para {
  border-color: #2e7d32;
  background: #f0f9f0;
}
.rs-card.anp {
  border-color: #e65100;
  background: #fff8e7;
}
.rs-card .rs-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 50px;
  color: white;
  margin-bottom: 10px;
}
.ecp .rs-badge {
  background: #0455c4;
}
.enp .rs-badge {
  background: #7b1fa2;
}
.para .rs-badge {
  background: #2e7d32;
}
.anp .rs-badge {
  background: #e65100;
}
.rs-card .rs-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 6px;
}
.rs-card .rs-demand {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 8px;
}
.rs-card .rs-desc {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.6;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 28px 0;
}
.stat-box {
  background: var(--section-dark);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
}
.stat-box .s-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-box .s-lbl {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  line-height: 1.4;
}
.article-cta {
  background: var(--section-dark);
  border-radius: 14px;
  padding: 36px;
  margin: 44px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.article-cta::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(6, 119, 253, 0.15) 0%,
    transparent 70%
  );
}
.article-cta h3 {
  font-size: 21px;
  font-weight: 800;
  color: white;
  margin-bottom: 10px;
}
.article-cta p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 24px;
  line-height: 1.7;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.btn-group {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: white;
  padding: 13px 28px;
  border-radius: 200px;
  font-size: 13px;
  font-weight: 700;
  font-family: Montserrat, sans-serif;
  text-decoration: none;
  transition: 0.2s;
}
.btn:hover {
  background: var(--blue-dark);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}
.share-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 32px 0;
}
.share-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 6px;
  border: 1.5px solid var(--border);
  color: var(--text-mid);
  cursor: pointer;
  background: none;
  font-family: Montserrat, sans-serif;
}
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 36px 0 0;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.tag-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  align-self: center;
  margin-right: 4px;
}
.tag {
  font-size: 11px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 50px;
  background: var(--off-white);
  color: var(--text-mid);
  border: 1px solid var(--border);
}
.related-posts {
  margin-top: 52px;
  padding-top: 36px;
  border-top: 2px solid var(--border);
}
.related-posts h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 20px;
}
.related-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.related-card {
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 20px;
  transition: 0.25s;
  text-decoration: none;
  display: block;
}
.related-card:hover {
  border-color: var(--blue);
  background: var(--blue-light);
  transform: translateY(-2px);
}
.related-card .r-cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 7px;
}
.related-card .r-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
}
.related-card .r-arrow {
  font-size: 12px;
  color: var(--blue);
  margin-top: 8px;
  font-weight: 700;
}
.sidebar {
  position: sticky;
  top: 104px;
}
.sidebar-widget {
  background: var(--white);
  border: 1.5px solid var(--border);
  margin-bottom: 24px;
  overflow: hidden;
  border-radius: 4px;
}
.widget-title {
  background: var(--section-dark);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 20px;
}
.categories-list {
  list-style: none;
}
.categories-list li {
  border-bottom: 1px solid var(--border);
}
.categories-list li:last-child {
  border-bottom: none;
}
.categories-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  font-size: 13px;
  color: var(--text-mid);
  font-weight: 500;
  text-decoration: none;
  transition:
    color 0.2s,
    background 0.2s;
}
.categories-list a:hover {
  color: var(--blue);
  background: var(--blue-light);
}
.count {
  font-size: 11px;
  font-weight: 700;
  background: var(--off-white);
  color: var(--text-light);
  padding: 2px 8px;
  border-radius: 50px;
  border: 1px solid var(--border);
}
.register-widget {
  padding: 24px 20px;
  background: var(--section-dark);
}
.register-widget h4 {
  font-size: 14px;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}
.register-widget p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
  margin-bottom: 16px;
}
.register-widget a {
  display: block;
  background: var(--blue);
  color: white;
  text-align: center;
  padding: 12px;
  font-size: 13px;
  font-weight: 700;
  font-family: Montserrat, sans-serif;
  border-radius: 6px;
  text-decoration: none;
}
.vacancy-widget {
  padding: 20px;
}
.vacancy-widget p {
  font-size: 12.5px;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 14px;
}
.vacancy-widget a {
  display: block;
  border: 2px solid var(--blue);
  color: var(--blue);
  text-align: center;
  padding: 10px;
  font-size: 13px;
  font-weight: 700;
  font-family: Montserrat, sans-serif;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.2s;
}
.vacancy-widget a:hover {
  background: var(--blue);
  color: white;
}

.q-block {
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 24px 28px;
  margin: 28px 0;
  border-left: 4px solid var(--blue);
}
.q-num {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 8px;
}
.q-question {
  font-size: 17px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.3;
}
.q-guidance {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.75;
}
.q-guidance strong {
  color: var(--text);
}
.tip-box {
  background: #f0f9f0;
  border-left: 4px solid #2e7d32;
  border-radius: 0 10px 10px 0;
  padding: 18px 22px;
  margin: 16px 0;
}
.tip-box p {
  margin: 0;
  font-size: 13.5px;
  color: #1b5e20;
  line-height: 1.65;
  font-weight: 500;
}
.warning-box {
  background: #fff8e7;
  border-left: 4px solid #e65100;
  border-radius: 0 10px 10px 0;
  padding: 18px 22px;
  margin: 16px 0;
}
.warning-box p {
  margin: 0;
  font-size: 13.5px;
  color: #3e2000;
  line-height: 1.65;
}

.five-year-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin: 24px 0 32px;
}
.fy-card {
  background: var(--section-dark);
  border-radius: 8px;
  padding: 14px 12px;
  text-align: center;
}
.fy-card .fy-year {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 6px;
}
.fy-card .fy-title {
  font-size: 12px;
  font-weight: 700;
  color: white;
  margin-bottom: 4px;
  line-height: 1.3;
}
.fy-card .fy-desc {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.4;
}
.supporting-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 20px 0 28px;
}
.si-card {
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 16px 18px;
}
.si-card .sic-domain {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 6px;
}
.si-card .sic-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.si-card .sic-req {
  font-size: 12px;
  color: var(--text-mid);
  line-height: 1.5;
}
.checklist-box {
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 24px 28px;
  margin: 28px 0;
}
.checklist-box h4 {
  font-size: 14px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 16px;
}
.checklist-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.checklist-box li {
  font-size: 13.5px;
  color: var(--text-mid);
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.55;
}
.checklist-box li::before {
  content: "✓";
  color: var(--blue);
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}
.article-cta {
  background: var(--section-dark);
  border-radius: 14px;
  padding: 36px;
  margin: 44px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.article-cta::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(6, 119, 253, 0.15) 0%,
    transparent 70%
  );
}
.article-cta h3 {
  font-size: 21px;
  font-weight: 800;
  color: white;
  margin-bottom: 10px;
}
.article-cta p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 24px;
  line-height: 1.7;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.btn-group {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: white;
  padding: 13px 28px;
  border-radius: 200px;
  font-size: 13px;
  font-weight: 700;
  font-family: Montserrat, sans-serif;
  text-decoration: none;
  transition: 0.2s;
}
.btn:hover {
  background: var(--blue-dark);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}
.share-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 32px 0;
}
.share-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 6px;
  border: 1.5px solid var(--border);
  color: var(--text-mid);
  cursor: pointer;
  background: none;
  font-family: Montserrat, sans-serif;
}
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 36px 0 0;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.tag-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  align-self: center;
  margin-right: 4px;
}
.tag {
  font-size: 11px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 50px;
  background: var(--off-white);
  color: var(--text-mid);
  border: 1px solid var(--border);
}
.related-posts {
  margin-top: 52px;
  padding-top: 36px;
  border-top: 2px solid var(--border);
}
.related-posts h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 20px;
}
.related-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.related-card {
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 20px;
  transition: 0.25s;
  text-decoration: none;
  display: block;
}
.related-card:hover {
  border-color: var(--blue);
  background: var(--blue-light);
  transform: translateY(-2px);
}
.related-card .r-cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 7px;
}
.related-card .r-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
}
.related-card .r-arrow {
  font-size: 12px;
  color: var(--blue);
  margin-top: 8px;
  font-weight: 700;
}

.info-box {
  background: var(--blue-light);
  border-left: 4px solid var(--blue);
  border-radius: 0 10px 10px 0;
  padding: 20px 24px;
  margin: 32px 0;
}
.info-box .ib-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 8px;
}
.info-box p {
  margin: 0;
  font-size: 14px;
  color: var(--section-dark);
  line-height: 1.7;
}
.tip-box {
  background: #f0f9f0;
  border-left: 4px solid #2e7d32;
  border-radius: 0 10px 10px 0;
  padding: 18px 22px;
  margin: 24px 0;
}
.tip-box p {
  margin: 0;
  font-size: 14px;
  color: #1b5e20;
  line-height: 1.65;
  font-weight: 500;
}
.diary-week {
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin: 28px 0;
}
.diary-week-header {
  background: var(--section-dark);
  padding: 12px 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: white;
}
.diary-row {
  display: grid;
  grid-template-columns: 100px 1fr 1fr 1fr 1fr 1fr;
  border-bottom: 1px solid var(--border);
}
.diary-row:last-child {
  border-bottom: none;
}
.diary-cell {
  padding: 10px 14px;
  font-size: 12px;
  color: var(--text-mid);
  border-right: 1px solid var(--border);
}
.diary-cell:last-child {
  border-right: none;
}
.diary-cell.header {
  font-weight: 800;
  color: var(--text);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: var(--off-white);
}
.diary-cell.anchor {
  background: #eef7ff;
  color: #0455c4;
  font-weight: 600;
}
.diary-cell.agency {
  background: #f0f9f0;
  color: #2e7d32;
  font-weight: 600;
}
.diary-cell.personal {
  background: #fff8e7;
  color: #e65100;
  font-weight: 600;
}
.diary-cell.empty {
  background: white;
  color: var(--text-light);
}
.income-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0 28px;
  border-radius: 10px;
  overflow: hidden;
  border: 1.5px solid var(--border);
}
.income-table th {
  background: var(--section-dark);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 13px 18px;
  text-align: left;
}
.income-table td {
  font-size: 13px;
  color: var(--text-mid);
  padding: 12px 18px;
  border-bottom: 1px solid var(--border);
}
.income-table tr:last-child td {
  border-bottom: none;
}
.income-table tr:hover td {
  background: var(--off-white);
}
.income-table td:first-child {
  font-weight: 700;
  color: var(--text);
}

.tips-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0 36px;
}
.tip-card {
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 22px;
  transition: 0.2s;
}
.tip-card:hover {
  border-color: var(--blue);
  background: var(--blue-light);
}
.tip-card .tc-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  font-size: 14px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.tip-card .tc-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 6px;
}
.tip-card .tc-desc {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.6;
}
.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 28px 0;
}
.stat-box {
  background: var(--section-dark);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
}
.stat-box .s-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-box .s-lbl {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  line-height: 1.4;
}
.contract-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 24px 0 28px;
}
.con-card {
  border-radius: 10px;
  padding: 18px 20px;
  border: 1.5px solid var(--border);
  background: var(--off-white);
}
.con-card .cc-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 8px;
}
.con-card .cc-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 5px;
}
.con-card .cc-desc {
  font-size: 12.5px;
  color: var(--text-mid);
  line-height: 1.55;
}

stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 28px 0;
}
.stat-box {
  background: var(--section-dark);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
}
.stat-box .s-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-box .s-lbl {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  line-height: 1.4;
}
.des-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 24px 0 32px;
}
.des-card {
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 18px 20px;
  transition: 0.2s;
}
.des-card:hover {
  border-color: var(--blue);
  background: var(--blue-light);
}
.des-card .dc-icon {
  font-size: 22px;
  margin-bottom: 10px;
}
.des-card .dc-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 5px;
}
.des-card .dc-desc {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.55;
}
.roles-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 12px 0 28px;
}
.role-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.role-row:last-child {
  border-bottom: none;
}
.role-row .rr-icon {
  font-size: 20px;
  flex-shrink: 0;
  width: 32px;
  text-align: center;
  margin-top: 2px;
}
.role-row .rr-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 3px;
}
.role-row .rr-desc {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.55;
}
.challenge-box {
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 24px 28px;
  margin: 28px 0;
}
.challenge-box h4 {
  font-size: 14px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 16px;
}
.challenge-item {
  display: flex;
  gap: 14px;
  margin-bottom: 16px;
}
.challenge-item:last-child {
  margin-bottom: 0;
}
.ci-icon {
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}
.ci-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.ci-desc {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.6;
}
