* {
  margin: 0;
  padding: 0;
}

:root {
  --padding: 1.5rem;
  --color-black: #000;
  --color-white: #fff;
  --color-grey: #666;
  --color-light: #efefef;
  --color-text: #222;
  --color-text-grey: var(--color-grey);
  --color-background: var(--color-white);
  --color-code-light-grey: #cacbd1;
  --color-code-comment: #a9aaad;
  --color-code-white: #c5c9c6;
  --color-code-red: #d16464;
  --color-code-orange: #de935f;
  --color-code-yellow: #f0c674;
  --color-code-green: #a7bd68;
  --color-code-aqua: #8abeb7;
  --color-code-blue: #7e9abf;
  --color-code-purple: #b294bb;
  --color-code-csm: #CC338C;
  --color-code-cspo: #17B2E6;
  --color-code-leader: #46C42D;
  --color-code-agteam: #E57600;
  --color-code-kanban: #3664b1;
  --color-code-casestudy: #F5A800;
  --color-code-infoevent: #73559f;
  --color-code-neutral: #467AAA;
  --color-code-primary-blue: #173BE6;
  --font-family-sans: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;
  --font-family-mono: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier, monospace;
  --font-family-serif: Iowan Old Style, Apple Garamond, Baskerville, Times New Roman, Droid Serif, Times, Source Serif Pro, serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
}

/* --------------------------------------*/

html, body {
  color: var(--color-text);
  background: var(--color-background);
}

body{
  font-family: var(--font-family-sans) !important;
}

.main{
  margin-top: 1.5rem;
  margin-bottom: 4rem;
}

@media (min-width: 786px){
  .main{
    margin-top: 3rem;
  }
}

img {
  width: 100%;
}

a {
  color: var(--color-code-primary-blue);
  text-decoration: none;
}

button {
  font: inherit;
  background: none;
  border: 0;
  color: currentColor;
  cursor: pointer;
}


/* TYPE */
/* --------------------------------------*/

h1, h2, h3, h4, h5,
.h1, .h2, .h3, .h4, .h5,
.display-1, .display-2, .display-3, .display-4, .display-5  {
  font-weight: 700;
  margin-top: 0;
}

h1, .h1{
  font-weight: 900;
  margin-bottom: 1.5rem;
}

h2, h3, h4, h5
.h2, .h3, .h4, .h5 {
  margin-bottom: 1rem;
}

small{
  font-size: 0.75rem !important;
}

.text-xl{
  font-size: 1.5rem;
}

.text-l{
  font-size: 1.25rem;
}

.text-s{
  font-size: 0.875rem;
  letter-spacing: -0.2px;
}

.text-xs{
  font-size: 0.65rem;
  letter-spacing: -0.2px;
  line-height: 1.2;
}

.display-5{
  font-size: 3rem;
}

.font-weight-semibold{
  font-weight: 600;
}

.font-weight-heavy{
  font-weight: 900 !important;
}

.text-align-right{
  text-align: right;
}

.text-align-left{
  text-align: left;
}

.align-center {
  text-align: center;
}

.align-right {
  text-align: right;
}

.inline-block{
  display: inline-block;
}

mark {
  margin: 0 -0.4em;
  padding: 0.2em 0.6em;
  border-radius: 0.8em 0.2em 0.7em 0.1em;
  background: transparent;
  background-image: linear-gradient(
    to right,
    rgba(255, 225, 0, 0.1),
    rgba(255, 225, 0, 0.7) 4%,
    rgba(255, 225, 0, 0.2)
  );
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}


/* Colors */
/* --------------------------------------*/

.bg-light-grey {
  background-color: #F8F9FA !important;
}

.bg-light {
  background-color: var(--color-light);
}

.color-grey {
  color: var(--color-text-grey);
}

.gray-text-link{
  color: var(--color-text);
}


/* Layout, Grids, Cards */
/* --------------------------------------*/

.pagetype-event-post, .pagetype-faq {
  max-width: 90ch;
  margin: 0 auto;
}

.section {
  padding: 3rem 0;
}

