:root {
  --kca-ink: #1b1e22;
  --kca-navy: #15356c;
  --kca-blue: #245da8;
  --kca-sky: #55c5d5;
  --kca-mint: #bcecf1;
  --kca-paper: #f5f7fa;
  --kca-white: #fff;
  --kca-muted: #6c737d;
  --kca-line: #e4e8ed;
  --kca-dark: #292b2e;
  --kca-max: 1240px;
  --kca-shadow: 0 22px 60px rgba(26, 43, 69, .12);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--kca-ink);
  background: var(--kca-white);
  font-family: Pretendard, "Noto Sans KR", "Apple SD Gothic Neo", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.kca-menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  color: inherit;
  font: inherit;
}

button {
  border: 0;
}

img {
  display: block;
  max-width: 100%;
}

.kca-site {
  min-height: 100vh;
  overflow: clip;
}

.kca-wrap {
  width: min(var(--kca-max), calc(100% - 48px));
  margin-inline: auto;
}

.kca-skip {
  position: fixed;
  z-index: 200;
  top: 10px;
  left: 10px;
  padding: 12px 16px;
  border-radius: 8px;
  color: #fff;
  background: var(--kca-navy);
  transform: translateY(-150%);
  transition: transform .2s ease;
}

.kca-skip:focus {
  transform: translateY(0);
}

.kca-topbar {
  position: relative;
  z-index: 51;
  height: 34px;
  border-bottom: 1px solid #edf0f3;
  color: #737982;
  background: #fafbfc;
  font-size: 11px;
}

.kca-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.kca-topbar-inner > span {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .18em;
}

.kca-toplinks {
  display: flex;
  align-items: center;
  height: 100%;
}

.kca-toplinks a {
  position: relative;
  padding-inline: 12px;
  transition: color .2s ease;
}

.kca-toplinks a:last-child {
  padding-right: 0;
}

.kca-toplinks a + a::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 10px;
  background: #dfe3e7;
  content: "";
  transform: translateY(-50%);
}

.kca-toplinks a:hover {
  color: var(--kca-blue);
}

.kca-header {
  position: sticky;
  z-index: 50;
  top: 0;
  height: 92px;
  border-bottom: 1px solid rgba(224, 228, 233, .86);
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(18px);
  transition: box-shadow .25s ease, height .25s ease;
}

.kca-header.is-scrolled {
  height: 78px;
  box-shadow: 0 12px 35px rgba(21, 42, 70, .08);
}

.kca-header-inner {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr) 170px;
  align-items: center;
  height: 100%;
}

.kca-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
}

.kca-brand-symbol {
  position: relative;
  display: block;
  width: 57px;
  height: 34px;
}

.kca-brand-symbol i,
.kca-brand-symbol b {
  position: absolute;
  display: block;
  height: 12px;
  border-radius: 100%;
  transform: rotate(-15deg);
}

.kca-brand-symbol i {
  top: 7px;
  left: 0;
  width: 48px;
  border-bottom: 9px solid var(--kca-navy);
}

.kca-brand-symbol b {
  right: 0;
  bottom: 2px;
  width: 38px;
  border-bottom: 8px solid var(--kca-sky);
}

.kca-brand-copy {
  display: grid;
  gap: 1px;
}

.kca-brand-copy strong {
  color: var(--kca-navy);
  font-size: 21px;
  font-weight: 900;
  letter-spacing: .07em;
  line-height: 1;
}

.kca-brand-copy small {
  color: #717984;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: -.02em;
}

.kca-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.35vw, 36px);
  height: 100%;
}

.kca-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 100%;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -.035em;
  white-space: nowrap;
}

.kca-nav a::after {
  position: absolute;
  right: 50%;
  bottom: 0;
  left: 50%;
  height: 3px;
  border-radius: 3px 3px 0 0;
  background: var(--kca-sky);
  content: "";
  transition: left .2s ease, right .2s ease;
}

.kca-nav a:hover,
.kca-nav a.is-active {
  color: var(--kca-navy);
}

.kca-nav a:hover::after,
.kca-nav a.is-active::after {
  right: 0;
  left: 0;
}

.kca-header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.kca-campus {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 15px;
  border-radius: 20px;
  color: #173a4a;
  background: var(--kca-mint);
  font-size: 11px;
  font-weight: 800;
}

.kca-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px 9px;
  border: 1px solid var(--kca-line);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}

.kca-menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  border-radius: 3px;
  background: var(--kca-ink);
  transition: transform .2s ease, opacity .2s ease;
}

.kca-menu-backdrop {
  position: fixed;
  z-index: 45;
  inset: 0;
  display: none;
  background: rgba(7, 19, 31, .46);
}

.kca-hero {
  position: relative;
  height: clamp(560px, calc(100svh - 126px), 680px);
  padding-bottom: 70px;
  background: #eef2f7;
}

.kca-hero-slides,
.kca-hero-slide {
  position: absolute;
  inset: 0 0 70px;
}

.kca-hero-slide {
  visibility: hidden;
  overflow: hidden;
  opacity: 0;
  transition: visibility .7s ease, opacity .7s ease;
}

.kca-hero-slide.is-active {
  visibility: visible;
  opacity: 1;
}

