:root {
  --gi-green: #8cc63f;
  --gi-cyan: #00a6c8;
  --gi-blue: #004b93;
  --gi-text: #2f2f2f;
  --gi-border: #d9d9d9;
  --gi-soft: #f7f8f2;

  --gi-fs-badge: 32px;
  --gi-fs-title: 26px;
  --gi-fs-body: 18px;
  --gi-fs-small: 16px;
  --gi-fs-label: 14px;
  --gi-fs-number: 32px;
}

.gi-level-block {
  font-family: MyriadPro, Arial, sans-serif;
  color: var(--gi-text);
}

.gi-level-block * {
  box-sizing: border-box;
}

.gi-level-wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 40px 20px;
}

.gi-level-card {
  position: relative;
  border: 1px solid var(--gi-green);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 26px rgba(0,0,0,.06);
  overflow: hidden;
}

.gi-level-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--gi-green), var(--gi-cyan), var(--gi-blue));
}

.gi-level-main {
  display: grid;
  grid-template-columns: 1.25fr .9fr .65fr;
  gap: 42px;
  padding: 48px 52px 38px;
}

.gi-level-info {
  position: relative;
  padding-left: 92px;
}

.gi-level-badge {
  position: absolute;
  left: 0;
  top: 2px;
  width: 64px;
  height: 54px;
  border: 2px solid var(--gi-green);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gi-green);
  font-size: var(--gi-fs-badge);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  padding-top: 2px;
}

.gi-level-info h3 {
  margin: 0 0 24px;
  font-size: var(--gi-fs-title);
  line-height: 1.18;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.gi-level-info p {
  margin: 0;
  font-size: var(--gi-fs-body);
  line-height: 1.5;
  font-weight: 400;
}

.gi-level-can {
  padding: 28px;
  border-radius: 8px;
  background: var(--gi-soft);
}

.gi-level-can h4 {
  margin: 0 0 20px;
  font-size: var(--gi-fs-body);
  line-height: 1.25;
  font-weight: 700;
}

.gi-level-can ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.gi-level-can li {
  position: relative;
  display: grid;
  grid-template-columns: 18px 1fr;
  column-gap: 12px;
  margin-bottom: 16px;
  font-size: var(--gi-fs-small);
  line-height: 1.42;
  font-weight: 400;
}

.gi-level-can li:last-child {
  margin-bottom: 0;
}

.gi-level-can li::before {
  content: "✓";
  color: var(--gi-green);
  font-size: var(--gi-fs-small);
  font-weight: 700;
  line-height: 1.42;
}

.gi-level-hours {
  border-left: 1px solid #e0e0e0;
  padding-left: 38px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.gi-level-hours-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  color: var(--gi-green);
}

.gi-level-hours-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.gi-level-hours p {
  margin: 0 0 8px;
  font-size: var(--gi-fs-small);
  line-height: 1.25;
  font-weight: 400;
}

.gi-level-hours strong {
  display: block;
  margin: 0 0 4px;
  color: var(--gi-green);
  font-size: var(--gi-fs-number);
  line-height: 1;
  font-weight: 700;
}

.gi-level-hours span {
  display: block;
  font-size: var(--gi-fs-small);
  line-height: 1.25;
  font-weight: 400;
}

.gi-level-exams {
  display: grid;
  grid-template-columns: 1fr 1.35fr 1.35fr;
  gap: 24px;
  align-items: center;
  padding: 24px 52px;
  border-top: 1px solid #e0e0e0;
}

.gi-level-exams-label {
  font-size: var(--gi-fs-label);
  line-height: 1.3;
  font-weight: 700;
}

.gi-level-exam-link {
  color: var(--gi-blue) !important;
  font-size: var(--gi-fs-small);
  line-height: 1.35;
  font-weight: 700;
  text-decoration: none !important;
  transition: color .25s ease;
}

.gi-level-exam-link:hover {
  color: var(--gi-cyan) !important;
}

@media screen and (max-width: 980px) {
  .gi-level-wrap {
    padding: 32px 16px;
  }

  .gi-level-main {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 34px 24px 30px;
  }

  .gi-level-info {
    padding-left: 0;
    padding-top: 72px;
  }

  .gi-level-badge {
    top: 0;
  }

  .gi-level-hours {
    border-left: none;
    border-top: 1px solid #e0e0e0;
    padding-left: 0;
    padding-top: 26px;
  }

  .gi-level-exams {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px;
  }
}

@media screen and (max-width: 640px) {
  :root {
    --gi-fs-badge: 30px;
    --gi-fs-title: 22px;
    --gi-fs-body: 17px;
    --gi-fs-small: 15px;
    --gi-fs-label: 14px;
    --gi-fs-number: 30px;
  }

  .gi-level-main {
    padding: 30px 20px 28px;
  }

  .gi-level-can {
    padding: 22px;
  }
}







/* ===== SV202 / T858 CARDS FIX: GLOBAL ===== */

.t858__wrap {
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
}

.t858__wrap_top {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  margin: 0 !important;
  padding: 0 !important;
  line-height: 0 !important;
}

.t858__img {
  width: 100px !important;
  height: 100px !important;
  display: block !important;
  margin: 0 auto !important;
  padding: 0 !important;
  object-fit: contain !important;
}

.t858__wrap_bottom {
  margin-top: 20px !important;
  padding-top: 0 !important;
}

.t858 .t-card__title,
.t858__wrap .t-card__title {
  margin-bottom: 16px !important;
  line-height: 1.15 !important;
}

.t858__inner-col {
  height: 100% !important;
}

@media screen and (max-width: 980px) {
  .t858__img {
    width: 64px !important;
    height: 64px !important;
  }

  .t858__wrap_bottom {
    margin-top: 16px !important;
  }
}