.corecorp-quote-cards-carousel{
  overflow-x: scroll;
    overscroll-behavior-x: none;
    scrollbar-width: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor:grab;
}
.corecorp-quote-cards-carousel.grabbing,
.corecorp-quote-cards-carousel.grabbing * {
  cursor: grabbing !important;
}
.corecorp-quote-cards-carousel__track{
  column-gap: 24px;
  display: grid;
  padding-right: 24px;
  padding-left: 24px;
  width: fit-content;
  grid-auto-columns: 300px;
  grid-auto-flow: column;
}
.corecorp-quote-cards-carousel img {
  -webkit-user-drag: none;
  user-drag: none;
  pointer-events: none; /* opcjonalnie: jeśli obrazek nie ma być klikalny */
}


@media (min-width: 768px){
  .corecorp-quote-cards-carousel__track{
    padding-right: 48px;
    padding-left: 48px;
    grid-auto-columns: 720px;
  }
}

@media (min-width: 1280px) {
  .corecorp-quote-cards-carousel__track{
      padding: 0 max(48px, calc(50% - 550px));
  }
}

.corecorp-quote-cards-carousel__slide{
  align-items: center;
  background-color: #1c1d21;
  border-radius: 16px;
  column-gap: 8px;
  display: grid;
  grid-auto-flow: row;
  grid-template-columns: 1fr;
  grid-template-rows: min-content;
  justify-items: center;
  row-gap: 8px;

  filter: blur(20px);
  opacity: 0;
  transform: scale(.8);
  transition: all .5s calc(.15s + var(--cc-iteration-index, 0)*50ms) ease-in-out;

  padding: 8px;
  position: relative;
}

@media (min-width: 768px) {
  .corecorp-quote-cards-carousel__slide{
      grid-auto-flow: column;
      grid-template-columns: 275px 1fr;
  }
}

.corecorp-quote-cards-carousel.is-inview .corecorp-quote-cards-carousel__slide {
  filter: blur(0);
  opacity: 1;
  transform: scale(1);
}

.corecorp-quote-cards-carousel__media-container{
  position: relative;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}

.corecorp-quote-cards-carousel__media-frame{
  max-height: 100%;
  max-width: 100%;
  background-color: #1e1919;
  width: 100%;
  display: flex;
}
.corecorp-quote-cards-carousel__media-frame > div {
  width: 100%;
  position: relative;
  display: flex;
}

.corecorp-quote-cards-carousel__media-frame__content {
  width: 100%;
  position: static;
  display: flex;
  align-items: center;

  top: 0;
  right: 0;
  bottom: 0;
  left: 0;

  max-width: 100%;
  max-height: 100%;
}

.corecorp-quote-cards-carousel__media {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;

  overflow: hidden;
  position: relative;

  max-width: 100%;
  max-height: 100%;

  line-height: 0;
}

@supports (aspect-ratio: 1 / 1) {
  .corecorp-quote-cards-carousel__media {
    aspect-ratio: 1;
    overflow: unset;
  }
}

.corecorp-quote-cards-carousel__media > picture{
  width: 100%;
  height: 100%;
  position: static;
}

.corecorp-quote-cards-carousel__media-image {
  object-fit: cover;

  width: 100%;
  height: 100%;

  position: absolute;

  top: 0;
  right: 0;
  bottom: 0;
  left: 0;

  max-width: 100%;
  max-height: 100%;
}

.corecorp-quote-cards-carousel__content-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;

  height: 100%;

  padding-left:24px;
  padding-right: 24px;
  padding-bottom: 24px;
  padding-top: 8px;
  font-family: "Atlas Grotesk", sans-serif;
}

@media (min-width: 768px) {
  .corecorp-quote-cards-carousel__content-container {
    padding-bottom: 4px;
    padding-top: 0;
  }
}
 
.corecorp-quote-cards-carousel__content-tag {
  /* text helpers */
  -webkit-hyphens: manual;
  -ms-hyphens: manual;
  hyphens: manual;
  overflow-wrap: break-word;

  /* spacing */
  padding: 0;
  margin: 0;
  margin-top: 24px;
  margin-bottom: 24px;

  /* typography */
  font-family: "Atlas Grotesk", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;

  /* colors */
  background-color: transparent;
  color: #cd2f7b;
}

@media (min-width: 768px) {
  .corecorp-quote-cards-carousel__content-tag {
    margin-top: 12px;
  }
}

.corecorp-quote-cards-carousel__content-title {
  /* text helpers */
  -webkit-hyphens: manual;
  -ms-hyphens: manual;
  hyphens: manual;
  overflow-wrap: break-word;
  text-wrap: balance;

  /* spacing */
  padding: 0;
  margin: 0;

  /* typography */
  font-family: "Sharp Grotesk", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;

  /* colors */
  background-color: transparent;
  color: white;
}

@media (min-width: 1280px) {
  .corecorp-quote-cards-carousel__content-title {
    font-size: 24px;
  }
}

.corecorp-quote-cards-carousel__content-text {
  /* text helpers */
  -webkit-hyphens: manual;
  -ms-hyphens: manual;
  hyphens: manual;
  overflow-wrap: break-word;
  text-wrap: pretty;

  /* spacing */
  padding: 0;
  margin: 0;
  margin-top: 12px;
  margin-bottom: 24px;

  /* typography */
  font-family: "Atlas Grotesk", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;

  /* colors */
  background-color: transparent;
  color: #f7f5f299;
}

@media (min-width: 768px) {
  .corecorp-quote-cards-carousel__content-text {
    margin-bottom: 12px;
  }
}


.corecorp-quote-cards-carousel__content-button {
  /* from .dwg-box */
  -webkit-tap-highlight-color: transparent;
  box-sizing: border-box;

  /* from .dwg-button2 */
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  text-align: left;
  text-decoration: none;
  transition-duration: 0.10s;
  transition-property: background-color, border-color;
  transition-timing-function: cubic-bezier(0.4, 0, 0.6, 1);

  /* utilities */
  width: fit-content;
  display: inline-block;
  padding: 0;

  background-color: transparent;
  border-style: none;
  color: white;

  /* from global button rule */
  border: 0;
  background: none;
  color: white;
}

.corecorp-quote-cards-carousel__content-button {
  margin-top: auto;
  margin-bottom: 8px;
}

.corecorp-quote-cards-carousel__content-button-container {
  /* layout */
  display: inline-grid;
  grid-auto-flow: column;
  grid-template-columns: auto;

  justify-content: flex-start;
  align-items: center;

  width: 100%;
  height: 100%;

  position: relative;

  column-gap: 4px;

  /* spacing reset */
  padding: 0;
  margin: 0;

  /* text */
  text-decoration: underline;
}

/* underline styling for direct children */
.corecorp-quote-cards-carousel__content-button-container > * {
  text-decoration-color: #f7f5f299;
  text-decoration-thickness: 1px;
  text-underline-position: under;
}


.corecorp-quote-cards-carousel__content-button-text {
  /* text helpers */
  -webkit-hyphens: manual;
  -ms-hyphens: manual;
  hyphens: manual;
  overflow-wrap: anywhere;

  /* spacing reset */
  padding: 0;
  margin: 0;

  /* typography */
  font-family: "Atlas Grotesk", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;

  /* colors */
  background-color: transparent;
  color: inherit;
}