.kca-hero-slide:nth-child(2) {
  background: linear-gradient(115deg, #f6f7fb 0%, #eef0f7 54%, #e6edf4 100%);
}

.kca-hero-slide:nth-child(3) {
  background: linear-gradient(115deg, #eff7f8 0%, #f4f7fa 48%, #e7eef7 100%);
}

.kca-hero-grid {
  display: grid;
  grid-template-columns: minmax(400px, .88fr) minmax(520px, 1.12fr);
  align-items: center;
  gap: 46px;
  height: 100%;
}

.kca-hero-copy {
  position: relative;
  z-index: 3;
  padding-bottom: 45px;
}

.kca-kicker {
  margin: 0 0 16px;
  color: var(--kca-blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .2em;
  line-height: 1.3;
}

.kca-hero-copy h1 {
  margin: 0;
  color: #202733;
  font-size: clamp(45px, 4.7vw, 68px);
  font-weight: 400;
  letter-spacing: -.065em;
  line-height: 1.12;
}

.kca-hero-copy h1 em {
  color: var(--kca-navy);
  font-style: normal;
  font-weight: 850;
}

.kca-hero-copy > p:not(.kca-kicker) {
  max-width: 540px;
  margin: 26px 0 0;
  color: #5f6874;
  font-size: 16px;
  line-height: 1.8;
  word-break: keep-all;
}

.kca-hero-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 34px;
}

.kca-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-height: 52px;
  padding: 0 25px;
  border-radius: 28px;
  font-size: 13px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.kca-button:hover {
  transform: translateY(-2px);
}

.kca-button-primary {
  color: #fff;
  background: var(--kca-navy);
  box-shadow: 0 12px 25px rgba(21, 53, 108, .2);
}

.kca-button-primary:hover {
  background: #0f2a5b;
  box-shadow: 0 16px 30px rgba(21, 53, 108, .28);
}

.kca-button-outline {
  border: 1px solid rgba(38, 54, 78, .2);
  background: rgba(255, 255, 255, .75);
}

.kca-button-light {
  color: var(--kca-navy);
  background: #fff;
}

.kca-hero-media {
  position: relative;
  align-self: stretch;
  min-width: 0;
}

.kca-hero-media::after {
  position: absolute;
  right: 4%;
  bottom: 6%;
  width: 72%;
  height: 18%;
  border-radius: 50%;
  background: rgba(70, 89, 118, .16);
  content: "";
  filter: blur(28px);
}

.kca-hero-media img {
  position: absolute;
  z-index: 1;
  right: -5%;
  bottom: 0;
  width: 112%;
  height: 92%;
  object-fit: cover;
  object-position: center;
  border-radius: 0 0 2px 2px;
  mix-blend-mode: multiply;
  transform: translateX(18px) scale(1.02);
  transition: transform 1.1s cubic-bezier(.22, .75, .22, 1);
}

.kca-hero-slide.is-active .kca-hero-media img {
  transform: translateX(0) scale(1);
}

.kca-hero-media-square img {
  right: 2%;
  bottom: 3%;
  width: 86%;
  height: 86%;
  border-radius: 3px;
  object-fit: cover;
  box-shadow: var(--kca-shadow);
  mix-blend-mode: normal;
}

.kca-hero-label {
  position: absolute;
  z-index: 2;
  top: 72px;
  right: 4px;
  color: rgba(21, 53, 108, .32);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .2em;
  line-height: 1.5;
  text-align: right;
}

.kca-slider-controls {
  position: absolute;
  z-index: 6;
  bottom: 94px;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
  transform: translateX(-50%);
}

.kca-slider-dots,
.kca-slider-arrows {
  display: flex;
  align-items: center;
  gap: 10px;
  pointer-events: auto;
}

.kca-slider-dots button {
  width: 24px;
  height: 3px;
  padding: 0;
  border-radius: 3px;
  background: rgba(25, 42, 67, .22);
  cursor: pointer;
  transition: width .2s ease, background .2s ease;
}

.kca-slider-dots button.is-active {
  width: 44px;
  background: var(--kca-navy);
}

.kca-slider-arrows {
  color: #475364;
  font-size: 11px;
}

.kca-slider-arrows button {
  display: grid;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(21, 53, 108, .18);
  border-radius: 50%;
  background: rgba(255, 255, 255, .7);
  cursor: pointer;
  place-items: center;
}

.kca-slider-arrows span {
  min-width: 52px;
  text-align: center;
}

.kca-slider-arrows b {
  color: var(--kca-navy);
}

.kca-quick-wrap {
  position: absolute;
  z-index: 10;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
}

.kca-quick {
  display: grid;
  grid-template-columns: 155px repeat(5, 1fr);
  min-height: 104px;
  overflow: hidden;
  border: 2px solid var(--kca-sky);
  border-radius: 22px;
  background: var(--kca-dark);
  box-shadow: 0 18px 50px rgba(24, 31, 39, .2);
}

.kca-quick-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 34px;
  color: #fff;
  background: var(--kca-sky);
  line-height: .95;
}

.kca-quick-title strong {
  font-size: 21px;
  font-weight: 900;
  letter-spacing: -.05em;
}

.kca-quick-title span {
  margin-top: 4px;
  font-size: 21px;
  font-weight: 900;
  letter-spacing: -.05em;
}

.kca-quick > a {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: rgba(255, 255, 255, .88);
  font-size: 12px;
  font-weight: 700;
  transition: background .2s ease, color .2s ease;
}

.kca-quick > a + a::before {
  position: absolute;
  top: 21px;
  bottom: 21px;
  left: 0;
  width: 1px;
  background: rgba(255, 255, 255, .1);
  content: "";
}

.kca-quick > a:hover {
  color: #fff;
  background: rgba(255, 255, 255, .08);
}

.kca-quick i {
  display: grid;
  width: 31px;
  height: 31px;
  border: 1.7px solid rgba(255, 255, 255, .85);
  border-radius: 50%;
  font-size: 18px;
  font-style: normal;
  line-height: 1;
  place-items: center;
}

.kca-section {
  padding: 120px 0;
}

.kca-curriculum {
  padding-top: 155px;
}

.kca-section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 44px;
}

