html, body {
  border-top: none;
  margin: 0;
  padding: 0;
  width: 1200px;
  height: 630px;
  overflow: hidden;
}

.card {
  border-top: 10px solid #0d4aaa;
  width: 1200px;
  height: 630px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

h3 {
  padding: 30px;
  font-size: 30pt;
  margin: 0;
  flex-shrink: 0;
}

.card-content {
  display: flex;
  flex: 1;
  gap: 20px;
  padding: 0 30px 30px 30px;
  align-items: flex-start;
  min-height: 0;
  overflow: hidden;
}

.segment {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 0;
}

.segment:first-child {
  overflow: hidden;
}

.segment:first-child svg {
  flex: 1;
  max-height: 100%;
  width: 100%;
  height: 100%;
}

.segment:last-child {
  align-items: flex-start;
  overflow: visible;
}

.segment:last-child svg {
  flex: 0 0 auto;
}
