/* TOP NAV */
.site-nav {
  background: #1a1a1a;
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 3px solid #8ab61f;
}
.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo img {
  height: 40px;
  width: auto;
}
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: #8ab61f;
}
.nav-cta {
  background: #f5922a;
  color: #fff;
  padding: 9px 22px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: background 0.2s;
}
.nav-cta:hover {
  background: #d97920;
}

/* HERO BANNER */
.blog-hero {
  /* This adds a 50% black overlay on top of the image */
  background:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("../img/blog/blog1.jpg") center center / cover no-repeat;
  padding: 60px 24px 50px;
  position: relative;
  overflow: hidden;
}
.custom-black-overlay {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
  pointer-events: none;
}

/* .nmims-hero {
  position: relative;
  background: url("../img/hero/hero-bg.jpg") no-repeat center/cover;
  padding: 80px 0;
  color: #fff;
  z-index: 1;
} */
.blog-hero::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(138, 182, 31, 0.15) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.blog-hero::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(245, 146, 42, 0.12) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.hero-inner {
  max-width: 820px;
  margin: 0 100px;
  position: relative;
  z-index: 1;
}
.blog-category {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(138, 182, 31, 0.18);
  border: 1px solid rgba(138, 182, 31, 0.4);
  color: #d4e89a;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.blog-hero h1 {
  font-family: "Outfit", sans-serif;
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 18px;
}
.blog-hero h1 span {
  color: #f5922a;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  margin-top: 24px;
}
.meta-item {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
}
.meta-dot {
  width: 6px;
  height: 6px;
  background: #8ab61f;
  border-radius: 50%;
  flex-shrink: 0;
}
.hero-tagline {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
  max-width: 680px;
}

/* LAYOUT */
.page-wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 48px 24px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
}

/* ARTICLE */
.article-body {
  min-width: 0;
}

.article-body h2 {
  font-family: "Outfit", sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 44px 0 14px;
  padding-bottom: 10px;
  border-bottom: 3px solid #8ab61f;
  display: flex;
  align-items: center;
  gap: 10px;
}
.article-body h2:first-child {
  margin-top: 0;
}
.h2-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #8ab61f;
  color: #fff;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

.article-body h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 28px 0 10px;
}

.article-body p {
  font-size: 16px;
  color: #444;
  line-height: 1.75;
  margin-bottom: 16px;
}

/* INTRO CARD */
.intro-card {
  background: #fff;
  border-left: 5px solid #f5922a;
  border-radius: 0 10px 10px 0;
  padding: 22px 24px;
  margin-bottom: 32px;
  box-shadow: var(0 2px 16px rgba(0, 0, 0, 0.07));
}
.intro-card p {
  margin: 0 0 10px;
  font-size: 17px;
  color: #333;
}
.intro-card p:last-child {
  margin: 0;
}
.intro-questions {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 14px 0;
}
.intro-questions li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #555;
}

/* BLOG LIST PAGE */
.blog-list-hero {
  position: relative;
  overflow: hidden;
  padding: 140px 0 80px;
  background:
    radial-gradient(circle at top left, rgba(138, 182, 31, 0.16), transparent 34%),
    radial-gradient(circle at bottom right, rgba(245, 146, 42, 0.18), transparent 28%),
    linear-gradient(135deg, #101826 0%, #18263a 58%, #20314b 100%);
}

.blog-list-hero::before {
  content: "";
  position: absolute;
  inset: auto auto -120px -70px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  filter: blur(4px);
}

.blog-list-hero::after {
  content: "";
  position: absolute;
  top: 90px;
  right: 7%;
  width: 160px;
  height: 160px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 24px;
  transform: rotate(12deg);
}

.blog-list-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 470px);
  gap: 34px;
  align-items: center;
}

.blog-list-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #d9e7ff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.blog-list-hero__content h1 {
  font-size: clamp(34px, 4.6vw, 62px);
  line-height: 1.05;
  color: #fff;
  margin-bottom: 18px;
}

.blog-list-hero__content p {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 28px;
}

.blog-list-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.blog-list-stat {
  min-width: 130px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.blog-list-stat strong {
  display: block;
  color: #fff;
  font-size: 28px;
  line-height: 1;
  margin-bottom: 6px;
}

.blog-list-stat span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.5;
}

