/* @override 
	https://oc.fischer.graphics/app/themes/oncrawl/assets/css/post.css */
header.post-header {
  background: var(--color, #D7DBE0);
  padding: 40px;
  border-radius: 1.625rem;
  margin-bottom: 40px;
}
header.post-header .post-title {
  font-size: 2.2222em;
}
header.post-header .category {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
header.post-header .category a {
  display: inline-block;
  padding: 8px 10px;
  border: 1px solid #271964;
  border-radius: 5px;
}
header.post-header .meta a {
  text-decoration: underline;
}
#breadcrumbs {
  margin: 0 0 20px;
  color: #B4B4B4;
}
#breadcrumbs a {
  color: #3ED4F7;
}
.oc-redirect {
  background: #F44293;
  color: #FFFFFF;
  padding: 30px;
  margin: 40px 0;
  border-radius: 6px;
  text-align: center;
}
.summary-title {
  text-transform: uppercase;
  font-weight: 500;
  border-bottom: 1px solid #271964;
}
.summary-items li {
  margin: .75em 0;
  font-weight: 300;
}
.summary-items li a {
  transition: all 0.3s ease-in-out 0s;
}
.summary-items li a:hover {
  text-decoration: underline;
}
.summary-items li a.current {
  color: #F44293;
}
.author-card {
  gap: 20px;
  display: flex;
  align-items: center;
  margin: 40px 0;
}
.author-card .portrait {
  width: 80px;
}
.author-card .portrait img {
  display: block;
  max-width: 100%;
  aspect-ratio: 1;
  height: auto;
  object-fit: cover;
  border-radius: 80px;
  background: #D7DBE0;
}
.author-card .name {
  font-weight: 600;
}
.author-card a {
  text-decoration: none;
  color: inherit;
}
.related-title a {
  color: #F44293;
  font-weight: 600;
}
ul.share-post {
  display: flex;
  gap: 15px;
  align-items: center;
  margin: 0 0 20px;
}
ul.share-post .label {
  font-size: .9em;
}
ul.share-post .share {
  font-size: 22px;
}
header.site-header {
  margin-bottom: 24px;
}
header.site-header .reading-indicator {
  position: absolute;
  bottom: 0;
  height: 5px;
  width: 100%;
}
header.site-header .reading-indicator span {
  position: absolute;
  height: 100%;
  width: 0;
  left: 0;
  background: var(--color, #D7DBE0);
  transition: width 0.1s linear;
}
.use-case-testimonial {
  padding: 40px;
  border-radius: 20px;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
}
.use-case-testimonial .author {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}
.use-case-testimonial .author .name {
  font-weight: 600;
  max-width: calc( 100% - 80px - 15px );
}
.use-case-testimonial .author .portrait {
  width: 80px;
}
.use-case-testimonial .author .portrait img {
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  border-radius: 100%;
}
.use-case-testimonial .testimonial {
  font-size: .8em;
}
.use-case-company {
  margin: 40px auto;
  text-align: center;
}
.use-case-company .industry {
  margin-top: 20px;
  font-weight: 600;
  color: #F44293;
}
.use-case-company a {
  color: inherit;
}
.use-case-key-values {
  --gap: 50px;
  --columns: 2;
  margin: 50px 0;
  background: var(--color, #B4B4B4);
  padding: 30px;
  border-radius: 150px;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--gap);
}
.use-case-key-values .value {
  text-align: center;
  width: calc( ( 100% / var( --columns ) ) - var( --gap ) + ( var( --gap ) / var( --columns ) ) );
}
.use-case-key-values .value span {
  display: block;
  text-align: center;
}
.use-case-key-values .value span.val {
  font-size: 2.4444em;
  font-weight: 700;
}
@media only screen and (min-width: 602px) {
  header.post-header {
    gap: 50px;
    align-items: center;
  }
  header.post-header .title {
    width: calc( 80% - 25px );
  }
  header.post-header .thumbnail {
    width: calc( 20% - 25px );
  }
  .single-post-wrapper {
    gap: 80px;
  }
  .single-post-wrapper:not(.has-form) {
    flex-direction: row-reverse;
  }
  .single-post-wrapper .post-content {
    width: calc( 75% - 40px );
  }
  .single-post-wrapper sidebar {
    width: calc( 25% - 40px );
  }
  .single-post-wrapper sidebar .sticky {
    position: sticky;
    top: 100px;
  }
  .single-post-wrapper.has-form .post-content {
    width: calc( 65% - 40px );
  }
  .single-post-wrapper.has-form .form-wrapper {
    width: calc( 35% - 40px );
  }
  .use-case-key-values {
    --columns: 3;
  }
}
@media only screen and (min-width: 992px) {
  .use-case-key-values {
    --columns: 4;
  }
}
