:root {
  color-scheme: light;
  --bg: #eef7f9;
  --panel: #ffffff;
  --ink: #0f1419;
  --muted: #536471;
  --line: #d8edf2;
  --strong-line: #bfeaf2;
  --accent: #0891b2;
  --accent-soft: #ecfeff;
  --card-shadow: 0 10px 28px rgba(8, 91, 116, 0.08);
  --danger: #b42318;
  --hold: #b54708;
  --ok: #027a48;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  padding-bottom: calc(86px + env(safe-area-inset-bottom));
  font-family: Inter, "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    linear-gradient(180deg, #fbfeff 0, var(--bg) 220px),
    var(--bg);
  color: var(--ink);
}

button,
textarea {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.app-header {
  position: sticky;
  top: 0;
  z-index: 10;
  max-width: 1120px;
  margin: 0 auto;
  background: rgba(236, 254, 255, 0.24);
  border-left: 1px solid rgba(191, 234, 242, 0.38);
  border-right: 1px solid rgba(191, 234, 242, 0.38);
  border-bottom: 1px solid rgba(191, 234, 242, 0.48);
  box-shadow: 0 14px 36px rgba(8, 91, 116, 0.08);
  backdrop-filter: blur(18px) saturate(1.55);
  -webkit-backdrop-filter: blur(18px) saturate(1.55);
}

.brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 72px;
  padding: 12px 16px 8px;
}

.brand-lockup {
  display: flex;
  align-items: center;
  min-height: 42px;
}

.brand-word {
  margin: 0;
  color: #083f4d;
  font-size: 20px;
  font-weight: 850;
  letter-spacing: 0.16em;
}

.brand-logo {
  display: block;
  width: clamp(172px, 44vw, 236px);
  max-height: 24px;
  object-fit: contain;
  object-position: left center;
}

.eyebrow,
.muted {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

h1 {
  margin: 2px 0 0;
  font-size: 28px;
  line-height: 1.1;
}

h2 {
  margin-bottom: 0;
  font-size: 21px;
}

h3 {
  margin-bottom: 10px;
  font-size: 15px;
}

.icon-button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(183, 199, 210, 0.45);
  background: rgba(255, 255, 255, 0.68);
  color: var(--ink);
  font-size: 18px;
  box-shadow: 0 8px 20px rgba(29, 55, 78, 0.07);
}

.menu-trigger {
  color: #083f4d;
}

.menu-trigger img {
  display: block;
  width: 22px;
  height: 22px;
  object-fit: contain;
  opacity: 0.72;
}

.policy-trigger {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.policy-trigger:hover {
  background: rgba(8, 145, 178, 0.08);
}

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: end center;
  background: rgba(15, 20, 25, 0.28);
}

.menu-sheet {
  width: min(720px, 100%);
  max-height: min(86vh, 820px);
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 16px 16px 0 0;
  background: #fff;
  box-shadow: 0 -18px 60px rgba(15, 20, 25, 0.16);
}

.menu-sheet-head {
  position: sticky;
  top: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 18px 14px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
}

.guideline-section {
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.guideline-section h3 {
  margin-bottom: 8px;
  font-size: 17px;
}

.guideline-section p,
.guideline-section li {
  color: #334155;
  font-size: 14px;
  line-height: 1.75;
}

.guideline-section p {
  margin-bottom: 0;
}

.guideline-section ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding-left: 1.2em;
}

.text-link {
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
}

.range-tabs {
  position: fixed;
  right: max(16px, calc((100vw - 680px) / 2 + 16px));
  bottom: calc(14px + env(safe-area-inset-bottom));
  left: max(16px, calc((100vw - 680px) / 2 + 16px));
  z-index: 30;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
  padding: 6px;
  border: 1px solid rgba(191, 234, 242, 0.68);
  border-radius: 999px;
  background: rgba(236, 254, 255, 0.24);
  box-shadow: 0 18px 46px rgba(8, 91, 116, 0.10);
  backdrop-filter: blur(18px) saturate(1.55);
  -webkit-backdrop-filter: blur(18px) saturate(1.55);
}

