:root {
  --bg: #f6f8fb;
  --card: #ffffff;
  --text: #18212f;
  --muted: #5d6b82;
  --line: #dbe3ee;
  --accent: #0a66c2;
  --accent-soft: #eaf3ff;
  --green: #14804a;
  --red: #b42318;
}

* { box-sizing1: border-box; }

.container {
  max-width: 1180px;
  margin: 0; /* was: auto, can also be margin: 0 0 0 20px; 'top right bottom left' */
  padding: 2px;
  line-height: 1.45;
}

/*.breadcrumbs {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 14px;
}*/

.hero {
  border: 1px solid #dbe3ee;
  border-radius: 2px;
  padding-top: 10px;
  padding-left: 10px;
  padding-right: 20px;
  padding-bottom: 0px;
  margin-bottom: 20px;
}

.hero-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}

/*h1 {
  font-size: 17px;
  line-height: 1.15;
  margin: 0 0 8px;
}*/

.subhead {
  color: var(--muted);
  font-size: 14px;
}

.price-box {
  text-align: right;
  min-width: 220px;
}

/*.price {
  font-size: 34px;
  font-weight: 700;
  margin: 0;
}*/

.hero-grid {
  display: grid;
  grid-template-columns: 810px minmax(200px, 1fr);
  gap: 0 10px;
  margin-top:5px;
  align-items: start;
}

.chart-card img {
  display: block;
  max-width: 100%;
  height: auto;
  border: 1px solid #dbe3ee; /* dbe3ee - gray cfe1ff - blu */
  border-radius: 2px;
  background: #fff;
  margin-bottom: 20px;
}

.chart-caption {
  margin-top: 8px;
  font-size: 12px;
  color: var(--muted);
}

.summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 12px;
}

.summary-mini {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0 20px;
}

.card-mini {
  padding: 14px;
  margin-bottom: 20px;
  text-align: center;
}

.card-number {
	font-size: 20px;
}

.card-number-small {
	font-size: 12px;
}

.card-muted {
	color: #6c757d;
	margin-top: 10px;
	font-size: 14px;
}

.card-bus-desc {
  margin-bottom: 20px;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 14px;
  padding-bottom: 4px;
  text-align: justify;
  box-sizing: border-box;
}

.card-profile {
  min-height: 407px;
}

.layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 20px;
}

.card-big {
  padding: 20px;
  margin-bottom: 20px;
}

.card h2 {
  margin: 0 0 14px;
}

.card h3 {
  margin: 5px 0 12px;
}

.card h4 {
  margin: 0px 0 8px;
}

.lead {
  color: #2b3a4d;
  margin: 0 0 12px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px 18px;
}

.stat {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid #edf2f7;
  white-space: nowrap;
}

/*.stat:last-child { border-bottom: 0; }*/

.label {
  color: var(--muted);
}

.value {
  font-weight: 700;
  text-align: right;
}

.table-wrap {
  overflow-x: auto;
}

.table-wrap table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.table-wrap th, .table-wrap td {
  padding: 10px 10px;
  border-bottom: 1px solid #edf2f7;
  text-align: left;
  vertical-align: top;
}

.table-wrap th {
  color: var(--muted);
  font-weight: 700;
  background: #fafcff;
}

.metric-note {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
}

.cta {
  border: 1px solid #cfe1ff;
  background: linear-gradient(180deg, #f7fbff 0%, #edf5ff 100%);
}

.cta ul {
  margin: 12px 0 0 18px;
  padding: 0;
}

.cta li { margin: 8px 0; }

/*.footnote {
  font-size: 12px;
  color: var(--muted);
  margin-top: 14px;
}*/

@media (max-width: 1300px) {
  .hero-grid,
  .layout {
	grid-template-columns: 1fr;
  }
  
  .card-profile {
    min-height: 0px;
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .layout {
	grid-template-columns: 1fr;
  }

  .summary {
	/*grid-template-columns: 1fr;*/
	grid-template-columns: repeat(2, 1fr);
  }
  
  .summary-mini {
	grid-template-columns: repeat(3, 1fr);
  }

  .price-box {
	text-align: left;
  }
  
  .card-profile {
    min-height: 0px;
  }
}

@media (max-width: 640px) {
  .stats-grid {
	grid-template-columns: 1fr;
  }
  
  .summary {
	grid-template-columns: repeat(2, 1fr);
  }
  
  .summary-mini {
	grid-template-columns: repeat(2, 1fr);
  }

  /*h1 { font-size: 26px; }
  .price { font-size: 30px; }*/
  .container { padding: 2px; }
  .hero, .card { padding: 16px; }
  
  .card-profile {
    min-height: 0px;
  }
}