:root {
  --ks-blue: #1d84c3;
  --ks-blue-dark: #055a8e;
  --ks-blue-soft: #e8f4f8;
  --ks-text: #3b3b3b;
  --ks-muted: #555;
  --ks-line: #e5e6e9;
  --ks-page: #f0f2f5;
  --ks-panel: #fff;
  --ks-panel-soft: #f8fafc;
  --ks-ink: #203d70;
  --ks-aqua: #7fb6c8;
  --ks-steel: #667ba8;
  --ks-leaf: #8ca8a0;
  --ks-shadow: 0 14px 34px rgba(31, 52, 74, .1);
  --ks-footer: #222;
  --ks-width: 1200px;
  --ks-font: Merriweather, Georgia, "Times New Roman", serif;
  --ks-ui: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--ks-page);
}

body {
  min-height: 100%;
  margin: 0;
  background:
    linear-gradient(90deg, rgba(29, 132, 195, .06) 1px, transparent 1px) 0 0 / 46px 46px,
    linear-gradient(180deg, rgba(255, 255, 255, .75), rgba(240, 242, 245, .95)),
    var(--ks-page);
  color: var(--ks-text);
  font-family: var(--ks-font);
  font-size: 16px;
  line-height: 1.6;
}

a {
  color: var(--ks-blue);
  text-decoration: none;
}

a:hover,
a:focus {
  color: var(--ks-blue-dark);
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
  border: 0;
}

button,
input,
select,
textarea {
  font: inherit;
}

.ks-body {
  background: var(--ks-page);
}

.ks-skip-link {
  position: absolute;
  z-index: 1000;
  top: 8px;
  left: 8px;
  transform: translateY(-140%);
  border-radius: 6px;
  background: #111;
  color: #fff;
  font-family: var(--ks-ui);
  font-size: 14px;
  padding: 8px 12px;
}

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

.ks-page {
  width: 100%;
  max-width: var(--ks-width);
  min-height: 100vh;
  margin: 0 auto;
  overflow: hidden;
  background: var(--ks-panel);
  box-shadow: 0 0 28px rgba(0, 0, 0, .08);
}

.ks-header {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #e7eaee;
  background: #fff;
  padding: 18px 22px 17px;
}

.ks-header::after {
  display: none;
}

.ks-brand {
  position: relative;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  color: var(--ks-ink);
  text-decoration: none;
}

.ks-brand__logo {
  display: block;
  width: 250px;
  max-width: min(250px, 70vw);
}

.ks-brand__mark {
  display: inline-flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  border: 3px double #31569a;
  color: #31569a;
  font-family: var(--ks-font);
  font-size: 35px;
  font-weight: 700;
  line-height: 1;
}

.ks-brand__text {
  position: relative;
  display: block;
  color: var(--ks-ink);
  font-family: var(--ks-font);
  line-height: .88;
  text-transform: none;
}

.ks-brand__badge {
  display: none;
  width: 38px;
  height: 62px;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  align-items: stretch;
  padding: 4px 0 3px;
}

.ks-brand__badge span {
  display: block;
  border-radius: 3px 3px 2px 2px;
  background: var(--ks-blue);
  box-shadow: inset 0 -8px 0 rgba(255, 255, 255, .2);
}

.ks-brand__badge span:nth-child(2) {
  margin-top: 8px;
  background: var(--ks-aqua);
}

.ks-brand__badge span:nth-child(3) {
  margin-top: 3px;
  background: var(--ks-steel);
}

.ks-brand__word {
  display: block;
  letter-spacing: 0;
}

.ks-brand__word--top {
  color: #5f6670;
  font-size: 25px;
  font-style: italic;
  font-weight: 400;
}

.ks-brand__word--bottom {
  color: #1d2a3f;
  font-size: 42px;
  font-weight: 700;
}

.ks-brand__text::after {
  display: none;
}

.ks-brand__domain {
  color: #5f6670;
  font-family: var(--ks-ui);
  font-size: 15px;
  font-weight: 700;
  margin-left: 4px;
}

