.shk-history {
  --shk-yellow: #ffe500;
  --shk-dark: #111315;
  --shk-text: #555b5e;
  --shk-muted: #888d90;
  --shk-line: #d4d7d8;
  --shk-bg: #f4f5f5;
  --shk-white: #ffffff;
  position: relative;
  width: 100%;
}

.shk-history * { box-sizing: border-box; }
.shk-history__timeline { position: relative; }

.shk-history__timeline::before {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 0;
  left: 165px;
  width: 1px;
  background: var(--shk-line);
}

.shk-history__item {
  position: relative;
  display: grid;
  grid-template-columns: 165px minmax(0, 1fr);
  gap: 55px;
  padding-bottom: 80px;
}

.shk-history__item:last-child { padding-bottom: 0 !important; }
.shk-history__meta { position: relative; padding-top: 0; }

.shk-history__year {
  display: block;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.shk-history__dot {
  position: absolute;
  top: 8px;
  right: -6px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--shk-dark);
  box-shadow: 0 0 0 7px var(--shk-bg);
  z-index: 2;
}

.shk-history__content {
  max-width: 820px;
  padding: 40px 44px;
  background: var(--shk-white);
  border: 1px solid #e2e4e5;
}

.shk-history__kicker {
  margin: 0 0 10px;
  color: var(--shk-muted);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.shk-history__content h3 {
  margin: 0 0 18px;
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.shk-history__body p,
.shk-history__content > p {
  margin: 0 0 20px;
  color: var(--shk-text);
  font-size: 16px;
  line-height: 1.75;
}

.shk-history__body p:last-child,
.shk-history__content > p:last-child { margin-bottom: 0; }

.shk-history__item--highlight .shk-history__content {
  border-top: 7px solid var(--shk-yellow);
  box-shadow: 0 18px 45px rgba(0,0,0,0.06);
}

.shk-history__quote {
  margin: 28px 0;
  padding: 22px 26px;
  background: #f3f4f4;
  border-left: 4px solid #c5c9ca;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.55;
}

.shk-history__quote--yellow {
  background: #fff9b7;
  border-left-color: var(--shk-yellow);
}

.shk-history__facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 28px 0;
  padding: 1px;
  background: #dfe2e3;
}

.shk-history__fact {
  display: flex;
  align-items: center;
  min-height: 80px;
  padding: 18px 20px;
  background: #fafafa;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}

.shk-history__item--today .shk-history__content {
  color: #fff;
  background: var(--shk-dark);
  border-color: var(--shk-dark);
}

.shk-history__item--today .shk-history__body p,
.shk-history__item--today .shk-history__content > p { color: #c9cdcf; }
.shk-history__item--today .shk-history__kicker { color: #aeb3b5; }

.shk-history__number {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 12px;
  padding: 16px 20px;
  color: var(--shk-dark);
  background: var(--shk-yellow);
}

.shk-history__number-value {
  font-size: 46px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.05em;
}

.shk-history__number-label {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
}

@media (max-width: 1024px) {
  .shk-history__timeline::before { left: 115px; }
  .shk-history__item { grid-template-columns: 115px minmax(0, 1fr); gap: 35px; }
  .shk-history__year { font-size: 24px; }
  .shk-history__content { padding: 34px; }
}

@media (max-width: 767px) {
  .shk-history__timeline::before { left: 6px; }
  .shk-history__item { display: block; padding-left: 30px; padding-bottom: 50px; }
  .shk-history__meta { padding-bottom: 14px; }
  .shk-history__dot { top: 8px; left: -30px; right: auto; }
  .shk-history__year { font-size: 22px; }
  .shk-history__content { padding: 28px 22px; }
  .shk-history__content h3 { font-size: 24px; }
  .shk-history__body p, .shk-history__content > p { font-size: 15px; }
  .shk-history__quote { padding: 18px 20px; font-size: 16px; }
  .shk-history__facts { grid-template-columns: 1fr; }
  .shk-history__number { width: 100%; }
}
