.aeteluq-next-ag-header {
  display: flex;
  flex-flow:row wrap;
  gap: 1.5em;
  justify-content: center;
}
.aeteluq-next-ag-header-card {
  min-width: 200px;
  max-width: 330px;
  flex: 1 1 0; /* same width for all cards */
  background: #fff;
  border: 2px solid #111;
  border-radius: 1.5em;
  box-shadow: 0 2px 8px 0 rgba(0,0,0,0.04);
  padding: 1.2em 1.5em 1.2em 1.5em;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.aeteluq-next-ag-header-label {
  font-weight: 600;
  color: #111;
  background: #eee;
  border-radius: 1em;
  padding: 0.2em 0.9em 0.2em 0.6em;
  margin-bottom: 0.5em;
  display: flex;
  align-items: center;
  gap: 0.5em;
}

.aeteluq-next-ag-header-icon {
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.2em;
  color: var(--Color-Wave, #097ec1);
}
.aeteluq-next-ag-header-value {
  font-weight: 400;
  font-size: 1.1em;
  margin-bottom: 0.2em;
  word-break: break-word;
}
.aeteluq-next-ag-header-link {
  margin-bottom: 0.2em;
}
.aeteluq-next-ag-header-link a {
  color: #111;
  font-size: 1.1em;
  text-decoration: underline dotted;
  transition: color .15s;
}
.aeteluq-next-ag-header-link a:hover {
  color: var(--Color-Wave, #097ec1);
  text-decoration: underline;
}
@media (max-width: 700px) {
  .aeteluq-next-ag-header {
    flex-direction: column;
    gap: 1em;
    max-width: 98vw;
  }
  .aeteluq-next-ag-header-card {
    max-width: 100%;
    min-width: 0;
    align-items: stretch;
  }
}