.ks-brand:hover,
.ks-brand:focus {
  color: var(--ks-ink);
  text-decoration: none;
}

.ks-brand__slogan {
  flex: 1 1 360px;
  max-width: 610px;
  margin: 10px 0 0;
  color: var(--ks-muted);
  font-size: 14px;
  line-height: 1.55;
}

.ks-highlight {
  background: #fff;
}

.ks-slideshow {
  width: 100%;
  overflow: hidden;
  background: #fff;
}

.ks-slideshow__track {
  position: relative;
  width: 100%;
  height: 330px;
}

.ks-slideshow__slide {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  opacity: 0;
  animation: ksSlide 24s infinite;
}

.ks-slideshow__slide:nth-child(1) {
  animation-delay: 0s;
}

.ks-slideshow__slide:nth-child(2) {
  animation-delay: 6s;
}

.ks-slideshow__slide:nth-child(3) {
  animation-delay: 12s;
}

.ks-slideshow__slide:nth-child(4) {
  animation-delay: 18s;
}

.ks-slideshow__image {
  display: block;
  width: 100%;
  height: 330px;
  object-fit: cover;
}

@keyframes ksSlide {
  0%,
  21% {
    z-index: 2;
    opacity: 1;
  }

  25%,
  100% {
    z-index: 1;
    opacity: 0;
  }
}

.ks-main {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
  padding: 20px;
}

.ks-main__content {
  flex: 1 1 0;
  min-width: 0;
}

.ks-body--home .ks-main {
  display: block;
}

.ks-contest-list {
  width: 100%;
}

.ks-contest-list__grid,
.ks-listing__grid,
.ks-related__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.ks-contest-card {
  position: relative;
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
  min-width: 306px;
  border: 1px solid var(--ks-line);
  border-radius: 8px;
  background: #fff;
  text-align: center;
  box-shadow: 0 10px 22px rgba(31, 52, 74, .07);
  transition: box-shadow .2s ease, transform .2s ease;
}

.ks-contest-card::after {
  display: none;
}

.ks-contest-card:hover {
  box-shadow: var(--ks-shadow);
  transform: translateY(-4px);
}

.ks-contest-card__title {
  position: relative;
  display: flex;
  min-height: 132px;
  align-items: center;
  justify-content: center;
  margin: 0;
  background: linear-gradient(135deg, var(--ks-blue-dark), var(--ks-blue));
  color: #fff;
  font-family: var(--ks-ui);
  font-size: 18px;
  font-weight: bold;
  line-height: 1.45;
  padding: 30px 22px;
}

.ks-contest-card__link {
  color: #fff;
}

.ks-contest-card__link:hover,
.ks-contest-card__link:focus {
  color: var(--ks-blue-soft);
  text-decoration: none;
}

.ks-contest-card__media {
  display: flex;
  width: 100%;
  flex: 1;
  align-items: center;
  justify-content: center;
  margin: 0;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .86), rgba(248, 250, 252, .94)),
    repeating-linear-gradient(90deg, rgba(29, 132, 195, .07) 0 1px, transparent 1px 18px);
  padding: 20px;
}

.ks-contest-card__image {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 220px;
  object-fit: contain;
  border-radius: 4px;
}

.ks-contest-card__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 10px;
  justify-content: flex-start;
  padding: 14px;
  color: var(--ks-muted);
  font-size: 14px;
  line-height: 1.5;
}

.ks-contest-card__category {
  align-self: center;
  border-radius: 999px;
  background: var(--ks-blue-soft);
  padding: 5px 10px;
}

.ks-contest-card__body p {
  margin: 0;
}

.ks-contest-card__category,
.ks-kicker,
.ks-listing-title__eyebrow,
.ks-detail__pill,
.ks-teaser__eyebrow,
.ks-interaction__eyebrow,
.ks-company-card__eyebrow,
.ks-related__eyebrow,
.ks-empty-state__eyebrow,
.ks-event__eyebrow {
  color: var(--ks-blue-dark);
  font-family: var(--ks-ui);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
}

.ks-listing {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 290px;
  gap: 26px;
  align-items: start;
}

.ks-commercial-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
}

