main {
  padding: 0 20px 100px 20px;
}

.titlebar {
  padding-top: 0.8rem;
  margin-bottom: 0.8rem;
  border-bottom: 3px solid #eee;
}
.titlebar h1 {
  border-bottom: none;
  padding-bottom: 0;
}
.titlebar .date {
  font-style: italic;
  white-space: nowrap;
}

h1 {
  margin: 0.67em 0;
  padding-bottom: 0.3em;
  font-size: 2.25em;
  line-height: 1.2;
  border-bottom: 1px solid #eee;
}

h2 {
  padding-bottom: 0.3em;
  font-size: 1.75em;
  line-height: 1.225;
  border-bottom: 1px solid #eee;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
  display: block;
  width: 100%;
  overflow: auto;
  word-break: normal;
  word-break: keep-all;
}
table th {
  font-weight: bold;
  padding: 6px 13px;
  border: 1px solid #ddd;
}
table td {
  padding: 6px 13px;
  border: 1px solid #ddd;
}
table tr {
  background-color: #fff;
  border-top: 1px solid #ccc;
}
table tr:nth-child(2n) {
  background-color: #f8f8f8;
}

img {
  border-style: none;
  max-width: 100%;
  box-sizing: content-box;
  background-color: #fff;
}

progress[value] {
  /* Reset the default appearance */
  -webkit-appearance: none;
  appearance: none;
  width: 80%;
  height: 20px;
}
progress[value]::-webkit-progress-bar {
  background-color: #eee;
  border-radius: 2px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25) inset;
}
progress[value]::-webkit-progress-value {
  background-image: -webkit-linear-gradient(-45deg, transparent 33%, rgba(0, 0, 0, 0.1) 33%, rgba(0, 0, 0, 0.1) 66%, transparent 66%), -webkit-linear-gradient(top, rgba(255, 255, 255, 0.25), rgba(0, 0, 0, 0.25)), -webkit-linear-gradient(left, #09c, #f44);
  border-radius: 2px;
  background-size: 35px 20px, 100% 100%, 100% 100%;
}

.videoWrapper {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  height: 0;
  margin-bottom: 10px;
}
.videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.card {
  margin-bottom: 20px;
}

.fp-link {
  display: inline-flex;
  text-decoration: none;
  margin: 5px;
}

.fp-link .card {
  color: #555;
  border-radius: 0;
  border: 0;
}
.fp-link .card img {
  border-radius: 5px;
  object-fit: cover;
  aspect-ratio: 4/3;
}
.fp-link .card .card-body {
  color: white;
  position: absolute;
  bottom: 5px;
  left: 12px;
}
.fp-link .card .card-title {
  font-size: large;
}
.fp-link .card .card-text {
  font-size: medium;
}

@media (min-width: 600px) {
  .index-hero img {
    aspect-ratio: 3/1;
  }

  .page-hero img {
    aspect-ratio: 4/1;
  }
}
@media (max-width: 600px) {
  .index-hero img {
    aspect-ratio: 1/2;
  }

  .page-hero img {
    aspect-ratio: 1/1;
  }
}
.index-hero,
.page-hero {
  margin-bottom: 50px;
}
.index-hero img,
.page-hero img {
  width: 100%;
  object-fit: cover;
}
.index-hero .title-text,
.page-hero .title-text {
  color: white;
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.index-hero .title-text h1,
.page-hero .title-text h1 {
  border: 0;
}

.solocard-container .card {
  max-width: 750px;
}

.callout {
  padding: 1rem;
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
  border: 1px solid #e9ecef;
  border-radius: 0.25rem;
  border-left-width: 0.25rem;
}
.callout p:last-child {
  margin-bottom: 0;
}

.callout-info {
  border-left-color: #5bc0de;
}

.callout-warning {
  border-left-color: #f0ad4e;
}