.kca-section-heading h2,
.kca-panel-heading h2 {
  margin: 0;
  color: #20242a;
  font-size: clamp(34px, 4.2vw, 52px);
  font-weight: 800;
  letter-spacing: -.06em;
  line-height: 1.12;
}

.kca-section-heading > div > p:last-child {
  margin: 14px 0 0;
  color: var(--kca-muted);
  font-size: 15px;
  line-height: 1.7;
}

.kca-section-heading-center {
  justify-content: center;
  text-align: center;
}

.kca-text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 7px;
  border-bottom: 1px solid #aeb5be;
  color: #505862;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.kca-course-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.kca-course-card {
  position: relative;
  min-height: 410px;
  overflow: hidden;
  border-radius: 22px;
  background: #e9edf2;
  box-shadow: 0 16px 45px rgba(27, 42, 61, .09);
}

.kca-course-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s cubic-bezier(.2, .75, .25, 1);
}

.kca-course-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 32, 52, .02) 28%, rgba(11, 28, 49, .86) 100%);
}

.kca-course-number {
  position: absolute;
  top: 22px;
  left: 22px;
  display: grid;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 50%;
  color: #fff;
  background: rgba(14, 35, 59, .2);
  font-size: 11px;
  font-weight: 900;
  backdrop-filter: blur(10px);
  place-items: center;
}

.kca-course-copy {
  position: absolute;
  right: 26px;
  bottom: 27px;
  left: 26px;
  display: grid;
  color: #fff;
}

.kca-course-copy small {
  margin-bottom: 8px;
  color: var(--kca-mint);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .14em;
}

.kca-course-copy strong {
  max-width: calc(100% - 34px);
  font-size: 23px;
  letter-spacing: -.045em;
  line-height: 1.25;
}

.kca-course-copy em {
  display: -webkit-box;
  max-width: calc(100% - 32px);
  margin-top: 9px;
  overflow: hidden;
  color: rgba(255, 255, 255, .74);
  font-size: 12px;
  font-style: normal;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.kca-course-card > b {
  position: absolute;
  right: 25px;
  bottom: 28px;
  color: #fff;
  font-size: 21px;
  transition: transform .2s ease;
}

.kca-course-card:hover img {
  transform: scale(1.045);
}

.kca-course-card:hover > b {
  transform: translateX(4px);
}

.kca-academy {
  background: var(--kca-paper);
}

.kca-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.kca-feature {
  overflow: hidden;
  border: 1px solid var(--kca-line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(27, 42, 61, .06);
}

.kca-feature-image {
  position: relative;
  height: 285px;
  overflow: hidden;
  background: #eaf0f5;
}

.kca-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}

.kca-feature-image span {
  position: absolute;
  right: 17px;
  bottom: 17px;
  display: grid;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #fff;
  background: var(--kca-navy);
  font-size: 10px;
  font-weight: 900;
  place-items: center;
}

.kca-feature > div:last-child {
  padding: 27px 28px 31px;
}

.kca-feature small {
  color: var(--kca-blue);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .16em;
}

.kca-feature h3 {
  margin: 12px 0 10px;
  font-size: 21px;
  letter-spacing: -.045em;
}

.kca-feature p {
  margin: 0;
  color: var(--kca-muted);
  font-size: 13px;
  line-height: 1.7;
}

.kca-feature:hover .kca-feature-image img {
  transform: scale(1.04);
}

.kca-certification {
  position: relative;
  overflow: hidden;
  padding: 118px 0;
  color: #fff;
  background: #142f5c;
}

.kca-certification::before,
.kca-certification::after {
  position: absolute;
  border: 1px solid rgba(112, 208, 220, .16);
  border-radius: 50%;
  content: "";
}

.kca-certification::before {
  top: -330px;
  right: -90px;
  width: 700px;
  height: 700px;
}

.kca-certification::after {
  top: -220px;
  right: 25px;
  width: 480px;
  height: 480px;
}

.kca-cert-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  align-items: center;
  gap: clamp(70px, 10vw, 140px);
}

.kca-cert-copy .kca-kicker {
  color: var(--kca-mint);
}

.kca-cert-copy h2 {
  margin: 0;
  font-size: clamp(38px, 4.5vw, 58px);
  letter-spacing: -.06em;
  line-height: 1.14;
}

.kca-cert-copy > p:not(.kca-kicker) {
  margin: 23px 0 31px;
  color: rgba(255, 255, 255, .68);
  font-size: 14px;
  line-height: 1.85;
  word-break: keep-all;
}

.kca-cert-steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.kca-cert-steps li {
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.kca-cert-steps li:first-child {
  border-top: 1px solid rgba(255, 255, 255, .16);
}

.kca-cert-steps li > span {
  color: var(--kca-mint);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .1em;
}

.kca-cert-steps strong {
  display: block;
  font-size: 18px;
  letter-spacing: -.025em;
}

.kca-cert-steps p {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, .58);
  font-size: 12px;
  line-height: 1.55;
}

.kca-guide {
  background: #fff;
}

.kca-journey {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--kca-line);
  border-bottom: 1px solid var(--kca-line);
  list-style: none;
}

.kca-journey li {
  position: relative;
  min-height: 220px;
  padding: 30px 27px;
}

.kca-journey li + li {
  border-left: 1px solid var(--kca-line);
}

.kca-journey li + li::before {
  position: absolute;
  top: 44px;
  left: -13px;
  display: grid;
  width: 26px;
  height: 26px;
  border: 1px solid var(--kca-line);
  border-radius: 50%;
  color: var(--kca-blue);
  background: #fff;
  content: "›";
  font-size: 19px;
  place-items: center;
}

