body.event-dashboard .hero {
  display: grid;
  grid-template-rows: minmax(300px, 40%) auto auto minmax(160px, 1fr);
  height: 100%;
  padding: 0;
  overflow: hidden;
  background: var(--os-surface);
  border: 1px solid var(--os-line);
  border-radius: 16px;
}

body.event-dashboard .hero__image {
  display: block;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  border-radius: 14px 14px 0 0;
}

body.event-dashboard .hero__image img,
body.event-dashboard .hero__image source {
  display: block;
}

body.event-dashboard .hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.event-dashboard .hero__title-row {
  display: grid;
  gap: 8px;
  padding: clamp(16px, 2.1vw, 24px) clamp(18px, 2.5vw, 28px) 10px;
}

body.event-dashboard .hero__text {
  display: none;
}

body.event-dashboard .event-kpis {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 0 clamp(18px, 2.5vw, 28px) 12px;
}

body.event-dashboard .event-kpi {
  padding: 11px 12px;
  background: color-mix(in srgb, var(--os-soft) 48%, var(--os-surface));
  border: 1px solid var(--os-line);
  border-radius: 13px;
}

body.event-dashboard .event-kpi strong {
  display: block;
  margin-top: 5px;
  color: var(--os-ink);
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.2;
}

body.event-dashboard .event-topic-card {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  align-self: end;
  justify-self: start;
  width: min(330px, calc(100% - clamp(36px, 5vw, 56px)));
  min-height: 74px;
  margin: 4px clamp(18px, 2.5vw, 28px) clamp(18px, 2.5vw, 28px);
  overflow: hidden;
  color: var(--os-ink);
  text-decoration: none;
  background: var(--os-surface);
  border: 1px solid var(--os-line);
  border-left: 5px solid var(--os-card-accent);
  border-radius: 12px;
}

body.event-dashboard .event-topic-card img {
  width: 72px;
  height: 74px;
  min-height: 74px;
  object-fit: cover;
}

body.event-dashboard .event-topic-card__body {
  display: grid;
  gap: 3px;
  align-content: center;
  min-width: 0;
  padding: 9px 10px 9px 0;
}

body.event-dashboard .event-topic-card span {
  color: var(--os-accent);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

body.event-dashboard .event-topic-card strong {
  color: var(--os-ink);
  font-size: 16px;
  line-height: 1.05;
}

body.event-dashboard .event-topic-card__body > :last-child {
  margin: 0;
  color: var(--os-muted);
  font-weight: 800;
  font-size: 12px;
  line-height: 1.18;
}

@media (max-width: 860px) {
  body.event-dashboard .layout__a {
    display: block;
    overflow: visible;
  }

  body.event-dashboard .hero {
    display: block;
    flex: none;
    height: auto;
    overflow: visible;
  }

  body.event-dashboard .hero__image {
    height: min(320px, 42vh);
  }

  body.event-dashboard .event-topic-card {
    grid-template-columns: 104px minmax(0, 1fr);
    min-height: 116px;
    width: auto;
    margin-bottom: 18px;
  }

  body.event-dashboard .event-topic-card img {
    width: 104px;
    height: 116px;
    min-height: 116px;
  }
}
