.ke-kks-entry {
  --ke-navy: #0b1620;
  --ke-orange: #fca311;
  --ke-cream: #fffaf2;
  --ke-cream-deep: #fff6e8;
  --ke-border: rgba(11, 22, 32, 0.10);
  --ke-border-soft: rgba(11, 22, 32, 0.06);
  --ke-text: #0b1620;
  --ke-text-soft: #5f6b76;
  --ke-shadow: 0 14px 34px rgba(11, 22, 32, 0.06);
  --ke-shadow-button: 0 10px 20px rgba(11, 22, 32, 0.10);

  width: 100%;
  max-width: 1120px;
  margin: 20px auto 40px;
  padding: 0;
  color: var(--ke-text);
  font-family: Montserrat, Arial, sans-serif;
}

.ke-kks-entry * {
  box-sizing: border-box;
}

.ke-kks-entry__meta {
  display: inline-block;
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ke-orange);
}

.ke-kks-entry__intro {
  max-width: 760px;
  margin: 0 0 24px;
  font-size: 17px;
  line-height: 1.75;
  color: var(--ke-text-soft);
}

.ke-kks-entry__focus {
  margin: 0 0 24px;
  max-width: 860px;
  padding: 18px 20px;
  border-left: 4px solid var(--ke-orange);
  border-radius: 0 18px 18px 0;
  background: linear-gradient(180deg, #fffdfa 0%, #fff8ee 100%);
  box-shadow: 0 8px 20px rgba(11, 22, 32, 0.04);
}

.ke-kks-entry__focus-label {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ke-orange);
}

.ke-kks-entry__focus-text {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: var(--ke-text);
}

.ke-kks-entry__card {
  margin: 0 0 20px;
  border: 1px solid var(--ke-border);
  border-radius: 24px;
  background: linear-gradient(180deg, #fffdf9 0%, var(--ke-cream) 100%);
  box-shadow: var(--ke-shadow);
  overflow: hidden;
}

.ke-kks-entry__card--download {
  border-top: 4px solid var(--ke-orange);
}

.ke-kks-entry__card--continue {
  background: linear-gradient(180deg, #ffffff 0%, #fffdfa 100%);
}

.ke-kks-entry__card-inner {
  padding: 28px 30px;
}

.ke-kks-entry__eyebrow {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ke-orange);
}

.ke-kks-entry__card-title {
  margin: 0 0 10px;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.22;
  color: var(--ke-navy);
}

.ke-kks-entry__meta-line,
.ke-kks-entry__continue-text {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--ke-text-soft);
}

.ke-kks-entry__actions {
  margin: 0;
}

.ke-kks-entry__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
  box-shadow: var(--ke-shadow-button);
  cursor: pointer;
}

.ke-kks-entry__button:hover,
.ke-kks-entry__button:focus {
  transform: translateY(-1px);
  text-decoration: none;
}

.ke-kks-entry__button:focus {
  outline: 2px solid rgba(252, 163, 17, 0.35);
  outline-offset: 2px;
}

.ke-kks-entry__button--primary {
  background: var(--ke-orange);
  color: var(--ke-navy);
  box-shadow: 0 12px 24px rgba(252, 163, 17, 0.22);
}

.ke-kks-entry__button--primary:hover,
.ke-kks-entry__button--primary:focus {
  background: #f7ab22;
  color: var(--ke-navy);
}

.ke-kks-entry__button--secondary {
  background: var(--ke-navy);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(11, 22, 32, 0.16);
}

.ke-kks-entry__button--secondary:hover,
.ke-kks-entry__button--secondary:focus {
  background: #152330;
  color: #ffffff;
}

.ke-kks-entry__note {
  margin: 6px 0 0;
  font-size: 14px;
  line-height: 1.75;
  color: var(--ke-text-soft);
}

.ke-kks-entry__note a {
  color: var(--ke-orange);
  text-decoration: none;
}

.ke-kks-entry__note a:hover,
.ke-kks-entry__note a:focus {
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .ke-kks-entry {
    margin-top: 18px;
  }

  .ke-kks-entry__card-inner {
    padding: 24px 24px;
  }

  .ke-kks-entry__card-title {
    font-size: 24px;
  }

  .ke-kks-entry__intro {
    font-size: 16px;
  }

  .ke-kks-entry__focus {
    padding: 16px 18px;
  }
}

@media (max-width: 768px) {
  .ke-kks-entry {
    margin: 16px auto 32px;
  }

  .ke-kks-entry__meta {
    margin-bottom: 12px;
    font-size: 11px;
    letter-spacing: 0.12em;
  }

  .ke-kks-entry__intro {
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.7;
  }

  .ke-kks-entry__focus {
    margin-bottom: 20px;
    padding: 14px 16px;
    border-radius: 0 16px 16px 0;
  }

  .ke-kks-entry__focus-label {
    font-size: 10.5px;
  }

  .ke-kks-entry__focus-text {
    font-size: 14px;
    line-height: 1.7;
  }

  .ke-kks-entry__card {
    margin-bottom: 18px;
    border-radius: 20px;
  }

  .ke-kks-entry__card-inner {
    padding: 20px 18px;
  }

  .ke-kks-entry__eyebrow {
    margin-bottom: 8px;
    font-size: 11px;
  }

  .ke-kks-entry__card-title {
    font-size: 22px;
    line-height: 1.25;
  }

  .ke-kks-entry__meta-line,
  .ke-kks-entry__continue-text,
  .ke-kks-entry__note {
    font-size: 14px;
    line-height: 1.7;
  }

  .ke-kks-entry__button {
    width: 100%;
    padding: 14px 18px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .ke-kks-entry__card-title {
    font-size: 20px;
  }

  .ke-kks-entry__intro,
  .ke-kks-entry__meta-line,
  .ke-kks-entry__continue-text,
  .ke-kks-entry__note,
  .ke-kks-entry__focus-text {
    font-size: 13.5px;
  }
}