.kca-journey span {
  color: var(--kca-blue);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .13em;
}

.kca-journey strong {
  display: block;
  margin: 50px 0 12px;
  font-size: 19px;
  letter-spacing: -.04em;
}

.kca-journey p {
  margin: 0;
  color: var(--kca-muted);
  font-size: 12px;
  line-height: 1.65;
}

.kca-community {
  padding-top: 20px;
  background: linear-gradient(#fff 0, #fff 32%, var(--kca-paper) 32%, var(--kca-paper) 100%);
}

.kca-community-grid {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 22px;
}

.kca-notice,
.kca-support {
  border-radius: 22px;
  box-shadow: 0 18px 50px rgba(27, 42, 61, .08);
}

.kca-notice {
  padding: 40px;
  border: 1px solid var(--kca-line);
  background: #fff;
}

.kca-panel-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 26px;
}

.kca-panel-heading h2 {
  font-size: 32px;
}

.kca-panel-heading > a {
  display: grid;
  width: 40px;
  height: 40px;
  border: 1px solid var(--kca-line);
  border-radius: 50%;
  color: var(--kca-blue);
  font-size: 20px;
  place-items: center;
}

.kca-notice > a {
  display: grid;
  grid-template-columns: 78px 1fr 30px;
  align-items: center;
  gap: 12px;
  min-height: 62px;
  border-top: 1px solid var(--kca-line);
}

.kca-notice > a span {
  color: var(--kca-blue);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .12em;
}

.kca-notice > a strong {
  font-size: 14px;
  letter-spacing: -.02em;
}

.kca-notice > a b {
  color: #9ca3ac;
  font-size: 17px;
  transition: transform .2s ease;
}

.kca-notice > a:hover b {
  transform: translateX(4px);
}

.kca-support {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 42px;
  color: #fff;
  background: linear-gradient(145deg, #1a3e77, #142f5c);
}

.kca-support .kca-kicker {
  color: var(--kca-mint);
}

.kca-support h2 {
  margin: 0;
  font-size: 31px;
  letter-spacing: -.05em;
  line-height: 1.25;
}

.kca-support > p:not(.kca-kicker) {
  margin: 17px 0 29px;
  color: rgba(255, 255, 255, .68);
  font-size: 13px;
  line-height: 1.7;
}

.kca-support > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, .32);
  font-size: 20px;
  font-weight: 800;
}

.kca-support small {
  margin-top: 17px;
  color: rgba(255, 255, 255, .5);
  font-size: 10px;
}

.kca-footer {
  padding: 70px 0 27px;
  color: rgba(255, 255, 255, .66);
  background: #23262a;
}

.kca-footer-top {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 80px;
  padding-bottom: 48px;
}

.kca-brand-light .kca-brand-copy strong {
  color: #fff;
}

.kca-brand-light .kca-brand-copy small {
  color: rgba(255, 255, 255, .52);
}

.kca-brand-light .kca-brand-symbol i {
  border-bottom-color: #fff;
}

.kca-footer-brand p {
  max-width: 390px;
  margin: 24px 0 0;
  font-size: 12px;
  line-height: 1.8;
}

.kca-footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.kca-footer-links > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.kca-footer-links strong {
  margin-bottom: 8px;
  color: #fff;
  font-size: 10px;
  letter-spacing: .16em;
}

.kca-footer-links a,
.kca-footer-links span {
  font-size: 11px;
}

.kca-footer-links a:hover {
  color: #fff;
}

.kca-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .11);
  font-size: 9px;
}

.kca-footer-bottom > div {
  display: flex;
  gap: 18px;
}

.kca-top-button {
  position: fixed;
  z-index: 30;
  right: 24px;
  bottom: 24px;
  display: grid;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 50%;
  color: #fff;
  background: rgba(24, 38, 54, .88);
  box-shadow: 0 8px 22px rgba(20, 30, 45, .2);
  font-size: 17px;
  backdrop-filter: blur(10px);
  place-items: center;
}

.kca-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease;
  transition-delay: calc(var(--delay, 0) * 90ms);
}

.kca-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Public course listing. */
.kca-page-hero {
  padding: 88px 0 74px;
  color: #fff;
  background: linear-gradient(120deg, #173968, #245da8);
}

.kca-page-hero .kca-kicker {
  color: var(--kca-mint);
}

.kca-page-hero h1 {
  margin: 0;
  font-size: clamp(42px, 5vw, 65px);
  letter-spacing: -.06em;
}

.kca-page-hero p:last-child {
  max-width: 590px;
  margin: 19px 0 0;
  color: rgba(255, 255, 255, .7);
  font-size: 14px;
  line-height: 1.75;
}

.kca-course-list-section {
  min-height: 520px;
  padding: 80px 0 120px;
  background: var(--kca-paper);
}

.kca-course-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.kca-list-card {
  display: flex;
  flex-direction: column;
  min-height: 330px;
  padding: 28px;
  border: 1px solid var(--kca-line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 13px 35px rgba(27, 42, 61, .06);
  transition: transform .2s ease, box-shadow .2s ease;
}

.kca-list-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 42px rgba(27, 42, 61, .1);
}

.kca-list-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--kca-blue);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .13em;
}

.kca-list-card h2 {
  margin: 52px 0 14px;
  font-size: 24px;
  letter-spacing: -.05em;
  line-height: 1.3;
}

.kca-list-card p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: var(--kca-muted);
  font-size: 13px;
  line-height: 1.75;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.kca-list-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 25px;
  border-top: 1px solid var(--kca-line);
  color: #89919b;
  font-size: 11px;
}

.kca-list-card-bottom strong {
  color: var(--kca-navy);
}