.ks-commercial-layout > .ks-mediakit {
  flex: 1 1 0;
  min-width: 0;
}

.ks-listing-title {
  position: relative;
  overflow: hidden;
  margin: 0 0 18px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--ks-blue-dark), var(--ks-blue));
  color: #fff;
  padding: 27px 24px;
  text-align: center;
}

.ks-listing-title::after {
  content: "";
  position: absolute;
  right: 20px;
  bottom: 12px;
  width: 132px;
  height: 12px;
  border-top: 2px solid rgba(255, 255, 255, .32);
  border-bottom: 2px solid rgba(255, 255, 255, .2);
}

.ks-listing-title__eyebrow {
  display: block;
  margin: 0 0 6px;
  color: #d9f0ff;
}

.ks-listing-title__heading {
  margin: 0;
  color: #fff;
  font-size: 28px;
  line-height: 1.25;
}

.ks-pagination {
  clear: both;
  margin: 30px 0;
  text-align: center;
}

.ks-pagination a,
.ks-button {
  display: block;
  width: 100%;
  max-width: 250px;
  margin: 15px auto;
  border: 0;
  border-radius: 6px;
  background: var(--ks-blue);
  color: #fff;
  cursor: pointer;
  font-family: var(--ks-ui);
  font-size: 16px;
  font-weight: bold;
  padding: 12px 20px;
  text-align: center;
  text-shadow: none;
  transition: background-color .2s ease, transform .2s ease;
}

.ks-pagination a:hover,
.ks-pagination a:focus,
.ks-button:hover,
.ks-button:focus {
  background: var(--ks-blue-dark);
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
}

.ks-button:disabled {
  cursor: not-allowed;
  opacity: .6;
}

.ks-detail {
  background: #fff;
}

.ks-detail__header {
  overflow: hidden;
  border-radius: 0;
  background: #fff;
}

.ks-detail__title {
  margin: 0;
  color: #1d2a3f;
  font-size: 30px;
  line-height: 1.3;
  padding: 34px 30px 18px;
  text-align: center;
}

.ks-detail__hero {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 28px;
  border: 0;
  border-top: 0;
  border-radius: 0;
  background: #fff;
  padding: 18px 20px 34px;
  box-shadow: none;
}

.ks-detail__hero-image {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 400px;
  object-fit: contain;
  border-radius: 3px;
  box-shadow: none;
}

.ks-detail__meta {
  display: table;
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--ks-line);
  border-collapse: collapse;
  border-radius: 8px;
  background: #fff;
  margin: 20px 0;
}

.ks-detail__meta td {
  border-bottom: 1px solid var(--ks-line);
  padding: 15px;
  vertical-align: middle;
}

.ks-detail__meta tr:last-child td {
  border-bottom: 0;
}

.ks-detail__pill {
  display: inline-flex;
  align-items: center;
  border-radius: 6px;
  background: var(--ks-blue-soft);
  color: var(--ks-blue);
  font-weight: bold;
  padding: 5px 15px;
}

.ks-detail__body {
  padding: 20px 0 0;
}

.ks-detail__text {
  color: var(--ks-text);
  font-size: 17px;
}

.ks-detail__text p {
  margin: 0 0 1em;
}

.ks-detail__text h2,
.ks-detail__text h3 {
  color: #2f2f2f;
  line-height: 1.3;
}

.ks-detail__figure {
  margin: 24px 0;
  text-align: center;
}

.ks-detail__image {
  width: auto;
  max-width: 100%;
  max-height: 400px;
  object-fit: contain;
  border-radius: 3px;
  box-shadow: none;
}

.ks-partner,
.ks-winners,
.ks-interaction,
.ks-company-card,
.ks-event {
  position: relative;
  border: 1px solid #e1e4e8;
  border-radius: 8px;
  background: #f8f9fa;
  margin: 30px 0;
  padding: 30px;
}

.ks-partner::before,
.ks-winners::before,
.ks-interaction::before,
.ks-company-card::before,
.ks-event::before {
  content: "";
  position: absolute;
  top: -1px;
  right: 18px;
  left: 18px;
  height: 4px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, var(--ks-blue), var(--ks-aqua));
}