.grid {
  --columns: 12;
  --gutter: 3rem;
  display: grid;
  grid-gap: var(--gutter);
  grid-template-columns: 1fr;
}

.grid > .column {
  margin-bottom: var(--gutter);
}

.autogrid {
  --gutter: 3rem;
  --min: 10rem;
  display: grid;
  grid-gap: var(--gutter);
  grid-template-columns: repeat(auto-fit, minmax(var(--min), 1fr));
  grid-auto-flow: dense;
}

@media screen and (min-width: 60rem) {
  body {
    --padding: 3rem;
  }

  .grid {
    grid-template-columns: repeat(12, 1fr);
  }

  .grid > .column {
    grid-column: span var(--columns);
  }
}

.card-deck{
  flex-flow: column;
}

.card-deck .card{
  margin-bottom: 15px;
}

@media (min-width: 786px){
  .card-deck {
    flex-flow: row wrap;
  }
}

.card-clickable a{
  transition: color 0.2s;
}
.card-clickable a:hover{
  text-decoration: none;
}
.card-clickable:hover {
  border-color: #ADB5BD;
  box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.06), 0px 1px 1px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.2s, border-color 0.2s;
}
.card-clickable {
transition: box-shadow 0.2s, border-color 0.2s;
}


/* Spacing Utilities */
/* --------------------------------------*/

.margin-m {
  margin-bottom: 1.5rem;
}

.margin-xl {
  margin-bottom: 4.5rem;
}

.gap-1{
  gap: 0.25rem;
}

.gap-2{
  gap: 0.5rem;
}

.gap-3{
  gap: 1rem; 
}

.gap-4{
  gap: 1.5rem;
}

.gap-5{
  gap: 3rem; 
}


/* Blogpost Typography */
/* --------------------------------------*/

.intro {
  max-width: 75ch;
  line-height: 1.5;
}

.blogpost header h1{
  max-width: 32ch;
}

.text {
  line-height: 1.5em;
}

.text :first-child {
  margin-top: 0;
}

.text :last-child {
  margin-bottom: 0;
}

.text p,
.text ul,
.text ol {
  margin-bottom: 1.5rem;
  max-width: 70ch;
}

.blogpost .text p,
.blogpost .text ul,
.blogpost .text ol {
  /* font-family: --font-family-serif; */
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
  line-height: 1.6;
}

.text ul,
.text ol {
  margin-left: 3rem;
}

.text ul p,
.text ol p {
  margin-bottom: 0;
}

.text ul > li {
  list-style: square;
}

.text ol > li {
  list-style: decimal;
}

.text ul ol,
.text ul ul,
.text ol ul,
.text ol ol {
  margin-bottom: 0;
}

.text h1,
.h1 {
  margin-bottom: 3rem;
  line-height: 1.25em;
}

.text h2,
.h2 {
  margin-bottom: 1.25rem;
  margin-top: 3rem;
}

.text .codeblock {
  display: grid;
}

.text code {
  font-family: var(--font-family-mono);
  font-size: 1em;
  background: var(--color-light);
  padding: 0 .5rem;
  display: inline-block;
  color: var(--color-black);
}

.text pre {
  margin: 3rem 0;
  background: var(--color-black);
  color: var(--color-white);
  padding: 1.5rem;
  overflow-x: scroll;
  overflow-y: hidden;
  line-height: 1.5rem;
}

.text pre code {
  padding: 0;
  background: none;
  color: inherit;
}

.text hr {
  margin: 6rem 0;
}

.text dt {
  font-weight: 600;
}

.text blockquote {
  font-size: 1.25rem;
  line-height: 1.325em;
  border-left: 2px solid var(--color-black);
  padding-left: 1rem;
  margin: 3rem 2rem;
  max-width: 40rem;
  font-style: italic;
}

.text blockquote footer {
  font-size: .875rem;
  font-style: italic;
}

.text figure {
  margin: 3rem 0;
}

.text figcaption {
  padding-top: .75rem;
  color: var(--color-text-grey);
}

.text span.time {
  color: #999;
  font-style: italic;
}

.text span.speaker1 {
  color: #666;
  font-weight: 700;
  font-size: 1.5em;
  margin-left: 15px;
  display: block;
}