.kca-empty {
  padding: 80px 28px;
  border: 1px dashed #bfc8d1;
  border-radius: 20px;
  background: #fff;
  text-align: center;
}

.kca-empty h2 {
  margin: 0 0 10px;
  font-size: 25px;
}

.kca-empty p {
  margin: 0 0 25px;
  color: var(--kca-muted);
  font-size: 13px;
}

@media (max-width: 1180px) {
  .kca-header-inner {
    grid-template-columns: 205px 1fr 135px;
  }

  .kca-brand-symbol {
    width: 47px;
  }

  .kca-brand-copy strong {
    font-size: 19px;
  }

  .kca-nav {
    gap: 16px;
  }

  .kca-nav a {
    font-size: 12px;
  }

  .kca-campus {
    padding-inline: 12px;
  }

  .kca-hero-grid {
    grid-template-columns: minmax(360px, .9fr) minmax(430px, 1.1fr);
  }

  .kca-quick {
    grid-template-columns: 135px repeat(5, 1fr);
  }
}

@media (max-width: 960px) {
  .kca-topbar-inner > span {
    display: none;
  }

  .kca-topbar-inner {
    justify-content: flex-end;
  }

  .kca-header,
  .kca-header.is-scrolled {
    height: 74px;
  }

  .kca-header-inner {
    display: flex;
    justify-content: space-between;
  }

  .kca-header-actions {
    gap: 8px;
  }

  .kca-campus {
    display: none;
  }

  .kca-menu-toggle {
    display: block;
  }

  .kca-menu-open .kca-menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .kca-menu-open .kca-menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .kca-menu-open .kca-menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .kca-nav {
    position: fixed;
    z-index: 60;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    width: min(360px, 86vw);
    height: 100dvh;
    padding: 96px 30px 30px;
    background: #fff;
    box-shadow: -18px 0 55px rgba(13, 28, 45, .18);
    transform: translateX(110%);
    transition: transform .25s ease;
  }

  .kca-menu-open .kca-nav {
    transform: translateX(0);
  }

  .kca-menu-open .kca-menu-backdrop {
    display: block;
  }

  .kca-nav a {
    justify-content: space-between;
    height: 58px;
    border-bottom: 1px solid var(--kca-line);
    font-size: 16px;
  }

  .kca-nav a::after {
    display: none;
  }

  .kca-hero {
    height: 750px;
  }

  .kca-hero-grid {
    grid-template-columns: .88fr 1.12fr;
    gap: 20px;
  }

  .kca-hero-copy h1 {
    font-size: 46px;
  }

  .kca-hero-copy > p:not(.kca-kicker) {
    font-size: 14px;
  }

  .kca-slider-controls {
    bottom: 90px;
  }

  .kca-quick {
    grid-template-columns: 105px repeat(5, 1fr);
    min-height: 92px;
  }

  .kca-quick-title {
    padding: 0 22px;
  }

  .kca-quick-title strong {
    font-size: 17px;
  }

  .kca-course-grid,
  .kca-feature-grid,
  .kca-course-list-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .kca-cert-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .kca-journey {
    grid-template-columns: repeat(5, minmax(170px, 1fr));
    overflow-x: auto;
  }

  .kca-community-grid {
    grid-template-columns: 1fr;
  }

  .kca-footer-top {
    grid-template-columns: 1fr;
    gap: 45px;
  }
}