.ks-winners {
  text-align: center;
}

.ks-partner__title,
.ks-winners__title,
.ks-interaction__title {
  margin: 0 0 20px;
  color: var(--ks-blue);
  font-size: 22px;
  font-weight: bold;
  line-height: 1.3;
}

.ks-partner__link {
  margin-top: 6px;
}

.ks-winners__ended,
.ks-winners__note {
  margin: 0 0 12px;
  color: var(--ks-muted);
}

.ks-winners__list {
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
}

.ks-winners__item {
  border-bottom: 1px dashed #ccc;
  color: #333;
  font-size: 16px;
  padding: 10px 0;
}

.ks-winners__item:last-child {
  border-bottom: 0;
}

.ks-winners__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.ks-winners__stat {
  border-radius: 6px;
  background: #fff;
  padding: 12px;
}

.ks-winners__stat dt {
  color: var(--ks-muted);
  font-family: var(--ks-ui);
  font-size: 12px;
  font-weight: 700;
}

.ks-winners__stat dd {
  margin: 2px 0 0;
  color: #2b2b2b;
  font-size: 20px;
  font-weight: 700;
}

.ks-sidebar {
  flex: 0 0 310px;
  width: 310px;
}

.ks-sidebar__block {
  position: relative;
  background: #fff;
  margin: 0 0 30px;
  padding: 0;
}

.ks-sidebar__block--placement,
.ks-sidebar__block--contests,
.ks-sidebar__block--editorial {
  border: 1px solid var(--ks-line);
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(31, 52, 74, .06);
  padding: 18px;
}

.ks-sidebar__title {
  margin: 0 0 15px;
  border-bottom: 2px solid var(--ks-blue);
  color: #333;
  font-family: var(--ks-ui);
  font-size: 18px;
  letter-spacing: 0;
  line-height: 1.3;
  padding-bottom: 8px;
  text-transform: uppercase;
}

.ks-sidebar__title::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 18px;
  margin: 0 8px -3px 0;
  border-radius: 2px;
  background: var(--ks-aqua);
}

.ks-sidebar__link {
  display: block;
  border-top: 1px solid var(--ks-line);
  color: var(--ks-text);
  font-size: 14px;
  line-height: 1.4;
  padding: 9px 0;
}

.ks-sidebar__link:first-of-type {
  border-top: 0;
}

.ks-teaser {
  display: block;
  border-top: 1px solid var(--ks-line);
  color: var(--ks-text);
  padding: 12px 0;
  transition: color .2s ease, transform .2s ease;
}

.ks-teaser:hover,
.ks-teaser:focus {
  transform: translateX(3px);
  text-decoration: none;
}

.ks-teaser:first-of-type {
  border-top: 0;
}

.ks-teaser__media {
  display: flex;
  min-height: 230px;
  align-items: center;
  justify-content: center;
  margin: 0 0 12px;
  border-radius: 6px;
  background: #f8fbfd;
  padding: 10px;
}

.ks-teaser__image {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 250px;
  border-radius: 6px;
  object-fit: contain;
}

.ks-teaser__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 4px;
}

.ks-teaser__title {
  display: block;
  color: #2f2f2f;
  font-size: 15px;
  line-height: 1.35;
}

.ks-teaser__question {
  display: block;
  margin-top: 4px;
  color: var(--ks-muted);
  font-size: 13px;
  line-height: 1.4;
}

.ks-teaser--empty {
  border-top: 0;
}

.ks-feature-slot {
  display: flex;
  min-height: 160px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-direction: column;
  border: 1px dashed #94abc0;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(29, 132, 195, .11), rgba(127, 182, 200, .12)),
    repeating-linear-gradient(-45deg, rgba(255, 255, 255, .85) 0 8px, rgba(247, 250, 252, .85) 8px 16px);
  color: var(--ks-muted);
  font-family: var(--ks-ui);
  gap: 4px;
  text-align: center;
}

.ks-feature-slot img {
  display: block;
  width: 100%;
  height: auto;
}