.text span.speaker2 {
  color: #1bb1e6;
  font-weight: 700;
  text-align: right;
  display: block;
  margin-right: 10px;
  font-size: 1.5em;
}

.text span.left {
  text-align: left !important;
  margin-left: 15px;
  margin-right: 0;
} 

.text div.quote1 {
    padding-left: 30px;
    border-left: 3px solid #666;
    margin: 0 10% 30px 15px;
}

.text div.quote2 {
    padding-right: 30px;
    border-right: 3px solid #1bb1e6;
    margin: 0 15px 30px 10%;
}


/* Dividers */
/* --------------------------------------*/

hr {
  border: 0;
  background: currentColor;
  height: 2px;
  width: 1.5rem;
  margin: 3rem auto;
}

hr.divider, .vr{
  display: inline-block;
  align-self: stretch;
  background-color: #dee2e6;
}

hr.divider{
  height: 1px;
}

.vr{
  width: 1px;
}


/* Video and Images */
/* --------------------------------------*/

.video,
.img {
  position: relative;
  display: block;
  --w: 1;
  --h: 1;
  padding-bottom: calc(100% / var(--w) * var(--h));
}

.img img,
.video iframe {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
}

.img[data-contain] img {
  object-fit: contain;
}

.img-caption,
.video-caption {
  padding-top: .75rem;
  line-height: 1.5em;
}



.social-icons a {
  text-decoration: none;
  margin-right: .5rem;
}

.social-icons a:hover{
  opacity: 0.9;
}


/* Authors & People */
/* --------------------------------------*/

.authorBadge{
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.authorBadge img{
  width: 2rem;
  border-radius: 2rem;
}

.author-card {
  container-type: inline-size;
}

.author-card .author-image{
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center;
  align-self: start;
}

.author-card > .card-body {
  flex-direction: column;
}

@container (min-width: 576px) {
  .author-card > .card-body {
    flex-direction: row;
  }
  .author-card .author-image{
    max-width: 30%;
  }
}

.speaker img{
  max-width: 80px;
  aspect-ratio: 1;
  object-fit: cover;
}

.card.contact-card img{
  object-fit: contain;
  max-width: 150px;
  object-position: top;
}

@media (max-width: 767px){
  .card.contact-card img{
    max-width: 220px;
  }
}


/* Misc */
/* --------------------------------------*/

.page-item.active .page-link{
  background-color: var(--insights);
}

.sticky-top{
  z-index: 100 !important;
}


/* Breadcrumbs */
/* --------------------------------------*/

#breadcrumbs {
  list-style: none;
  overflow: hidden;
  float: left;
  margin: 9px 0px;
  position: relative;
  z-index: 1;
  font-size: 12px;
}

#breadcrumbs ol{
  padding: 0;
}

#breadcrumbs li{
  list-style-type: none;
  display: inline-block;
  vertical-align: middle;
}

#breadcrumbs li a:after{
  content: ">";
  color: var(--color-text);
}

#breadcrumbs li:last-child{
  max-width: 30ch;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}


/* Footer */
/* --------------------------------------*/

#main-footer {
  background-color: #222;
  position: absolute;
  width: 100%;
  left: 0;
}

#footer-bottom {
  background-color: #1f1f1f !important;
  color: #666 !important;
  padding-bottom: 10px;
  text-align: center;
}

@media (max-width: 991px){
  #footer-bottom {
    margin-top: 25px;
  }
}

.footer-widget {
  color: #2ea3f2;
}
.footer-widget a {
  color: #fff;
}
.footer-widget h4 {
  color: #2ea3f2;
  margin-bottom: 1rem;
  border-bottom: 3px solid #2ea3f2;
  padding-bottom: 0.25rem;
  font-weight: 400 !important;
  font-size: 16px;
  line-height: 1.5;
}
.footer-widget ul {
  margin-top: 0;
  margin-bottom: 4rem;
  padding-left: 2rem;
}
button.footer-button:hover {
  text-decoration: underline;
}

button.footer-button {
  background-color: transparent;
  border: none;
  color: #fff;
  text-align: left;
}