#header {
  padding-bottom: 70px;
  padding-top: 60px;
}
#header h1 {
  font-size: 40px;
  word-break: break-word;
  max-width: 700px;
}
@media only screen and (min-width: 760px) {
  #header h1 {
    font-size: 44px;
  }
}
#header h1 + .subtitle-wrapper {
  display: flex;
  flex-flow: row wrap;
  margin-top: 20px;
  padding-right: 50%;
  position: relative;
}
#header h1 + .subtitle-wrapper:before {
  content: "";
  display: block;
  width: 50px;
  height: 1px;
  background: #cbcbcb;
  margin-right: calc(100% - 50px);
  margin-top: 12px;
  margin-bottom: 30px;
}
@media screen and (min-width: 576px) {
  #header h1 + .subtitle-wrapper {
    padding-right: unset;
  }
  #header h1 + .subtitle-wrapper:before {
    margin-right: 40px;
    margin-bottom: unset;
  }
}
#header h1 + .subtitle-wrapper a:hover {
  opacity: 0.6;
}
#header h1::first-letter {
  text-transform: capitalize;
}

.underlined {
  text-decoration: underline;
  text-decoration-thickness: 1px;
}

.new-line-divider {
  opacity: 0.3;
}

.h-p {
  position: absolute;
}

.bold {
  font-weight: 500;
}

.info-4 {
  color: rgba(26, 28, 30, 0.4);
}

.info-6 {
  color: rgba(26, 28, 30, 0.6);
}

.fluid {
  word-break: break-all;
}

.break-all {
  word-break: break-all;
}

.grid {
  display: grid;
  grid-column-gap: clamp(26px, 4vw, 60px);
  grid-row-gap: clamp(30px, 4vw, 40px);
}
.grid .full-width {
  grid-column: 1/-1;
}
.grid .left {
  grid-column: 1;
}
.grid .more {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media screen and (min-width: 700px) {
  .grid {
    grid-template-columns: 1fr 1fr;
  }
}

.grid-text {
  display: flex;
  flex-direction: column;
  gap: clamp(30px, 4vw, 40px);
}
.grid-text h3 {
  margin-bottom: 10px;
}
.grid-text .more {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  gap: 30px;
}

.card-article-link article header {
  height: 190px;
  background: #f5f5f5;
  padding: clamp(10px, 3vw, 14px) clamp(20px, 5vw, 34px);
  box-sizing: border-box;
  display: flex;
  flex-flow: column-reverse;
  justify-content: flex-end;
  border-radius: 4px;
}
.card-article-link article header .initials {
  font-size: 28px;
  font-weight: 500;
  text-transform: capitalize;
}
@media screen and (min-width: 500px) {
  .card-article-link article header .initials {
    font-size: 32px;
  }
}
.card-article-link article header h1 {
  font-size: 16px;
  line-height: 1;
  font-weight: 400;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* number of lines to show */
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
.card-article-link article header h1:first-letter {
  text-transform: capitalize;
}
.card-article-link article .about {
  padding-top: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* number of lines to show */
  line-clamp: 2;
  -webkit-box-orient: vertical;
  word-break: break-word;
}
.card-article-link:hover article h1 {
  opacity: 0.6;
}

.feature-card {
  display: flex;
  flex-flow: column;
}
.feature-card .illustration {
  background: #f5f5f5;
  border-radius: 4px;
  order: 1;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.feature-card .illustration .initials {
  font-size: 32px;
  font-weight: 500;
}
.feature-card h3 {
  order: 2;
  margin-top: 30px;
  margin-bottom: 10px;
}
.feature-card p {
  order: 3;
}

#canvas-wrapper {
  flex: 1;
  height: clamp(360px, 50vw, 400px);
  background: #eee;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  border-radius: 4px;
  margin-top: 220px;
}
#canvas-wrapper #canvas {
  position: absolute;
  left: clamp(0px, 6vw, 100px);
  right: clamp(0px, 6vw, 100px);
  top: clamp(60px, 6vw, 70px);
  bottom: clamp(240px, 6vw, 250px);
  margin: auto;
  margin-top: -180px;
  max-width: 700px;
}