.ks-feature-slot__label,
.ks-feature-slot__note {
  font-size: 12px;
}

.ks-feature-slot__size {
  color: var(--ks-ink);
  font-size: 20px;
  font-weight: 700;
}

.ks-interaction__form {
  display: grid;
  gap: 12px;
}

.ks-interaction__form--grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ks-choice {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  border: 1px solid var(--ks-line);
  border-radius: 6px;
  background: #fff;
  padding: 10px 12px;
}

.ks-choice--full {
  grid-column: 1 / -1;
}

.ks-input {
  min-width: 0;
  width: 100%;
  border: 1px solid #cfd7df;
  border-radius: 6px;
  background: #fff;
  padding: 10px 12px;
}

.ks-hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.ks-poll-results {
  display: grid;
  gap: 6px;
  margin-top: 14px;
}

.ks-poll-results__row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-radius: 6px;
  background: #fff;
  padding: 8px 10px;
}

.ks-flash,
.ks-notice-page,
.ks-empty-state {
  border: 1px solid var(--ks-line);
  border-radius: 8px;
  background: var(--ks-panel-soft);
  margin: 0 0 18px;
  padding: 16px;
}

.ks-empty-state--page,
.ks-notice-page {
  text-align: center;
}

.ks-empty-state h1,
.ks-notice-page h1 {
  margin: 0 0 8px;
}

.ks-related {
  margin-top: 26px;
}

.ks-related__eyebrow {
  display: block;
  margin: 0 0 12px;
}

.ks-article-placement {
  margin: 24px 0;
}

.ks-company-card__summary {
  display: grid;
  gap: 6px;
}

.ks-company-card__name {
  font-size: 20px;
}

.ks-company-card__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.ks-company-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  background: #fff;
  padding: 7px 10px;
}

.ks-newsletter {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--ks-line);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(127, 182, 200, .16), transparent 36%),
    #f8fbfd;
  padding: 18px;
  box-shadow: 0 8px 20px rgba(31, 52, 74, .06);
}

.ks-newsletter::before {
  content: "";
  position: absolute;
  top: 0;
  right: 20px;
  width: 22px;
  height: 42px;
  border-radius: 0 0 5px 5px;
  background: var(--ks-steel);
}

.ks-newsletter__kicker,
.ks-partner-pitch__kicker,
.ks-mediakit__kicker {
  margin: 0 0 8px;
  color: var(--ks-blue-dark);
  font-family: var(--ks-ui);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
}

.ks-newsletter > *,
.ks-partner-pitch > * {
  position: relative;
}

.ks-newsletter__title {
  margin: 0 0 8px;
  color: #333;
  font-family: var(--ks-font);
  font-size: 21px;
  line-height: 1.25;
}

.ks-newsletter__text,
.ks-newsletter__note,
.ks-partner-pitch__text {
  margin: 0 0 12px;
  color: var(--ks-muted);
  font-size: 14px;
  line-height: 1.5;
}

.ks-newsletter__proof {
  display: inline-block;
  margin: 0 0 12px;
  border: 1px solid rgba(29, 132, 195, .14);
  border-radius: 999px;
  background: #fff;
  color: var(--ks-blue-dark);
  font-family: var(--ks-ui);
  font-size: 13px;
  font-weight: 700;
  padding: 6px 9px;
}

.ks-newsletter__label {
  display: block;
  margin: 0 0 6px;
  color: #333;
  font-family: var(--ks-ui);
  font-size: 13px;
  font-weight: 700;
}

.ks-newsletter__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 8px;
}

.ks-newsletter__input {
  min-width: 0;
  width: 100%;
  border: 1px solid #ccd6df;
  border-radius: 6px;
  background: #fff;
  padding: 11px 12px;
  box-shadow: inset 0 1px 2px rgba(31, 52, 74, .06);
}

.ks-newsletter__button,
.ks-partner-pitch__button,
.ks-mediakit__button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 6px;
  background: var(--ks-blue);
  color: #fff;
  cursor: pointer;
  font-family: var(--ks-ui);
  font-size: 15px;
  font-weight: 700;
  padding: 10px 15px;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 8px 16px rgba(5, 90, 142, .18);
}

