/* Official channels */
.mk-channels {
  --mk-ch-bg: #eeefef;
  --mk-ch-ink: #4a4543;
  --mk-ch-muted: #8a8176;
  --mk-ch-line: rgba(74, 69, 67, 0.2);
  background: var(--mk-ch-bg);
  padding: 72px 40px 88px;
  box-sizing: border-box;
  border-bottom: 1px solid var(--mk-ch-line);
  min-height: calc(100vh - 480px);
  min-height: calc(100dvh - 480px);
}

#l-content:has(.mk-channels) {
  background: #eeefef;
  padding: 0;
}

.mk-channels__head {
  text-align: center;
  margin: 0 auto 100px;
  max-width: 900px;
}

.mk-channels__eyebrow {
  margin: 0 0 10px;
  font-family: "Times New Roman", "Noto Serif SC", Georgia, serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-indent: 0.18em;
  color: var(--mk-ch-muted);
  text-transform: uppercase;
}

.mk-channels__title {
  margin: 0;
  font-size: 60px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-indent: 0.12em;
  color: var(--mk-ch-ink);
  line-height: 1.35;
  padding-bottom: 30px;
}

.mk-channels__grid {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 48px 56px;
  max-width: 1400px;
  width: 100%;
  align-items: start;
}

.mk-channels__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 0;
}

.mk-channels__icon {
  width: 120px;
  height: 120px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
  margin-bottom: 22px;
  flex: 0 0 auto;
}

.mk-channels__icon svg,
.mk-channels__icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mk-channels__icon--soon {
  background: rgba(74, 69, 67, 0.08);
  box-shadow: none;
  color: rgba(74, 69, 67, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mk-channels__icon--soon svg {
  width: 40px;
  height: 40px;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
}

.mk-channels__platform {
  margin: 0 0 24px;
  font-size: 24px;
  font-weight: 600;
  color: var(--mk-ch-ink);
  letter-spacing: 0.06em;
}

.mk-channels__stores {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 340px;
}

.mk-channels__stores li {
  margin: 0;
  padding: 18px 10px;
  font-size: 18px;
  line-height: 1.55;
  color: var(--mk-ch-ink);
  word-break: break-word;
  border-top: 1px solid rgba(74, 69, 67, 0.22);
}

.mk-channels__stores li:last-child {
  border-bottom: 1px solid rgba(74, 69, 67, 0.22);
}

.mk-channels__item--soon .mk-channels__platform {
  letter-spacing: 0.2em;
  text-indent: 0.2em;
}

.mk-channels__waiting {
  margin: 0;
  padding: 18px 0;
  min-width: 180px;
  border-top: 1px solid var(--mk-ch-ink);
  border-bottom: 1px solid var(--mk-ch-ink);
  font-family: "Times New Roman", "Noto Serif SC", Georgia, serif;
  font-size: 15px;
  letter-spacing: 0.18em;
  text-indent: 0.18em;
  color: var(--mk-ch-ink);
  text-transform: uppercase;
}

@media screen and (max-width: 1200px) {
  .mk-channels__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 56px 48px;
    max-width: 820px;
  }
}

@media screen and (max-width: 600px) {
  .mk-channels {
    padding: 48px 20px 64px;
    min-height: 0;
  }

  .mk-channels__grid {
    grid-template-columns: 1fr;
    max-width: 460px;
  }

  .mk-channels__head {
    margin-bottom: 40px;
  }

  .mk-channels__title {
    font-size: 30px;
  }

  .mk-channels__platform {
    font-size: 22px;
  }

  .mk-channels__stores li {
    font-size: 17px;
  }

  .mk-channels__icon {
    width: 104px;
    height: 104px;
    border-radius: 24px;
  }
}