.blog-list-featured {
  display: block;
  text-decoration: none;
  border-radius: 28px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 24px 60px rgba(7, 18, 34, 0.28);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.blog-list-featured:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(7, 18, 34, 0.34);
}

.blog-list-featured__image {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.blog-list-featured__image img,
.blog-list-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.blog-list-featured:hover .blog-list-featured__image img,
.blog-list-card:hover .blog-list-card__image img {
  transform: scale(1.04);
}

.blog-list-featured__badge {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 7px 14px;
  border-radius: 999px;
  background: #f5922a;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.blog-list-featured__body {
  padding: 28px;
}

.blog-list-card__category {
  display: inline-block;
  color: #8ab61f;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.blog-list-featured__body h2,
.blog-list-card__body h3 {
  color: #18263a;
  line-height: 1.25;
  margin-bottom: 14px;
}

.blog-list-featured__body h2 {
  font-size: 28px;
}

.blog-list-card__body h3 {
  font-size: 24px;
}

.blog-list-card__body h3 a {
  color: inherit;
  text-decoration: none;
}

.blog-list-featured__body p,
.blog-list-card__body p {
  color: #5b6574;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 18px;
}

.blog-list-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  color: #6d7684;
  font-size: 13px;
  margin-bottom: 18px;
}

.blog-list-card__meta span {
  position: relative;
}

.blog-list-card__meta span:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -10px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #8ab61f;
  transform: translateY(-50%);
}

.blog-list-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #18263a;
  font-weight: 700;
  text-decoration: none;
}

.blog-list-card__link:hover {
  color: #f5922a;
}