.ks-newsletter__button:hover,
.ks-newsletter__button:focus,
.ks-partner-pitch__button:hover,
.ks-partner-pitch__button:focus,
.ks-mediakit__button:hover,
.ks-mediakit__button:focus {
  background: var(--ks-blue-dark);
  color: #fff;
  text-decoration: none;
}

.ks-newsletter__button:disabled {
  cursor: not-allowed;
  opacity: .62;
}

.ks-partner-pitch {
  overflow: hidden;
  border: 1px solid var(--ks-line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(232, 244, 248, .78), #fff 58%),
    #fff;
  padding: 18px;
  box-shadow: 0 8px 20px rgba(31, 52, 74, .06);
}

.ks-partner-pitch::after {
  content: "";
  position: absolute;
  right: -16px;
  bottom: -16px;
  width: 84px;
  height: 84px;
  border: 10px solid rgba(127, 182, 200, .18);
  border-radius: 50%;
}

.ks-partner-pitch .ks-sidebar__title {
  border-bottom: 0;
  margin-bottom: 8px;
  padding-bottom: 0;
}

.ks-partner-pitch__list {
  margin: 0 0 14px;
  padding-left: 18px;
  color: #333;
  font-size: 14px;
  line-height: 1.55;
}

.ks-partner-pitch__list li::marker {
  color: var(--ks-steel);
}

.ks-partner-pitch__button {
  width: 100%;
}

.ks-mediakit {
  color: var(--ks-text);
}

.ks-mediakit__hero,
.ks-mediakit__section,
.ks-mediakit__contact {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--ks-line);
  border-radius: 8px;
  background: #fff;
  margin: 0 0 22px;
  padding: 26px;
  box-shadow: 0 10px 24px rgba(31, 52, 74, .06);
}

.ks-mediakit__hero {
  background:
    linear-gradient(135deg, rgba(232, 244, 248, .95), rgba(255, 255, 255, .98) 62%),
    #fff;
}

.ks-mediakit__hero::after {
  content: "";
  position: absolute;
  top: 24px;
  right: 24px;
  width: 150px;
  height: 92px;
  opacity: .34;
  background:
    linear-gradient(90deg, var(--ks-blue) 0 18px, transparent 18px 24px, var(--ks-aqua) 24px 42px, transparent 42px 48px, var(--ks-steel) 48px 66px, transparent 66px 72px, var(--ks-leaf) 72px 90px),
    linear-gradient(180deg, transparent 0 76px, rgba(32, 61, 112, .35) 76px 80px, transparent 80px);
}

.ks-mediakit__hero > *,
.ks-mediakit__section > *,
.ks-mediakit__contact > * {
  position: relative;
  z-index: 1;
}

.ks-mediakit__hero h1 {
  margin: 0 0 12px;
  color: var(--ks-ink);
  font-size: 38px;
  line-height: 1.18;
}

.ks-mediakit__lead {
  max-width: 620px;
  margin: 0;
  color: #333;
  font-size: 19px;
  line-height: 1.55;
}

.ks-mediakit__actions,
.ks-mediakit__contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 20px;
}

.ks-mediakit__link {
  color: var(--ks-blue-dark);
  font-family: var(--ks-ui);
  font-weight: 700;
}

.ks-mediakit__metrics,
.ks-mediakit__formats,
.ks-mediakit__prices,
.ks-mediakit__tiles,
.ks-mediakit__principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.ks-mediakit__metric,
.ks-mediakit__format,
.ks-mediakit__price,
.ks-mediakit__tile,
.ks-mediakit__principles p,
.ks-mediakit__audience {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--ks-line);
  border-radius: 8px;
  background: #fdfdfd;
  padding: 16px;
}

.ks-mediakit__metric::before,
.ks-mediakit__format::before,
.ks-mediakit__price::before,
.ks-mediakit__tile::before,
.ks-mediakit__principles p::before,
.ks-mediakit__audience::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: var(--ks-blue);
}