@media (max-width: 700px) {
  .kca-wrap {
    width: min(100% - 32px, var(--kca-max));
  }

  .kca-topbar {
    display: none;
  }

  .kca-header,
  .kca-header.is-scrolled {
    top: 0;
    height: 68px;
  }

  .kca-brand {
    gap: 8px;
  }

  .kca-brand-symbol {
    width: 42px;
    height: 28px;
  }

  .kca-brand-symbol i {
    width: 37px;
    border-bottom-width: 7px;
  }

  .kca-brand-symbol b {
    width: 30px;
    border-bottom-width: 6px;
  }

  .kca-brand-copy strong {
    font-size: 18px;
  }

  .kca-brand-copy small {
    font-size: 8px;
  }

  .kca-menu-toggle {
    width: 41px;
    height: 41px;
  }

  .kca-hero {
    height: 780px;
    padding-bottom: 116px;
  }

  .kca-hero-slides,
  .kca-hero-slide {
    inset: 0 0 116px;
  }

  .kca-hero-grid {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }

  .kca-hero-copy {
    z-index: 4;
    flex: 0 0 auto;
    width: calc(100% - 32px);
    margin: 0 auto;
    padding: 55px 0 0;
  }

  .kca-kicker {
    margin-bottom: 12px;
    font-size: 9px;
    letter-spacing: .15em;
  }

  .kca-hero-copy h1 {
    font-size: clamp(37px, 10.8vw, 48px);
    line-height: 1.12;
  }

  .kca-hero-copy > p:not(.kca-kicker) {
    margin-top: 18px;
    font-size: 13px;
    line-height: 1.7;
  }

  .kca-hero-actions {
    gap: 7px;
    margin-top: 23px;
  }

  .kca-button {
    gap: 13px;
    min-height: 46px;
    padding: 0 17px;
    font-size: 11px;
  }

  .kca-hero-media {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 42%;
    opacity: .9;
  }

  .kca-hero-media img,
  .kca-hero-media-square img {
    right: -8%;
    bottom: -3%;
    width: 100%;
    height: 110%;
    border-radius: 0;
    box-shadow: none;
    object-position: center;
  }

  .kca-hero-media::before {
    position: absolute;
    z-index: 2;
    inset: -5px 0 auto;
    height: 80px;
    background: linear-gradient(#eef2f7, rgba(238, 242, 247, 0));
    content: "";
  }

  .kca-hero-slide:nth-child(2) .kca-hero-media::before {
    background: linear-gradient(#f2f4f8, rgba(242, 244, 248, 0));
  }

  .kca-hero-slide:nth-child(3) .kca-hero-media::before {
    background: linear-gradient(#f1f7f8, rgba(241, 247, 248, 0));
  }

  .kca-hero-label {
    display: none;
  }

  .kca-slider-controls {
    bottom: 126px;
  }

  .kca-slider-arrows {
    display: none;
  }

  .kca-quick-wrap {
    bottom: 0;
    width: 100%;
    transform: translate(-50%, 0);
  }

  .kca-quick {
    grid-template-columns: repeat(5, 1fr);
    min-height: 100px;
    border-width: 0;
    border-radius: 0;
  }

  .kca-quick-title {
    display: none;
  }

  .kca-quick > a {
    gap: 6px;
    padding: 12px 3px;
    font-size: 9px;
    text-align: center;
  }

  .kca-quick > a + a::before {
    top: 17px;
    bottom: 17px;
  }

  .kca-quick i {
    width: 28px;
    height: 28px;
    font-size: 15px;
  }

  .kca-section {
    padding: 78px 0;
  }

  .kca-curriculum {
    padding-top: 85px;
  }

  .kca-section-heading {
    align-items: flex-start;
    margin-bottom: 28px;
  }

  .kca-section-heading h2,
  .kca-panel-heading h2 {
    font-size: 34px;
  }

  .kca-section-heading > div > p:last-child {
    font-size: 12px;
  }

  .kca-text-link {
    display: none;
  }

  .kca-course-grid,
  .kca-feature-grid,
  .kca-course-list-grid {
    grid-template-columns: 1fr;
  }

  .kca-course-card {
    min-height: 390px;
  }

  .kca-course-copy strong {
    font-size: 22px;
  }

  .kca-feature-image {
    height: 255px;
  }

  .kca-certification {
    padding: 78px 0;
  }

  .kca-cert-copy h2 {
    font-size: 38px;
  }

  .kca-cert-steps li {
    grid-template-columns: 43px 1fr;
  }

  .kca-community {
    padding-top: 10px;
  }

  .kca-notice,
  .kca-support {
    padding: 27px 22px;
    border-radius: 17px;
  }

  .kca-notice > a {
    grid-template-columns: 57px 1fr 20px;
  }

  .kca-notice > a strong {
    font-size: 12px;
  }

  .kca-support h2 {
    font-size: 28px;
  }

  .kca-footer {
    padding-top: 55px;
  }

  .kca-footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .kca-footer-links > div:last-child {
    grid-column: 1 / -1;
  }

  .kca-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .kca-top-button {
    right: 14px;
    bottom: 14px;
    width: 40px;
    height: 40px;
  }

  .kca-page-hero {
    padding: 60px 0 55px;
  }

  .kca-course-list-section {
    padding: 55px 0 80px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }

  .kca-reveal {
    opacity: 1;
    transform: none;
  }
}

/* Reference-aligned two-level header and full-bleed hero. */
.kca-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 120px;
  border-bottom: 0;
  background: transparent;
  backdrop-filter: none;
}

.kca-header.is-scrolled {
  height: 83px;
  border-bottom: 1px solid rgba(224, 228, 233, .88);
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 10px 30px rgba(21, 42, 70, .08);
  backdrop-filter: blur(16px);
}

.kca-header-frame {
  width: 100%;
  height: 100%;
  padding: 0 4vw 18px;
}

.kca-header-top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 57px;
}

.kca-header-caption {
  position: absolute;
  top: 20px;
  left: 0;
  color: rgba(26, 34, 44, .55);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .16em;
}

.kca-header-account {
  position: absolute;
  top: 18px;
  right: 0;
  display: flex;
  gap: 16px;
  color: #42484f;
  font-size: 11px;
}

.kca-header-account a:hover {
  color: #00aebd;
}

.kca-header .kca-brand {
  gap: 9px;
}

.kca-header .kca-brand-symbol {
  width: 52px;
  height: 30px;
}

.kca-header .kca-brand-copy strong {
  font-size: 20px;
}

.kca-header .kca-brand-copy small {
  font-size: 8px;
}

.kca-header-bottom {
  position: relative;
  display: grid;
  grid-template-columns: minmax(235px, .72fr) minmax(560px, 1.7fr) minmax(265px, .8fr);
  align-items: center;
  gap: 24px;
  height: 45px;
}

.kca-track-tabs,
.kca-campus-tabs {
  display: flex;
  align-items: center;
  gap: 9px;
}

.kca-track-tabs a,
.kca-campus-tabs a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 29px;
  padding: 0 13px;
  border-radius: 8px;
  color: #22272c;
  background: rgba(245, 245, 245, .86);
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
  transition: color .2s ease, background .2s ease;
}

.kca-track-tabs a:hover,
.kca-campus-tabs a:hover {
  background: #e9f2f4;
}

.kca-track-tabs a.is-active,
.kca-campus-tabs a.is-active {
  background: #79e0e7;
}

.kca-campus-tabs {
  justify-content: flex-end;
}

.kca-header .kca-nav {
  gap: clamp(18px, 2vw, 34px);
  height: 45px;
}

.kca-header .kca-nav a {
  height: 45px;
  font-size: 13px;
}

.kca-header .kca-nav a::after {
  bottom: 1px;
  height: 2px;
  background: #00c4d3;
}

.kca-header.is-scrolled .kca-header-top {
  display: none;
}

.kca-header.is-scrolled .kca-header-frame {
  padding-bottom: 0;
}

.kca-header.is-scrolled .kca-header-bottom {
  height: 83px;
}

