/* ************************************************************** */
/*                                                                */
/*                 This file should not be changed.               */
/*        If changes are required - override in styles.css        */
/*                                                                */
/* ************************************************************** */

/* MOBILE SMALL - Non-Retina - (0-321px) */
/* === Link buttons === */
.paragraph--type-link .link-button,
.paragraph--type-link .link-button:hover,
.paragraph--type-link .link-button:focus {
  display: inline-block;
  position: relative;
  text-decoration: none;
  border-radius: var(--d-base-border-radius);
  overflow: hidden;
}
.paragraph--type-link .link-button:hover,
.paragraph--type-link .link-button:focus {
  border-color: var(--bor-color-hover)
}
.paragraph--type-link .link-button .link-content {
  position: relative;
  background-color: var(--bg-color);
}
.paragraph--type-link .link-button .link-content:hover,
.paragraph--type-link .link-button .link-content:focus {
  background-color: var(--bg-color-hover);
}
.paragraph--type-link .link-button.bgimage .link-content-wrap {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-content: stretch;
  align-items: stretch;
}
/* Remove Margins on Block items on Link Contents */
.link-content h2,
.link-content h3,
.link-content h4,
.link-content h5,
.link-content h6,
.link-content p,
.link-content ul,
.link-content h2 span.no-bottom-margin,
.link-content h3 span.no-bottom-margin,
.link-content h4 span.no-bottom-margin,
.link-content h5 span.no-bottom-margin,
.link-content h6 span.no-bottom-margin,
.link-content p span.no-bottom-margin,
.link-content ul span.no-bottom-margin {
  /*margin-bottom: var(--d-space-xxxs) !important;*/
}
/* Add text shadow on Block items on Link Contents when there is a background image */
.bg-image .link-content h2,
.bg-image .link-content h3,
.bg-image .link-content h4,
.bg-image .link-content h5,
.bg-image .link-content h6,
.bg-image .link-content p,
.bg-image .link-content ul,
.bg-image .link-content h2 span.no-bottom-margin,
.bg-image .link-content h3 span.no-bottom-margin,
.bg-image .link-content h4 span.no-bottom-margin,
.bg-image .link-content h5 span.no-bottom-margin,
.bg-image .link-content h6 span.no-bottom-margin,
.bg-image .link-content h7 span.no-bottom-margin,
.bg-image .link-content h8 span.no-bottom-margin {
  text-shadow: 0px 0px 5px #000;
}
/* Shadow on whole button when there is a background*/
.bgimage.link-button:not(:focus),
.bgcol.link-button:not(:focus) {
  box-shadow: 0px 0px 5px 2px rgba(0,0,0,0.25);
}
/* Shadow on whole button when there is a background on hover*/
.bgimage.link-button:hover:not(:focus),
.bgcol.link-button:hover:not(:focus) {
  box-shadow: 0px 0px 3px 2px rgba(0,0,0,0.4);
}
.bgimage.link-button .link-content > .link-background-image > .media--type-image {
  overflow: hidden;
}
.bgimage.link-button:hover .link-content > .link-background-image > .media--type-image img,
.bgimage.link-button:focus .link-content > .link-background-image > .media--type-image img {
  opacity: 0.7;
  transform: scale(1.07);
  background-color: var(--color-dark-grey);
}

/* ------------------------------------- RESPONSIVE ADJUSTMENTS ------------------------------------- */

@media all and (min-width: 768px) {
  /* TABLET - Non-Retina - (768px–1024px) */
  
}
@media all and (min-width: 1281px) {
  /* DESKTOP - Non-Retina - (1281px–1920px) */
  
}
@media all and (min-width: 1921px) {
  /* DESKTOP LARGE - Non-Retina - (1921px and larger) */
  
}
