.cards-section .cards-header {
  text-align: left;
  margin-bottom: 20px;
}
@media (min-width: 1025px) {
  .cards-section .cards-header {
    margin-bottom: 30px;
  }
}
.cards-section .cards-title {
  font-size: 42px;
  line-height: 48px;
  letter-spacing: -1.5px;
  font-weight: 500;
  margin-bottom: 24px;
  color: #09090B;
}
@media (min-width: 1025px) {
  .cards-section .cards-title {
    font-size: 48px;
    line-height: 48px;
    letter-spacing: -0.96px;
  }
}
.cards-section .cards-description {
  font-size: 18px;
  line-height: 28px;
  color: #52525B;
  max-width: 630px;
}
@media (min-width: 1025px) {
  .cards-section .cards-description {
    font-size: 20px;
    line-height: 28px;
  }
}
.cards-section .cards-rows {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 1025px) {
  .cards-section .cards-rows {
    gap: 32px;
  }
}
.cards-section .cards-row {
  display: grid;
  gap: 16px;
}
@media (min-width: 1025px) {
  .cards-section .cards-row {
    gap: 24px;
  }
}
.cards-section .cards-row--2 {
  grid-template-columns: 1fr;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .cards-section .cards-row--2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1025px) {
  .cards-section .cards-row--2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.cards-section .cards-row--3 {
  grid-template-columns: 1fr;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .cards-section .cards-row--3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1025px) {
  .cards-section .cards-row--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
.cards-section .cards-row--4 {
  grid-template-columns: 1fr;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .cards-section .cards-row--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1025px) {
  .cards-section .cards-row--4 {
    grid-template-columns: repeat(4, 1fr);
  }
}
.cards-section .cards-row--cta {
  grid-template-columns: 1fr;
}
.cards-section .card {
  display: flex;
  flex-direction: column;
  background: #FFFFFF;
  border: 1px solid #E4E4E7;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  height: 100%;
}
@media (min-width: 1025px) {
  .cards-section .card {
    border-radius: 24px;
  }
}
.cards-section .card--linked {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.cards-section .card--linked:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.cards-section .card .card-media {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #9F9FA9;
  flex-shrink: 0;
  position: relative;
}
.cards-section .card .card-media img,
.cards-section .card .card-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cards-section .card .card-media--gallery .card-gallery-swiper {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.cards-section .card .card-media--gallery .card-gallery-swiper .swiper-wrapper {
  height: 100%;
}
.cards-section .card .card-media--gallery .card-gallery-swiper .swiper-slide {
  height: 100%;
}
.cards-section .card .card-media--gallery .card-gallery-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
}
.cards-section .card .card-media--gallery .card-gallery-nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 2;
}
.cards-section .card .card-media--gallery .card-gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: #09090B;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease, background 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  pointer-events: auto;
}
.cards-section .card .card-media--gallery .card-gallery-arrow:hover {
  background: #fff;
}
.cards-section .card .card-media--gallery .card-gallery-arrow--prev {
  left: 8px;
}
.cards-section .card .card-media--gallery .card-gallery-arrow--next {
  right: 8px;
}
.cards-section .card .card-media--gallery .card-gallery-arrow svg {
  width: 16px;
  height: 16px;
}
.cards-section .card .card-media--gallery:hover .card-gallery-arrow {
  opacity: 1;
}
.cards-section .card .card-media--video video {
  display: block;
}
.cards-section .card .card-media--video .card-video-pause {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease, background 0.3s ease;
  z-index: 2;
}
.cards-section .card .card-media--video .card-video-pause:hover {
  background: rgba(0, 0, 0, 0.8);
}
.cards-section .card .card-media--video .card-video-pause .icon-play {
  display: none;
}
.cards-section .card .card-media--video .card-video-pause .icon-pause {
  display: block;
}
.cards-section .card .card-media--video:hover .card-video-pause {
  opacity: 1;
}
.cards-section .card .card-media--video.is-paused .card-video-pause {
  opacity: 1;
}
.cards-section .card .card-media--video.is-paused .card-video-pause .icon-play {
  display: block;
}
.cards-section .card .card-media--video.is-paused .card-video-pause .icon-pause {
  display: none;
}
.cards-section .card .card-image {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #9F9FA9;
  flex-shrink: 0;
}
.cards-section .card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cards-section .card .card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
@media (min-width: 1025px) {
  .cards-section .card .card-content {
    padding: 25px;
  }
}
.cards-section .card .card-title {
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
  color: #09090B;
  margin-bottom: 12px;
}
@media (min-width: 1025px) {
  .cards-section .card .card-title {
    font-size: 20px;
    line-height: 28px;
  }
}
.cards-section .card .card-description {
  font-size: 16px;
  line-height: 24px;
  color: #71717B;
  margin: 0;
}
@media (min-width: 1025px) {
  .cards-section .card .card-description {
    font-size: 16px;
    line-height: 24px;
  }
}
.cards-section .card .card-button {
  margin-top: auto;
  padding-top: 20px;
}
.cards-section .card .card-button .btn {
  background: #29235C;
  color: #FFFFFF;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 15px;
  line-height: 20px;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s ease;
  box-shadow: inset 0 -2px 0 0 rgba(0, 0, 0, 0.04);
  white-space: nowrap;
  text-align: center;
}
.cards-section .card .card-button .btn:hover {
  background: rgb(24.5354330709, 20.9448818898, 55.0551181102);
  text-decoration: none;
}
.cards-section .card .card-cta {
  margin-top: auto;
  padding-top: 20px;
}
.cards-section .card .card-cta a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #154f9b;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: -0.28px;
  line-height: 22px;
  white-space: nowrap;
  position: relative;
  transition: color 0.3s ease;
}
.cards-section .card .card-cta a::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  mask-image: url("../../img/icon-arrow-right.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-image: url("../../img/icon-arrow-right.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  background-color: currentColor;
  transition: transform 0.3s ease;
}
.cards-section .card .card-cta a:hover {
  color: rgb(30.1278409091, 113.3380681818, 222.3721590909);
}
.cards-section .card .card-cta a:hover::after {
  transform: translateX(4px);
}
.cards-section .cards-row--3 .card .card-media,
.cards-section .cards-row--3 .card .card-image {
  aspect-ratio: 1/1 !important;
}
.cards-section .cards-row--2 .card .card-media,
.cards-section .cards-row--2 .card .card-image {
  aspect-ratio: 16/10;
}
.cards-section .cards-row--4 .card .card-media,
.cards-section .cards-row--4 .card .card-image {
  aspect-ratio: 4/3;
}
.cards-section .cta-card {
  background: #FFFFFF;
  border: 1px solid #E4E4E7;
  border-radius: 12px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 1025px) {
  .cards-section .cta-card {
    border-radius: 24px;
    padding: 25px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
  }
}
.cards-section .cta-card .cta-left {
  flex: 1;
  max-width: 600px;
}
.cards-section .cta-card .cta-title {
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
  color: #09090B;
  margin-bottom: 12px;
}
@media (min-width: 1025px) {
  .cards-section .cta-card .cta-title {
    font-size: 20px;
    line-height: 28px;
  }
}
.cards-section .cta-card .cta-description {
  font-size: 16px;
  line-height: 24px;
  color: #71717B;
  margin: 0;
}
.cards-section .cta-card .cta-right {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 400px;
}
@media (min-width: 1025px) {
  .cards-section .cta-card .cta-right {
    align-items: center;
  }
}
.cards-section .cta-card .cta-subtitle {
  font-size: 16px;
  line-height: 24px;
  color: #71717B;
  margin: 0;
}
@media (min-width: 1025px) {
  .cards-section .cta-card .cta-subtitle {
    text-align: center;
  }
}
.cards-section .cta-card .btn {
  background: #29235C;
  color: #FFFFFF;
  padding: 16px 24px;
  border-radius: 8px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s ease;
  box-shadow: inset 0 -2px 0 0 rgba(0, 0, 0, 0.04);
  white-space: nowrap;
  text-align: center;
}
.cards-section .cta-card .btn:hover {
  background: rgb(24.5354330709, 20.9448818898, 55.0551181102);
}

/*# sourceMappingURL=cards.css.map */
