.office-meeting-understanding {
  display: grid;
  gap: 13px;
  padding: 17px 19px;
  border: 1px solid color-mix(in srgb, var(--accent) 22%, var(--line));
  border-radius: 16px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-soft) 50%, var(--panel)), var(--panel) 60%);
}

.office-meeting-understanding > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.office-meeting-understanding > header div {
  display: grid;
  gap: 3px;
}

.office-meeting-understanding > header span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .12em;
}

.office-meeting-understanding h4 {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
}

.office-meeting-understanding > header em {
  padding: 6px 10px;
  border: 1px solid color-mix(in srgb, var(--accent) 24%, var(--line));
  border-radius: 999px;
  color: var(--accent);
  background: var(--panel);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  white-space: nowrap;
}

.office-meeting-summary {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 720;
  line-height: 1.65;
}

.office-meeting-understanding-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.office-meeting-understanding-grid > div {
  min-width: 0;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: color-mix(in srgb, var(--panel) 92%, transparent);
}

.office-meeting-understanding-grid strong {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 14px;
}

.office-meeting-understanding-grid ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding-left: 18px;
}

.office-meeting-understanding-grid li,
.office-meeting-understanding-grid small,
.office-meeting-understanding footer {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.office-meeting-understanding footer {
  padding-top: 10px;
  border-top: 1px dashed var(--line);
}

@media (max-width: 720px) {
  .office-meeting-understanding-grid { grid-template-columns: 1fr; }
  .office-meeting-understanding > header { align-items: flex-start; flex-direction: column; }
}