.ks-mediakit__metric:nth-child(2)::before,
.ks-mediakit__format:nth-child(2)::before,
.ks-mediakit__price:nth-child(2)::before,
.ks-mediakit__tile:nth-child(2)::before,
.ks-mediakit__principles p:nth-child(2)::before {
  background: var(--ks-aqua);
}

.ks-mediakit__metric:nth-child(3)::before,
.ks-mediakit__format:nth-child(3)::before,
.ks-mediakit__price:nth-child(3)::before,
.ks-mediakit__tile:nth-child(3)::before,
.ks-mediakit__principles p:nth-child(3)::before {
  background: var(--ks-steel);
}

.ks-mediakit__metric span,
.ks-mediakit__format span {
  display: block;
  color: var(--ks-muted);
  font-family: var(--ks-ui);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.ks-mediakit__metric strong {
  display: block;
  margin-top: 6px;
  color: var(--ks-ink);
  font-size: 24px;
  line-height: 1.2;
}

.ks-mediakit__section h2,
.ks-mediakit__contact h2 {
  margin: 0 0 16px;
  color: #333;
  font-size: 26px;
  line-height: 1.25;
}

.ks-mediakit__split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 20px;
  align-items: start;
}

.ks-mediakit__split .ks-mediakit__tiles {
  grid-template-columns: 1fr;
}

.ks-mediakit__audience h2 {
  margin-top: 0;
}

.ks-mediakit__audience-group {
  border-top: 1px solid var(--ks-line);
  padding-top: 12px;
}

.ks-mediakit__audience-group:first-child {
  border-top: 0;
  padding-top: 0;
}

.ks-mediakit__audience-group p {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin: 8px 0 0;
}

.ks-mediakit__audience-group em {
  color: var(--ks-blue-dark);
  font-style: normal;
  font-weight: 700;
}

.ks-mediakit__format h3,
.ks-mediakit__price strong {
  display: block;
  margin: 8px 0;
  color: #333;
  font-size: 19px;
  line-height: 1.25;
}

.ks-mediakit__format p,
.ks-mediakit__tile span,
.ks-mediakit__principles p,
.ks-mediakit__source,
.ks-mediakit__closing {
  margin: 0;
  color: var(--ks-muted);
  font-size: 14px;
  line-height: 1.55;
}

.ks-mediakit__price ul {
  margin: 10px 0 14px;
  padding-left: 18px;
  color: var(--ks-muted);
  font-size: 14px;
  line-height: 1.55;
}

.ks-mediakit__price span {
  display: inline-block;
  border-radius: 6px;
  background: linear-gradient(90deg, var(--ks-blue-soft), rgba(127, 182, 200, .18));
  color: var(--ks-blue-dark);
  font-family: var(--ks-ui);
  font-weight: 700;
  padding: 6px 10px;
}

.ks-mediakit__contact {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  border-color: rgba(29, 132, 195, .28);
  background:
    linear-gradient(90deg, rgba(127, 182, 200, .18), transparent 48%),
    #f8fbfd;
}

.ks-footer {
  border-top: 6px solid var(--ks-blue);
  background:
    linear-gradient(90deg, rgba(127, 182, 200, .2), transparent 42%),
    #f6fafc;
  color: #2f3f4c;
  font-family: var(--ks-ui);
  font-size: 14px;
  padding: 28px 20px 18px;
}

.ks-footer__top {
  display: block;
  padding: 0;
}

.ks-footer__block {
  max-width: var(--ks-width);
  margin: 0 auto;
  text-align: center;
}

.ks-footer__title {
  margin: 0 0 8px;
  border-bottom: 0;
  color: var(--ks-ink);
  font-family: var(--ks-font);
  font-size: 22px;
  line-height: 1.25;
  padding-bottom: 0;
}

.ks-footer__block p {
  margin: 0;
  color: #52616d;
}

.ks-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  justify-content: center;
  margin-top: 16px;
}

.ks-footer a {
  color: var(--ks-blue-dark);
  font-weight: 700;
}

.ks-footer__bottom {
  margin-top: 22px;
  border-top: 1px solid rgba(29, 132, 195, .18);
  padding-top: 14px;
  text-align: center;
}

