.infobox {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #dcdcdc;
  background-color: #f8f9fa;
  border-radius: 4px;
  overflow: hidden;
}

.infobox .infobox-header {
  padding: 12px 14px;
  font-weight: 700;
  background-color: #e7efff;
  color: #1a1a1a;
  border-bottom: 1px solid #dcdcdc;
  font-size: 1.05rem;
}

.infobox .infobox-body {
  padding: 10px 14px;
}

.infobox .infobox-body th,
.infobox .infobox-body td {
  text-align: left;
}

.infobox .infobox-image {
  text-align: center;
  margin: 10px 0;
}

.infobox .infobox-image img {
  max-width: 100%;
  height: auto;
}

.infobox .infobox-caption {
  text-align: center;
  font-size: 0.85rem;
  color: #4a4a4a;
  margin-top: 4px;
}

.infobox .infobox-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.infobox .infobox-table th,
.infobox .infobox-table td {
  padding: 8px 0;
  vertical-align: top;
}

.infobox .infobox-table th {
  width: 40%;
  font-weight: 600;
  color: #333333;
  padding-right: 12px;
}

.infobox .infobox-table tr + tr th,
.infobox .infobox-table tr + tr td {
  border-top: 1px solid #e6e6e6;
}

@media (min-width: 768px) {
  .infobox {
    width: 320px;
    flex: 0 0 320px;
  }
}

@media (min-width: 992px) {
  .infobox {
    width: 360px;
    flex-basis: 360px;
  }
}