.kca-hero {
  height: 830px;
  padding: 0;
  background: #eef3f7;
}

.kca-hero-slides,
.kca-hero-slide {
  inset: 0;
}

.kca-hero-grid {
  position: relative;
  display: block;
  width: 100%;
  max-width: none;
  height: 100%;
}

.kca-hero-copy {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  width: min(860px, 82vw);
  padding: 16px 0 0;
  text-align: center;
  transform: translate(-50%, calc(-50% - 40px));
}

.kca-hero-copy h1 {
  font-size: clamp(52px, 5.2vw, 76px);
  line-height: 1.08;
  color: #fff;
  text-shadow: 0 4px 22px rgba(0, 0, 0, .42);
}

.kca-hero-copy h1 em {
  color: #fff;
  text-shadow: 0 4px 22px rgba(0, 0, 0, .42);
}

.kca-hero-copy .kca-kicker {
  color: #fff;
  text-shadow: 0 1px 12px rgba(0, 0, 0, .42);
}

.kca-hero-copy > p:not(.kca-kicker) {
  max-width: 680px;
  margin-right: auto;
  margin-left: auto;
  color: rgba(255, 255, 255, .96);
  font-size: 15px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .45);
}

.kca-hero-actions {
  justify-content: center;
}

.kca-hero-media,
.kca-hero-media-square {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
}

.kca-hero-media::before {
  position: absolute;
  z-index: 2;
  inset: 0;
  background: rgba(7, 19, 31, .14);
  content: "";
}

.kca-hero-media::after {
  display: none;
}

.kca-hero-media img,
.kca-hero-media-square img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  border-radius: 0;
  box-shadow: none;
  object-fit: cover;
  object-position: center;
  mix-blend-mode: normal;
  transform: scale(1.025);
  transition: transform 1.1s cubic-bezier(.22, .75, .22, 1);
}

.kca-hero-slide.is-active .kca-hero-media img {
  transform: scale(1);
}

.kca-hero-label {
  z-index: 3;
  top: 170px;
  right: 4.5vw;
}

.kca-slider-controls {
  bottom: 145px;
  left: 7vw;
  width: 410px;
  margin: 0;
  justify-content: flex-start;
  gap: 34px;
  transform: none;
}

.kca-slider-dots {
  width: 190px;
}

.kca-slider-dots button {
  flex: 1;
  width: auto;
  height: 2px;
  border-radius: 0;
}

.kca-slider-dots button.is-active {
  width: auto;
  background: #173968;
}

.kca-slider-arrows button {
  width: 43px;
  height: 43px;
  background: rgba(255, 255, 255, .48);
}

.kca-quick-wrap {
  position: fixed;
  z-index: 1000;
  bottom: 30px;
  left: 50%;
  width: min(1120px, calc(100vw - 48px));
  transform: translateX(-50%);
}

.kca-quick {
  grid-template-columns: 160px repeat(5, minmax(0, 1fr));
  width: 100%;
  min-height: 106px;
  border: 0;
  border-radius: 20px;
  box-shadow: 0 14px 36px rgba(22, 27, 34, .22);
}

.kca-quick-title {
  align-items: center;
  padding: 0 20px;
  border-radius: 20px 0 0 20px;
  background: #00c4d3;
  text-align: center;
}

.kca-quick > a {
  gap: 8px;
  padding: 16px 10px;
  font-size: 13px;
  text-align: center;
}

.kca-quick-icon {
  display: block;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.kca-quick > a + a::before {
  display: none;
}

.kca-curriculum {
  padding-top: 120px;
}

@media (max-width: 1300px) and (min-width: 1101px) {
  .kca-header-frame {
    padding-inline: 3vw;
  }

  .kca-header-bottom {
    grid-template-columns: 220px minmax(500px, 1fr) 245px;
    gap: 15px;
  }

  .kca-header .kca-nav {
    gap: 17px;
  }

  .kca-header .kca-nav a {
    font-size: 12px;
  }

  .kca-track-tabs a,
  .kca-campus-tabs a {
    padding-inline: 10px;
    font-size: 10px;
  }
}

@media (max-width: 1100px) {
  .kca-header,
  .kca-header.is-scrolled {
    height: 72px;
    border-bottom: 1px solid rgba(224, 228, 233, .72);
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(14px);
  }

  .kca-header-frame {
    padding: 0 20px;
  }

  .kca-header-top,
  .kca-header.is-scrolled .kca-header-top {
    display: flex;
    justify-content: space-between;
    height: 72px;
  }

  .kca-header-caption,
  .kca-header-account,
  .kca-header-bottom > .kca-track-tabs,
  .kca-header-bottom > .kca-campus-tabs {
    display: none;
  }

  .kca-header .kca-brand {
    position: static;
  }

  .kca-header .kca-menu-toggle {
    position: relative;
    z-index: 70;
    display: block;
  }

  .kca-header-bottom {
    position: static;
    display: block;
    height: 0;
  }

  .kca-header.is-scrolled .kca-header-bottom {
    height: 0;
  }

  .kca-header .kca-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    width: min(370px, 88vw);
    height: 100dvh;
    padding: 95px 30px 30px;
  }

  .kca-header .kca-nav a {
    height: 58px;
    font-size: 16px;
  }

  .kca-hero {
    height: 760px;
  }

  .kca-hero-copy {
    top: 45%;
    left: 50%;
    width: min(760px, 86vw);
    text-align: center;
    transform: translate(-50%, calc(-50% - 30px));
  }

  .kca-hero-copy h1 {
    font-size: 50px;
  }

  .kca-slider-controls {
    bottom: 130px;
    left: 5vw;
  }

  .kca-quick-wrap {
    bottom: 18px;
    width: calc(100vw - 24px);
  }

  .kca-quick {
    grid-template-columns: 105px repeat(5, 1fr);
    min-height: 88px;
  }

  .kca-quick-title {
    padding: 0 24px;
  }

  .kca-quick > a {
    font-size: 11px;
  }
}