.blog-list-section {
  padding: 78px 0 90px;
  background:
    linear-gradient(180deg, #f6f8fb 0%, #ffffff 100%);
}

.blog-list-section__head {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: end;
  margin-bottom: 34px;
}

.blog-list-section__label {
  display: inline-block;
  margin-bottom: 10px;
  color: #f5922a;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-list-section__head h2 {
  font-size: clamp(28px, 3vw, 40px);
  color: #18263a;
  margin-bottom: 0;
}

.blog-list-section__head p {
  max-width: 460px;
  color: #5b6574;
  line-height: 1.8;
  margin-bottom: 0;
}

.blog-list-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.blog-list-card {
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
  background: #fff;
  border: 1px solid #e8edf3;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(13, 30, 52, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.blog-list-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 54px rgba(13, 30, 52, 0.12);
}

.blog-list-card__image {
  display: block;
  min-height: 100%;
  overflow: hidden;
}

.blog-list-card__body {
  padding: 30px;
}

@media (max-width: 991px) {
  .blog-list-hero {
    padding: 120px 0 70px;
  }

  .blog-list-hero__inner,
  .blog-list-card,
  .blog-list-section__head {
    grid-template-columns: 1fr;
  }

  .blog-list-section__head {
    align-items: start;
  }

  .blog-list-card__image {
    min-height: 260px;
  }
}

@media (max-width: 767px) {
  .blog-list-hero {
    padding: 110px 0 60px;
  }

  .blog-list-featured__body,
  .blog-list-card__body {
    padding: 22px;
  }

  .blog-list-featured__body h2 {
    font-size: 24px;
  }

  .blog-list-card__body h3 {
    font-size: 21px;
  }

  .blog-list-stat {
    min-width: calc(50% - 8px);
  }
}

@media (max-width: 575px) {
  .blog-list-hero__content p,
  .blog-list-section__head p {
    font-size: 15px;
  }

  .blog-list-stat {
    min-width: 100%;
  }

  .blog-list-card__image {
    min-height: 220px;
  }
}
.intro-questions li::before {
  content: "?";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: #fff4e8;
  color: #f5922a;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

/* NMIMS INFO GRID */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 24px 0;
}
.info-tile {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  padding: 18px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.tile-icon {
  width: 42px;
  height: 42px;
  background: #f2f7e0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 22px;
}
.tile-text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 4px;
}
.tile-text span {
  font-size: 13px;
  color: #888;
  line-height: 1.5;
}

/* CALLOUT BOXES */
.callout {
  border-radius: 10px;
  padding: 18px 20px;
  margin: 24px 0;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.callout-remember {
  background: #fff4e8;
  border: 1px solid rgba(245, 146, 42, 0.3);
}
.callout-tip {
  background: #f2f7e0;
  border: 1px solid rgba(138, 182, 31, 0.3);
}
.callout-warn {
  background: #fff8e1;
  border: 1px solid #ffe082;
}
.callout-icon {
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}
.callout-body strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.callout-remember .callout-body strong {
  color: #d97920;
}
.callout-tip .callout-body strong {
  color: #6d9218;
}
.callout-warn .callout-body strong {
  color: #b45309;
}
.callout-body p {
  font-size: 15px;
  color: #444;
  margin: 0;
  line-height: 1.6;
}

/* DATA TABLE */
.data-table-wrap {
  overflow-x: auto;
  margin: 24px 0;
}
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
.data-table thead tr {
  background: #1a1a1a;
  color: #fff;
}
.data-table thead th {
  padding: 13px 16px;
  text-align: left;
  font-weight: 600;
  font-size: 14px;
}
.data-table thead th:first-child {
  border-radius: 8px 0 0 0;
}
.data-table thead th:last-child {
  border-radius: 0 8px 0 0;
}
.data-table tbody tr {
  border-bottom: 1px solid #e8e8e8;
  transition: background 0.15s;
}
.data-table tbody tr:hover {
  background: #f2f7e0;
}
.data-table tbody td {
  padding: 12px 16px;
  color: #444;
  vertical-align: top;
}
.data-table tbody td:first-child {
  font-weight: 600;
  color: #1a1a1a;
}
.badge-highlight {
  display: inline-block;
  background: #f5922a;
  color: #fff;
  padding: 2px 10px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
}

/* STEP TIMELINE */
.steps-list {
  list-style: none;
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.step-item {
  display: flex;
  gap: 18px;
  position: relative;
}
.step-item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 20px;
  top: 44px;
  width: 2px;
  height: calc(100% - 12px);
  background: #e8e8e8;
}
.step-num {
  width: 40px;
  height: 40px;
  background: #8ab61f;
  color: #fff;
  border-radius: 50%;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.step-content {
  padding: 8px 0 28px;
  flex: 1;
}
.step-content h4 {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 6px;
}
.step-content p {
  font-size: 15px;
  color: #555;
  margin: 0;
  line-height: 1.6;
}
.step-url {
  display: inline-block;
  margin-top: 6px;
  background: #f2f7e0;
  border: 1px solid #d4e89a;
  color: #6d9218;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

/* CHECKLIST */
.checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 22px 24px;
  margin: 24px 0;
  box-shadow: var(0 2px 16px rgba(0, 0, 0, 0.07));
}
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: #444;
  line-height: 1.5;
}
.check-box {
  width: 20px;
  height: 20px;
  background: #f2f7e0;
  border: 2px solid #8ab61f;
  border-radius: 4px;
  flex-shrink: 0;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.check-box::after {
  content: "✓";
  font-size: 12px;
  color: #6d9218;
  font-weight: 700;
}

/* MISTAKE CARDS */
.mistake-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 24px 0;
}
.mistake-card {
  background: #fff5f5;
  border: 1px solid #fcd0d0;
  border-radius: 10px;
  padding: 16px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.mistake-x {
  width: 24px;
  height: 24px;
  background: #e74c3c;
  color: #fff;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mistake-card p {
  font-size: 14px;
  color: #5a1e1e;
  margin: 0;
  line-height: 1.5;
}

/* DOC LISTS */
.doc-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 20px 0;
}
.doc-box {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  padding: 18px;
  box-shadow: var(0 2px 16px rgba(0, 0, 0, 0.07));
}
.doc-box h4 {
  font-size: 15px;
  font-weight: 700;
  color: #d97920;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid #fdd4a8;
}
.doc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.doc-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 14px;
  color: #555;
  line-height: 1.4;
}
.doc-list li::before {
  content: "📄";
  font-size: 14px;
  flex-shrink: 0;
}

/* LMS FEATURES */
.lms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 20px 0;
}
.lms-item {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  padding: 16px 18px;
  border-top: 3px solid #8ab61f;
}
.lms-item h4 {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 6px;
}
.lms-item p {
  font-size: 13px;
  color: #888;
  margin: 0;
  line-height: 1.5;
}