.ks-footer__note {
  max-width: var(--ks-width);
  margin: 0 auto;
  color: #6a7580;
  font-family: var(--ks-ui);
  font-size: 13px;
}

.ks-lightbox {
  max-width: min(96vw, 1120px);
  border: 0;
  border-radius: 8px;
  background: #111;
  color: #fff;
  padding: 0;
}

.ks-lightbox::backdrop {
  background: rgba(0, 0, 0, .75);
}

.ks-lightbox__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  color: #111;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.ks-lightbox__figure {
  margin: 0;
}

.ks-lightbox__image {
  display: block;
  max-height: 86vh;
  width: auto;
  max-width: 96vw;
}

.ks-lightbox__caption {
  padding: 10px 14px 14px;
}

.article-figure,
.article-gallery {
  margin: 20px 0;
}

.article-figure img,
.article-gallery img {
  display: block;
  width: 100%;
  border-radius: 8px;
}

.article-lightbox-trigger {
  display: block;
  width: 100%;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: zoom-in;
}

.article-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.article-gallery__item {
  margin: 0;
}

.embed-block iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 8px;
}

.link-card,
.code-block {
  border: 1px solid var(--ks-line);
  border-radius: 8px;
  background: var(--ks-panel-soft);
  padding: 14px;
}

@media (max-width: 860px) {
  .ks-main,
  .ks-listing,
  .ks-commercial-layout,
  .ks-mediakit__split,
  .ks-mediakit__contact {
    display: block;
  }

  .ks-sidebar {
    width: auto;
    margin-top: 30px;
  }

  .ks-contest-list__grid,
  .ks-listing__grid,
  .ks-related__grid,
  .ks-mediakit__metrics,
  .ks-mediakit__formats,
  .ks-mediakit__prices,
  .ks-mediakit__tiles,
  .ks-mediakit__principles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ks-commercial-layout > .ks-sidebar {
    margin-top: 30px;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 15px;
  }

  .ks-header {
    flex-direction: column;
    padding: 14px;
    text-align: center;
  }

  .ks-brand__logo {
    width: min(250px, 80vw);
    margin: 0 auto;
  }

  .ks-brand {
    justify-content: center;
  }

  .ks-brand__mark {
    width: 48px;
    height: 48px;
    font-size: 29px;
  }

  .ks-brand__badge {
    width: 31px;
    height: 52px;
  }

  .ks-brand__text {
    text-align: center;
  }

  .ks-brand__word--top {
    font-size: 22px;
  }

  .ks-brand__word--bottom {
    font-size: 35px;
  }

  .ks-brand__domain {
    font-size: 13px;
  }

  .ks-brand__text::after {
    width: 148px;
  }

  .ks-brand__slogan {
    flex: 0 1 auto;
    margin-top: 10px;
  }

  .ks-main {
    padding: 15px;
  }

  .ks-contest-card {
    min-width: 0;
  }

  .ks-contest-card__title {
    min-height: 112px;
    padding: 25px 16px;
  }

  .ks-slideshow__track {
    height: auto;
    aspect-ratio: 1000 / 330;
  }

  .ks-slideshow__image {
    height: 100%;
  }

  .ks-detail__hero {
    padding: 24px;
  }

  .ks-detail__meta td {
    display: block;
    width: 100%;
  }

  .ks-contest-list__grid,
  .ks-listing__grid,
  .ks-related__grid,
  .ks-interaction__form--grid,
  .ks-mediakit__metrics,
  .ks-mediakit__formats,
  .ks-mediakit__prices,
  .ks-mediakit__tiles,
  .ks-mediakit__principles {
    grid-template-columns: 1fr;
  }

  .ks-detail__title,
  .ks-listing-title__heading,
  .ks-mediakit__hero h1 {
    font-size: 23px;
  }

  .ks-detail__title {
    padding: 34px 18px;
  }

  .ks-mediakit__hero,
  .ks-mediakit__section,
  .ks-mediakit__contact {
    padding: 18px;
  }

  .ks-winners__stats {
    grid-template-columns: 1fr;
  }
}