/* Desktop header navigation: enlarge the navigation controls without changing the logo. */
@media (min-width: 1101px) {
  .kca-header .kca-brand {
    transform: translateY(5px);
  }

  .kca-header-account {
    gap: 19px;
    font-size: 13.2px;
  }

  .kca-header-bottom {
    grid-template-columns: minmax(235px, .72fr) minmax(500px, 1.7fr) minmax(270px, .8fr);
  }

  .kca-track-tabs,
  .kca-campus-tabs {
    gap: 11px;
  }

  .kca-track-tabs a,
  .kca-campus-tabs a {
    min-height: 35px;
    padding-inline: 16px;
    border-radius: 10px;
    font-size: 13.2px;
  }

  .kca-header .kca-nav {
    gap: clamp(20px, 2.4vw, 41px);
  }

  .kca-header .kca-nav a {
    font-size: 15.6px;
  }
}

@media (max-width: 700px) {
  .kca-header,
  .kca-header.is-scrolled,
  .kca-header-top {
    height: 66px;
  }

  .kca-header-frame {
    padding-inline: 16px;
  }

  .kca-hero {
    height: 720px;
    min-height: 0;
    padding: 0;
  }

  .kca-hero-slides,
  .kca-hero-slide {
    inset: 0;
  }

  .kca-hero-grid {
    display: block;
    width: 100%;
  }

  .kca-hero-copy {
    top: 46%;
    left: 50%;
    width: calc(100% - 40px);
    margin: 0;
    padding: 0;
    text-align: center;
    transform: translate(-50%, -50%);
  }

  .kca-hero-copy h1 {
    max-width: 350px;
    margin-right: auto;
    margin-left: auto;
    font-size: clamp(38px, 11vw, 48px);
  }

  .kca-hero-copy > p:not(.kca-kicker) {
    max-width: 345px;
    margin-right: auto;
    margin-left: auto;
    font-size: 12px;
  }

  .kca-hero-media,
  .kca-hero-media-square {
    inset: 0;
    height: 100%;
    opacity: 1;
  }

  .kca-hero-media::before {
    inset: 0;
    height: auto;
    background: rgba(7, 19, 31, .18);
  }

  .kca-hero-media img,
  .kca-hero-media-square img {
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    border-radius: 0;
    object-fit: cover;
    object-position: 68% center;
  }

  /* Use the same centered focal point as desktop for the second and third slides. */
  .kca-hero-slide:nth-child(2) .kca-hero-media img,
  .kca-hero-slide:nth-child(3) .kca-hero-media img {
    object-position: center center;
  }

  .kca-hero-media::before {
    background: rgba(7, 19, 31, .18);
  }

  .kca-hero-actions {
    margin-top: 21px;
  }

  .kca-slider-controls {
    bottom: 98px;
    left: 20px;
    width: 190px;
  }

  .kca-slider-dots {
    width: 155px;
  }

  .kca-slider-arrows {
    display: none;
  }

  .kca-quick-wrap {
    bottom: 8px;
    width: calc(100vw - 12px);
  }

  .kca-quick {
    grid-template-columns: repeat(5, 1fr);
    min-height: 78px;
    overflow: hidden;
    border-radius: 15px;
  }

  .kca-quick-title {
    display: none;
  }

  .kca-quick > a {
    gap: 4px;
    padding: 8px 2px;
    font-size: 8px;
  }

  .kca-quick i {
    width: 27px;
    height: 27px;
    font-size: 18px;
  }

  .kca-quick-icon {
    width: 25px;
    height: 25px;
    stroke-width: 1.8;
  }
}

/* Keep the hero artwork at the back and use a light black veil for readability. */
.kca-hero-media,
.kca-hero-media-square {
  z-index: 1;
}

.kca-hero-media::before {
  background: rgba(0, 0, 0, .30);
}

.kca-header-caption,
.kca-header-account,
.kca-header-account a {
  color: #fff;
  text-shadow: 0 1px 7px rgba(0, 0, 0, .45);
}

.kca-header-account a:hover {
  color: rgba(255, 255, 255, .78);
}

.kca-header:not(.is-scrolled) .kca-nav a,
.kca-header:not(.is-scrolled) .kca-nav a:hover,
.kca-header:not(.is-scrolled) .kca-nav a.is-active {
  color: #fff;
  text-shadow: 0 1px 7px rgba(0, 0, 0, .48);
}

.kca-header.is-scrolled .kca-nav a,
.kca-header.is-scrolled .kca-nav a:hover,
.kca-header.is-scrolled .kca-nav a.is-active {
  color: var(--kca-ink);
  text-shadow: none;
}

/* Place the previous/next controls directly below the hero call-to-action. */
@media (min-width: 1101px) {
  .kca-slider-controls {
    top: 0;
    bottom: auto;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    display: block;
    transform: none;
  }

  .kca-slider-dots {
    position: absolute;
    bottom: 145px;
    left: 7vw;
  }

  .kca-slider-arrows {
    position: absolute;
    top: calc(50% + 125px);
    left: 50%;
    transform: translateX(-50%);
  }
}

/* Reserve space below the footer so the fixed QUICK MENU cannot cover footer content. */
.kca-footer {
  padding-bottom: 180px;
}

@media (max-width: 1100px) {
  .kca-footer {
    padding-bottom: 130px;
  }
}

@media (max-width: 700px) {
  .kca-footer {
    padding-bottom: 120px;
  }
}