.range-tabs button,
.area-tabs button {
  position: relative;
  min-height: 48px;
  background: transparent;
  color: var(--muted);
  font-weight: 700;
}

.range-tabs button {
  min-width: 0;
  min-height: 42px;
  border-radius: 999px;
  font-size: 13px;
  transition: background 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.range-tabs button.active {
  border: 1px solid rgba(8, 145, 178, 0.28);
  background: rgba(8, 145, 178, 0.58);
  color: #ffffff;
  box-shadow: 0 8px 22px rgba(8, 145, 178, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.area-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 10px 14px;
  border-top: 1px solid rgba(191, 234, 242, 0.42);
  background: rgba(236, 254, 255, 0.10);
  scrollbar-width: none;
}

.area-tabs::-webkit-scrollbar {
  display: none;
}

.area-tabs button {
  flex: none;
  min-height: 34px;
  border: 1px solid rgba(183, 199, 210, 0.42);
  border-radius: 999px;
  padding: 6px 13px;
  background: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.area-tabs button.active {
  border-color: rgba(8, 145, 178, 0.32);
  background: var(--accent-soft);
  color: var(--accent);
}

.app-layout {
  display: grid;
  grid-template-columns: minmax(0, 680px);
  align-items: start;
  justify-content: center;
  max-width: 720px;
  margin: 0 auto;
  background: transparent;
  border-left: 1px solid rgba(231, 237, 241, 0.78);
  border-right: 1px solid rgba(231, 237, 241, 0.78);
}

.feed-panel {
  min-height: 100vh;
}

.timeline {
  position: relative;
  background: transparent;
}

.event-group {
  border-bottom: 1px solid var(--line);
}

.group-toggle {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  background: var(--panel);
  color: var(--ink);
  text-align: left;
}

.group-toggle strong {
  display: block;
  font-size: 22px;
  line-height: 1.2;
}

.group-toggle small {
  color: var(--muted);
  font-size: 13px;
}

.group-meta {
  flex: none;
  border: 1px solid var(--strong-line);
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
}

.group-top-events {
  display: grid;
  gap: 8px;
  margin: -4px 16px 16px;
  padding: 0;
  list-style: none;
}

.group-top-events li {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 12px;
  align-items: baseline;
  padding-left: 2px;
}

.group-top-events span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-align: right;
}

.group-top-events strong {
  overflow: hidden;
  color: #334155;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.event-item {
  position: relative;
  padding: 1px 8px;
}

.event-date-separator {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 22px;
  background: transparent;
  color: #304657;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

.event-date-separator::before {
  content: "";
  position: absolute;
  left: 34px;
  right: 34px;
  top: 50%;
  z-index: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(8, 145, 178, 0), rgba(8, 145, 178, 0.24), rgba(8, 145, 178, 0));
}

.event-date-separator span {
  position: relative;
  z-index: 1;
  padding: 6px 16px;
  border: 1px solid rgba(8, 145, 178, 0.18);
  border-radius: 999px;
  background: rgba(245, 253, 255, 0.84);
  box-shadow: 0 10px 26px rgba(8, 91, 116, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.event-item::before {
  content: "";
  position: absolute;
  left: 24px;
  top: -10px;
  bottom: -10px;
  z-index: 2;
  width: 1px;
  background: rgba(8, 145, 178, 0.24);
  box-shadow: none;
}

.event-item.hot::before {
  background: linear-gradient(180deg, rgba(8, 145, 178, 0.24) 0%, rgba(245, 158, 11, 0.58) 36%, rgba(245, 158, 11, 0.58) 64%, rgba(8, 145, 178, 0.24) 100%);
  box-shadow: none;
}

.event-card {
  position: relative;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 16px;
  width: calc(100% - 2px);
  margin: 8px 0;
  padding: 16px 14px 16px 36px;
  border: 1px solid rgba(231, 237, 241, 0.92);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  color: inherit;
  text-align: left;
  box-shadow: var(--card-shadow);
  transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.event-card::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 24px;
  z-index: 3;
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 999px;
  background: #0891b2;
  box-shadow: 0 0 0 3px rgba(236, 254, 255, 0.92);
}

.event-card::after {
  content: none;
}

.event-card > * {
  position: relative;
  z-index: 4;
}

.event-group .event-card::before {
  left: 20px;
}

.event-group .event-card {
  padding-left: 36px;
  background: rgba(255, 255, 255, 0.9);
}

.event-card:hover,
.event-card.active {
  border-color: rgba(8, 145, 178, 0.18);
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(29, 55, 78, 0.11);
}

.event-item.hot .event-card,
.event-card.hot {
  border-color: rgba(245, 158, 11, 0.24);
  background: linear-gradient(90deg, rgba(255, 247, 230, 0.94) 0%, rgba(255, 255, 255, 0.96) 58%);
}

.event-item.hot .event-card:hover,
.event-item.hot .event-card.active {
  background: linear-gradient(90deg, rgba(255, 241, 204, 0.98) 0%, #ffffff 68%);
}

.event-card.hot::before {
  background: #f59e0b;
  box-shadow: 0 0 0 3px rgba(255, 247, 230, 0.94);
}

.event-title-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.event-title-row h3 {
  flex: 1;
}

.event-thumb {
  width: 100%;
  margin: -2px 0 10px;
  overflow: hidden;
  border-radius: 14px;
  background: rgba(236, 254, 255, 0.72);
  aspect-ratio: 16 / 9;
}

.event-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hot-label {
  flex: none;
  margin-top: 2px;
  border-radius: 999px;
  padding: 3px 7px;
  background: #f59e0b;
  color: #ffffff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.inline-comments {
  display: none;
  margin: -3px 10px 10px 0;
  padding: 2px 16px 14px 36px;
  background: transparent;
}

.event-item.active .inline-comments {
  display: grid;
  gap: 8px;
}

.inline-comments-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
  font-size: 13px;
}

.comment-roll {
  position: relative;
  max-height: 260px;
  overflow: hidden;
  border-radius: 8px;
}

.comment-roll::before,
.comment-roll::after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  z-index: 2;
  height: 22px;
  pointer-events: none;
}

.comment-roll::before {
  top: 0;
  background: linear-gradient(var(--bg), rgba(243, 246, 248, 0));
}

.comment-roll::after {
  bottom: 0;
  background: linear-gradient(rgba(243, 246, 248, 0), var(--bg));
}

.comment-roll-track {
  display: grid;
  gap: 8px;
}

.comment-roll.rolling .comment-roll-track {
  animation: comment-roll 16s linear infinite;
}

.comment-roll.rolling:hover .comment-roll-track {
  animation-play-state: paused;
}

.inline-comment,
.inline-empty {
  margin: 0;
  padding: 7px 10px;
  border: 1px solid rgba(211, 222, 231, 0.78);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 6px 16px rgba(29, 55, 78, 0.05);
}

.inline-comment p {
  margin-bottom: 0;
  color: #334155;
  font-size: 12px;
  line-height: 1.45;
}

.inline-empty {
  color: var(--muted);
  font-size: 13px;
}

@keyframes comment-roll {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .comment-roll.rolling .comment-roll-track {
    animation: none;
  }

  .comment-roll {
    max-height: none;
    overflow: visible;
  }
}

.inline-source-row {
  display: grid;
  gap: 3px;
  padding: 8px 10px;
  border: 1px solid rgba(211, 222, 231, 0.75);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 8px 22px rgba(29, 55, 78, 0.05);
}

.quick-comment-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 58px;
  gap: 8px;
  align-items: center;
}

.quick-comment-form input {
  width: 100%;
  min-height: 34px;
  border: 1px solid rgba(183, 199, 210, 0.74);
  border-radius: 999px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  font: inherit;
  font-size: 13px;
}

.quick-comment-form input:focus {
  outline: 2px solid rgba(8, 145, 178, 0.18);
  border-color: var(--accent);
}

.quick-comment-form button {
  min-height: 34px;
  border-radius: 999px;
  background: linear-gradient(180deg, #0ea5c2, var(--accent));
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(8, 145, 178, 0.25);
}

.inline-source-row span {
  color: var(--muted);
  font-size: 10px;
}

.inline-source-row strong {
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  line-height: 1.4;
}

.inline-source-row a {
  color: var(--accent);
  text-decoration: none;
  text-underline-offset: 2px;
}

.inline-source-row a:hover {
  text-decoration: underline;
}

.inline-source-row .source-separator {
  display: inline-block;
  padding: 0 4px;
  color: #9aa7b2;
  font-size: 10px;
}

.inline-source-row small {
  color: #8a98a5;
  font-size: 9px;
  line-height: 1.35;
}

.source-guide-link {
  justify-self: start;
  min-height: 0;
  padding: 0;
  background: transparent;
  color: var(--accent);
  font-size: 9px;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.empty-feed {
  margin: 0;
  padding: 18px 16px;
  color: var(--muted);
}

.event-time {
  display: grid;
  align-content: start;
  gap: 4px;
  color: #425466;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
  text-align: right;
}

.event-time span {
  display: block;
}

.event-time small {
  color: #8a98a5;
  font-size: 12px;
  font-weight: 700;
}

.event-time.older-date {
  gap: 5px;
  line-height: 1.25;
}

.event-time.older-date .event-date-main {
  color: #4f5f6d;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.1;
}

.event-time.older-date small {
  color: #8a98a5;
  font-size: 12px;
}

.event-weekday {
  display: block;
  justify-self: end;
  min-width: 0;
  height: auto;
  margin-top: 3px;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  outline: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: #64748b;
  font-size: 13px;
  font-style: normal;
  font-weight: 850;
  line-height: 1.1;
}

.event-time .event-weekday,
.event-time .event-weekday.saturday,
.event-time .event-weekday.holiday {
  width: auto !important;
  height: auto !important;
  min-width: 0 !important;
  min-height: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.event-time .event-weekday::before,
.event-time .event-weekday::after {
  content: none !important;
}

.event-weekday.saturday {
  color: #0891b2;
}

.event-weekday.holiday {
  color: #e11d48;
}

.event-body h3 {
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 1.68;
  font-weight: 720;
  letter-spacing: 0;
}

.meta-row,
.source-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.chip,
.source-list a,
.source-list span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  border: 1px solid rgba(211, 222, 231, 0.72);
  border-radius: 999px;
  padding: 3px 9px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  font-size: 11px;
  text-decoration: none;
}

.comment-count-icon {
  position: relative;
  display: inline-grid;
  place-items: center;
  min-width: 24px;
  height: 22px;
  padding: 0 6px;
  border: 1px solid rgba(183, 199, 210, 0.78);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  color: #536471;
  font-size: 11px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.comment-count-icon::after {
  content: "";
  position: absolute;
  right: 5px;
  bottom: -4px;
  width: 7px;
  height: 7px;
  border-right: 1px solid rgba(183, 199, 210, 0.78);
  border-bottom: 1px solid rgba(183, 199, 210, 0.78);
  background: rgba(255, 255, 255, 0.9);
  transform: rotate(45deg);
  border-bottom-right-radius: 2px;
}

.detail-panel {
  position: sticky;
  top: 121px;
  min-height: calc(100vh - 121px);
  background: var(--panel);
}

.empty-state {
  min-height: 360px;
  display: grid;
  place-content: center;
  padding: 24px;
  text-align: center;
  color: var(--muted);
}

.event-detail {
  padding: 18px;
}

.event-detail section {
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid var(--line);
}

.detail-header h2 {
  margin: 8px 0 10px;
  line-height: 1.45;
}

.section-row,
.form-row,
.admin-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.comments {
  display: grid;
  gap: 10px;
  margin-bottom: 14px;
}

.comment {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7f9f9;
}

.comment p {
  margin-bottom: 6px;
  line-height: 1.55;
}

.comment-form textarea {
  display: block;
  width: 100%;
  min-height: 92px;
  resize: vertical;
  border: 1px solid var(--strong-line);
  border-radius: 8px;
  padding: 12px;
}

.comment-form textarea:focus {
  outline: 2px solid rgba(8, 145, 178, 0.18);
  border-color: var(--accent);
}

.comment-form button {
  min-width: 84px;
  min-height: 38px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
}

.hidden {
  display: none;
}

.admin-panel {
  max-width: 1120px;
  margin: 16px auto 42px;
  padding: 18px;
  background: var(--panel);
  border: 1px solid var(--line);
}

.admin-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.admin-list {
  display: grid;
  gap: 10px;
}

.admin-item {
  min-height: 82px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: #f7f9f9;
}

.admin-item strong {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
}

.core-demo {
  max-width: 760px;
  margin: 0 auto;
  background: var(--panel);
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.core-summary {
  padding: 18px 16px;
  border-bottom: 1px solid var(--line);
}

.core-summary h2 {
  margin: 6px 0 10px;
}

.core-events {
  display: grid;
}

.core-event {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 12px;
  padding: 16px;
  border-bottom: 1px solid var(--line);
}

.core-event.hot {
  background: linear-gradient(90deg, #fff7e6 0%, #ffffff 72%);
}

.core-event .score {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: #e8f5ff;
  color: var(--accent);
  font-weight: 800;
}

.core-event h3 {
  margin: 4px 0 8px;
  font-size: 17px;
  line-height: 1.45;
}

.risk-low {
  color: var(--ok);
}

.risk-middle {
  color: var(--hold);
}

.risk-high {
  color: var(--danger);
}

@media (max-width: 860px) {
  body {
    background:
      linear-gradient(180deg, #fbfcfd 0, var(--bg) 220px),
      var(--bg);
  }

  .app-header,
  .app-layout,
  .admin-panel {
    max-width: none;
    border-left: 0;
    border-right: 0;
  }

  .app-layout {
    display: block;
    background: transparent;
  }

  .feed-panel {
    border-right: 0;
  }

  .detail-panel {
    position: static;
    min-height: 0;
    border-top: 8px solid rgba(231, 237, 241, 0.74);
  }

  .admin-panel {
    margin-top: 8px;
    border-left: 0;
    border-right: 0;
  }

  .admin-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .brand-row {
    min-height: 64px;
    padding: 10px 14px 8px;
  }

  h1 {
    font-size: 24px;
  }

  h2 {
    font-size: 19px;
  }

  .event-card {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 12px;
    margin: 7px 0;
    padding: 16px 12px 16px 30px;
  }

  .event-date-separator {
    padding: 24px 18px;
    font-size: 13px;
  }

  .event-item::before {
    left: 18px;
  }

  .event-card::before {
    left: 14px;
    top: 26px;
  }

  .event-card::after {
    left: 18px;
    top: 27px;
    width: 19px;
  }

  .event-group .event-card::before {
    left: 14px;
  }

  .inline-comments {
    margin-right: 10px;
    padding: 2px 14px 14px 30px;
  }

  .event-group .event-card {
    padding-left: 30px;
  }

  .event-body h3 {
    font-size: 14px;
    line-height: 1.68;
  }

  .event-thumb {
    aspect-ratio: 16 / 9;
  }

  .group-top-events {
    margin-right: 14px;
    margin-left: 14px;
  }

  .group-top-events li {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 10px;
  }

  .chip:nth-child(2) {
    max-width: 100%;
  }
}
