/**
 * @file
 * Color functions.
 *
 * @package Functions.
 */
/* Tint. */
/* Shade. */
/**
 * @file
 * Global settings.
 *
 * @package Settings.
 */
/* Import. */
/* * @import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap'); */
/* Font family. */
/* Font size. */
/* Font weight. */
/* Line height. */
/* Basic colors. */
/* Status colors. */
/* Border radius. */
/* Outline. */
/* Shadow. */
/* Spacing. */
/* Width. */
/* Breakpoints. */
/* Grid breakpoints. */
/* Grid. */
/**
 * @file
 * Logo styles.
 *
 * @package Molecules.
 */
/* Logo. */
.m-connection-teaser {
  width: 100%;
  height: 100%;
  position: relative;
  display: inline-flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-content: stretch;
  align-items: flex-start;
  border-radius: 1.8rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  cursor: pointer;
  overflow: hidden;
  background-color: #ffffff;
  border: 1px solid #E2E2EA;
}
.m-connection-teaser:hover, .m-connection-teaser:focus {
  outline: none;
}
.m-connection-teaser:hover .m-connection-teaser__label:before, .m-connection-teaser:focus .m-connection-teaser__label:before {
  content: "\f00c";
  background-color: #3DD598;
  border-color: #3DD598;
}
.m-connection-teaser__background {
  width: 100%;
  height: 20rem;
  background-color: #ffffff;
  display: block;
  overflow: hidden;
  border-bottom: 1px solid #e2e8f0;
}
.m-connection-teaser__image {
  width: 100%;
  height: 100%;
}
.m-connection-teaser__image img {
  width: auto;
  height: 20rem;
  margin: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.m-connection-teaser__content {
  flex: 1 0 0;
  width: 100%;
  padding: 1.6rem 2rem;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: stretch;
  align-items: flex-start;
  gap: 1rem;
  background-color: #ffffff;
}
@media screen and (min-width: 720px) {
  .m-connection-teaser__content {
    padding: 1.6rem 1.6rem;
  }
}
.m-connection-teaser__label {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: stretch;
  align-items: center;
  gap: 3rem;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 2.7rem;
  color: #1e293b;
}
@media screen and (min-width: 960px) {
  .m-connection-teaser__label {
    gap: 5rem;
  }
}
.m-connection-teaser__label:before {
  content: "";
  display: inline-block;
  width: 1.8rem;
  height: 1.8rem;
  padding: 0;
  border-radius: 3px;
  font-family: "Font Awesome 6 Pro";
  background-color: #fff;
  border: 1px solid #B5B5BE;
  color: #ffffff;
  text-align: center;
  font-size: 1rem;
  line-height: 1.7rem;
  transition: background-color 0.15s ease;
}
.m-connection-teaser__description {
  font-size: 1.4rem;
  line-height: 2.1rem;
  color: #64748b;
  text-align: left;
  font-weight: 600;
}
.m-connection-teaser__description p {
  margin: 0;
}

/*# sourceMappingURL=connection-teaser.css.map */