/* CTA SECTION */
.cta-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d3a0e 100%);
  border-radius: 16px;
  padding: 40px 36px;
  margin: 48px 0 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 260px;
  height: 260px;
  background: radial-gradient(
    circle,
    rgba(138, 182, 31, 0.2) 0%,
    transparent 70%
  );
}
.cta-inner {
  position: relative;
  z-index: 1;
}
.cta-section h2 {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  border: none;
  padding: 0;
}
.cta-section h2 span {
  color: #f5922a;
}
.cta-section p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 16px;
  max-width: 580px;
}
.cta-benefits {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 22px 0;
}
.cta-benefits li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
}
.cta-benefits li::before {
  content: "✓";
  width: 20px;
  height: 20px;
  background: #8ab61f;
  color: #fff;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.btn-cta-primary {
  background: #f5922a;
  color: #fff;
  padding: 13px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s;
}
.btn-cta-primary:hover {
  background: #d97920;
}
.btn-cta-outline {
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.btn-cta-outline:hover {
  border-color: #8ab61f;
  background: rgba(138, 182, 31, 0.1);
}
.cta-contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.contact-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
}
.contact-pill a {
  color: #d4e89a;
  font-weight: 600;
  text-decoration: none;
}
.contact-pill a:hover {
  text-decoration: underline;
}

/* SIDEBAR */
.sidebar {
  position: sticky;
  top: 100px;
}
.sidebar-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(0 2px 16px rgba(0, 0, 0, 0.07));
  margin-bottom: 20px;
}
.sidebar-card-header {
  background: #1a1a1a;
  color: #fff;
  padding: 14px 18px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.3px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sidebar-card-header .dot {
  width: 8px;
  height: 8px;
  background: #8ab61f;
  border-radius: 50%;
}
.sidebar-card-body {
  padding: 18px;
}

.toc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.toc-list a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 13.5px;
  color: #555;
  transition:
    background 0.15s,
    color 0.15s;
}
.toc-list a:hover {
  background: #f2f7e0;
  color: #6d9218;
}
.toc-num {
  width: 20px;
  height: 20px;
  background: #f2f7e0;
  color: #6d9218;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.key-dates {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.key-date-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #e8e8e8;
}
.key-date-item:last-child {
  border: none;
}
.date-badge {
  background: #fff4e8;
  border: 1px solid #fdd4a8;
  color: #d97920;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
  min-width: 70px;
  text-align: center;
}
.date-badge.deadline {
  background: #fff0f0;
  border-color: #fcc;
  color: #c0392b;
}
.date-label {
  font-size: 13px;
  color: #555;
  line-height: 1.4;
}

.contact-block {
  text-align: center;
}
.contact-block .phone-big {
  font-size: 20px;
  font-weight: 800;
  color: #6d9218;
  display: block;
  margin: 8px 0;
  text-decoration: none;
}
.contact-block .phone-big:hover {
  color: #f5922a;
}
.contact-block p {
  font-size: 13px;
  color: #888;
  margin: 0 0 14px;
}
.wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25d366;
  color: #fff;
  padding: 11px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transition: background 0.2s;
}
.wa-btn:hover {
  background: #1ebe5d;
}

/* DISCLAIMER */
.disclaimer {
  font-size: 13px;
  color: #888;
  font-style: italic;
  border-top: 1px solid #e8e8e8;
  padding-top: 18px;
  margin-top: 40px;
}

/* FOOTER */
.site-footer {
  background: #1a1a1a;
  color: rgba(255, 255, 255, 0.65);
  padding: 32px 24px;
  margin-top: 64px;
  border-top: 3px solid #8ab61f;
  text-align: center;
}
.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
}
.footer-brand {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}
.footer-brand span {
  color: #8ab61f;
}
.footer-tagline {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .page-wrap {
    grid-template-columns: 1fr;
  }
  .sidebar {
    position: static;
  }
  .info-grid,
  .doc-cols,
  .lms-grid,
  .mistake-grid {
    grid-template-columns: 1fr;
  }
  .cta-benefits {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .nav-links {
    display: none;
  }
  .blog-hero {
    padding: 40px 16px 36px;
  }
  .page-wrap {
    padding: 32px 16px;
  }
}
