@font-face {
  font-family: "Media Index Manrope";
  font-style: normal;
  font-display: swap;
  font-weight: 200 800;
  src: url("fonts/manrope-cyrillic-wght-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Media Index Manrope";
  font-style: normal;
  font-display: swap;
  font-weight: 200 800;
  src: url("fonts/manrope-latin-ext-wght-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Media Index Manrope";
  font-style: normal;
  font-display: swap;
  font-weight: 200 800;
  src: url("fonts/manrope-latin-wght-normal.woff2") format("woff2");
}

.mihw-shell {
  --mihw-ink: #151713;
  --mihw-muted: #686b63;
  --mihw-line: rgba(21, 23, 19, .12);
  --mihw-soft: #eef0e8;
  --mihw-surface: #fff;
  --mihw-accent: #d9ff43;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
  max-width: 1240px;
  margin: 28px auto 0;
  padding: 16px;
  border-radius: 18px;
  color: var(--mihw-ink);
  background: #f5f6f1;
  font-family: "Media Index Manrope", Arial, sans-serif;
  box-sizing: border-box;
}
.mihw-shell *, .mihw-shell *::before, .mihw-shell *::after { box-sizing: border-box; }

.mihw-column {
  min-width: 0;
  padding: 22px;
  border-radius: 14px;
  background: var(--mihw-surface);
}

.mihw-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--mihw-line);
}
.mihw-kicker {
  display: block;
  margin-bottom: 4px;
  color: var(--mihw-muted);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.mihw-heading h2 {
  margin: 0;
  padding: 0;
  color: var(--mihw-ink);
  font-family: inherit;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
}
.mihw-random-label {
  flex: 0 0 auto;
  padding: 7px 9px;
  border-radius: 9px;
  color: var(--mihw-ink);
  background: var(--mihw-accent);
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.mihw-list {
  display: grid;
  gap: 4px;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}
.mihw-item, .mihw-loading, .mihw-empty {
  margin: 0 !important;
  list-style: none !important;
}
.mihw-item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 11px;
  min-height: 58px;
  padding: 8px 9px;
  border-radius: 8px;
  transition: background-color .16s ease;
}
.mihw-item:hover { background: var(--mihw-soft); }

.mihw-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  overflow: hidden;
  border-radius: 8px;
  color: var(--mihw-ink);
  background: var(--mihw-soft);
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
}
.mihw-icon img {
  position: relative;
  z-index: 2;
  display: block;
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.mihw-group-icon img {
  width: 42px;
  height: 42px;
  object-fit: cover;
}
.mihw-icon span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 1;
}

.mihw-story { min-width: 0; }
.mihw-link {
  display: block;
  overflow: hidden;
  color: var(--mihw-ink) !important;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.35;
  text-decoration: none !important;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.mihw-link:hover { text-decoration: underline !important; text-underline-offset: 3px; }
.mihw-meta {
  display: block;
  overflow: hidden;
  margin-top: 3px;
  color: var(--mihw-muted);
  font-size: 11.5px;
  font-weight: 550;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.mihw-loading, .mihw-empty {
  padding: 24px 10px;
  color: var(--mihw-muted);
  font-size: 13px;
  font-weight: 550;
}

@media (max-width: 820px) {
  .mihw-shell {
    grid-template-columns: minmax(0, 1fr);
    margin-top: 18px;
    padding: 10px;
    border-radius: 14px;
  }
  .mihw-column {
    padding: 17px;
    border-radius: 12px;
  }
}

@media (max-width: 480px) {
  .mihw-heading { gap: 8px; }
  .mihw-heading h2 { font-size: 18px; }
  .mihw-random-label { padding: 6px 8px; font-size: 9px; }
  .mihw-item { grid-template-columns: 38px minmax(0, 1fr); gap: 9px; padding-left: 5px; padding-right: 5px; }
  .mihw-icon { width: 38px; height: 38px; border-radius: 8px; }
  .mihw-group-icon img { width: 38px; height: 38px; }
}

.mihw-shell.mihw-single-column { grid-template-columns: minmax(0, 1fr); }

.mihw-icon.loaded > span { display: none; }

.mihw-cta {
  display: flex;
  justify-content: center;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--mihw-line);
}
.mihw-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 11px 20px;
  border-radius: 9px;
  color: var(--mihw-accent) !important;
  background: var(--mihw-ink);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none !important;
  transition: transform .16s ease, opacity .16s ease;
}
.mihw-cta-button:hover {
  color: var(--mihw-accent) !important;
  opacity: .9;
  transform: translateY(-1px);
}
