.design-3 {
  width: 100%;
  position: relative;
  background-color: var(--color-brand-navy-deep);
  padding: 100px 0;
}
.design-3__intro-img-col {
  position: relative;
  z-index: 2;
}
.design-3__intro-img-col img {
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.design-3__intro-text-col .h1 {
  line-height: 1.1;
}
.design-3__cards-row {
  position: relative;
  z-index: 2;
}
.design-3__carousel {
  width: 100%;
  overflow: hidden;
  cursor: grab;
  padding: 60px 0;
}
.design-3__carousel:active {
  cursor: grabbing;
}
.design-3__track {
  display: flex;
  gap: 32px;
}
.design-3__card {
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
.design-3__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}
.design-3__card .button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-decoration: none;
  letter-spacing: 0.1em;
  background-color: var(--color-brand-gold);
  color: var(--color-brand-navy-deep);
  border: none;
  border-radius: 0;
  margin: 0;
}
.design-3__card .button:hover {
  background-color: var(--color-brand-navy);
  color: white;
}
.design-3 .js-read-more-trigger {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-size: 14px;
  position: relative;
  display: inline-block;
}
.design-3 .js-read-more-trigger::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.3s ease;
}
.design-3 .js-read-more-trigger:hover::after {
  width: 100%;
}
.design-3__modal-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s ease;
}
.design-3__modal-wrap.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.design-3__modal-overlay {
  cursor: pointer;
}
.design-3__modal-content {
  background: white;
  width: 100%;
  max-width: 800px;
  max-height: 85vh;
  border-radius: 24px;
  position: relative;
  z-index: 2;
  padding: 60px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--color-brand-navy) transparent;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
  -webkit-overflow-scrolling: touch;
}
@media (max-width: 767px) {
  .design-3__modal-content {
    padding: 40px 24px;
    max-height: 90vh;
    border-radius: 16px;
  }
}
.design-3__modal-content::-webkit-scrollbar {
  width: 6px;
}
.design-3__modal-content::-webkit-scrollbar-track {
  background: transparent;
}
.design-3__modal-content::-webkit-scrollbar-thumb {
  background: var(--color-brand-navy);
  border-radius: 10px;
}
@media (max-width: 1024px) {
  .design-3__card {
    width: 320px;
  }
  .design-3__intro-img-col {
    margin-bottom: 2rem;
  }
}

body.modal-open {
  overflow: hidden !important;
}

.line-clamp-4 {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-clamp: 4;
}

/*# sourceMappingURL=design-3.css.map */
