/*General*/
.bricks-button.bricks-background-primary {
  clip-path: polygon(calc(100% - 1rem) 0, 100% 50%, calc(100% - 1rem) 100%, 0 100%, 0 0);  
}

.p__with-list {
    & ul, ol {
        margin-left: 2rem;
        padding-left: 2rem;
        & li {
        padding-bottom: 2rem;
        }
    }
}

.p__with-list__source {
    & ul, ol {
        padding-left: 2rem;
        & li {
        padding-bottom: 2rem;
        }
    }
}

h4 {
    padding-bottom:1rem;
}

/* ADDS ICON TO EXTERNAL LINKS*/
.external-icon-svg {
    margin-right: 0.25em;
    width: var(--text-m);
    height: var(--text-m);
    stroke: currentColor;
    vertical-align: text-bottom;
    transition: stroke 0.2s;
}

.external-icon a:hover, .external-icon a:hover .external-icon-svg {
    color: var(--accent);
    stroke: var(--accent); /* color on hover */
}

.bricks-image-caption {
  background: var(--secondary);
  color: var(--primary);
  text-align: left;
  font-size: var(--text-m);
}

/*BREADCRUMBS*/
.my-breadcrumbs {
    z-index: 9999;
}
.is-sticky {
  position: sticky;
  top: 0;
}

.ol-breadcrumbs ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  color: var(--neutral);
  font-size: var(--text-s);
    & a {
      text-decoration: none;
      color: var(--neutral);
      font-weight: 500; 
    }
}

.ol-breadcrumbs li::after {
  content: "\21E2";
  margin-left: 0.5rem;
  /*color: var(--neutral);*/
}

.ol-breadcrumbs li:last-child::after {
  content: none;
}

/*BLOCKQUOTE*/
.blockquote {
  padding-left: 2rem;
  position: relative;
  overflow: hidden;
  margin: 0 3rem;
}
.blockquote::before, .blockquote::after {
  position: absolute;
  color: #777;
}
.blockquote p {
  margin-left: 0;
}
.blockquote p + p {
  margin-top: 1rem;
}
.blockquote--classic::before {
  content: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='%23777777'><path d='M9.983 3v7.391C9.983 16.095 6.252 19.961 1 21l-.995-2.151C2.437 17.932 4 15.211 4 13H0V3h9.983zM24 3v7.391c0 5.704-3.748 9.571-9 10.609l-.996-2.151C16.437 17.932 18 15.211 18 13h-3.983V3H24z'/></svg>");
  left: 0;
}
.blockquote--classic::after {
  content: "";
  left: 5px;
  top: 25px;
  width: 1px;
  height: 100%;
  background-color: currentColor;
}

/*Custom image caption*/
.caption figcaption.bricks-image-caption {
    display:none;
}

.custom-caption figcaption.bricks-image-caption {
  display: block;
  position: absolute;
  bottom: 0;
  background-color: transparent;
  color: var(--neutral);
  font-size: var(--text-s);
  text-align: right;
}
