.warehouse-type-landing {
  --warehouse-type-accent: #1CAB99;
  --warehouse-type-accent-dark: #046051;
  --warehouse-type-accent-contrast: #FEFEFF;
  --warehouse-type-accent-soft: rgba(28, 171, 153, 0.24);
  padding-top: 180px;
  padding-bottom: 72px;
  position: relative;
}
.warehouse-type-landing--type-bts {
  --warehouse-type-accent: #E31F26;
  --warehouse-type-accent-dark: #861013;
  --warehouse-type-accent-contrast:#FEFEFF;
  --warehouse-type-accent-soft: rgba(227, 31, 38, 0.24);
}
.warehouse-type-landing--type-city-flex, .warehouse-type-landing--type-green-saver {
  --warehouse-type-accent: #FDA909;
  --warehouse-type-accent-dark: #BA7D03;
  --warehouse-type-accent-contrast: #FEFEFF;
  --warehouse-type-accent-soft: rgba(86, 103, 186, 0.24);
}
.warehouse-type-landing--type-7r-park {
  --warehouse-type-accent: #1CAB99;
  --warehouse-type-accent-dark: #046051;
  --warehouse-type-accent-contrast: #FEFEFF;
  --warehouse-type-accent-soft: rgba(28, 171, 153, 0.24);
}
.warehouse-type-landing--type-city-park {
  --warehouse-type-accent: #1199EF;
  --warehouse-type-accent-dark: #27365F;
  --warehouse-type-accent-contrast: #FEFEFF;
  --warehouse-type-accent-soft: rgba(253, 169, 9, 0.24);
}
.warehouse-type-landing__wrap {
  display: flex;
  flex-direction: column;
}
.warehouse-type-landing__hero {
  display: flex;
  gap: 24px;
  padding: 44px 77px 44px 0;
  border-radius: 42px;
  background: var(--warehouse-type-accent);
  position: relative;
  z-index: 2;
  margin-bottom: 50px;
}
.warehouse-type-landing__hero-panel {
  padding: 46px 211px 35px 78px;
  border: 2px solid var(--warehouse-type-accent-dark);
  border-radius: 28px;
  background: #FEFEFF;
  box-shadow: 0 8px 0 var(--warehouse-type-accent-dark);
  display: flex;
  flex-direction: column;
  gap: 38px;
}
.warehouse-type-landing__eyebrow {
  position: relative;
  margin: 0 0 12px;
  padding-left: 47px;
  color: var(--warehouse-type-accent);
  font-size: 1rem;
  font-weight: 400;
}
.warehouse-type-landing__eyebrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 37px;
  height: 1px;
  background: currentColor;
  transform: translateY(-50%);
}
.warehouse-type-landing__title {
  font-family: "Libre Baskerville", sans-serif;
  margin: 0;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.14;
}
.warehouse-type-landing__listing-title, .warehouse-type-landing__cta-title {
  font-family: "Libre Baskerville", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.14;
  margin: 0;
}
.warehouse-type-landing__description {
  font-size: 22px;
  line-height: 1.15;
  font-weight: 300;
}
.warehouse-type-landing__features {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.warehouse-type-landing__features li {
  position: relative;
  font-size: 22px;
  line-height: 1.15;
  font-weight: 300;
  display: flex;
  align-items: center;
  gap: 12px;
}
.warehouse-type-landing__features li svg circle {
  fill: var(--warehouse-type-accent);
}
.warehouse-type-landing__hero-media {
  position: relative;
  margin-left: -158px;
  margin-top: 45px;
  margin-bottom: 57px;
  z-index: 2;
}
.warehouse-type-landing__hero-image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 28px;
}
.warehouse-type-landing__listing-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 43px;
}
.warehouse-type-landing__map-button, .warehouse-type-landing__cta-button {
  font-size: 1rem;
  color: #861013;
  background-color: #FEFEFF;
  padding: 20.5px 35px;
  border: 2px solid #861013;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.warehouse-type-landing__map-button:hover, .warehouse-type-landing__cta-button:hover {
  background-color: #861013;
  color: #FEFEFF;
  cursor: pointer;
}
.warehouse-type-landing__map-button svg, .warehouse-type-landing__cta-button svg {
  width: 20px;
  height: 20px;
}
.warehouse-type-landing__map-button svg path, .warehouse-type-landing__cta-button svg path {
  stroke: currentColor;
}
.warehouse-type-landing__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}
.warehouse-type-landing__listing {
  width: 100%;
  margin-bottom: 50px;
  z-index: 3;
}
.warehouse-type-landing__card {
  overflow: hidden;
  border: 2px solid var(--warehouse-type-accent);
  border-radius: 24px;
  background: #FEFEFF;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.warehouse-type-landing__card:hover {
  transform: translate(-2px, 2px);
  box-shadow: 0px 8px 0px 0px var(--rsa-stat-accent-dark, var(--rsa-stat-accent, var(--warehouse-type-accent-dark)));
}
.warehouse-type-landing__card-image-link {
  position: relative;
  display: block;
}
.warehouse-type-landing__card-image {
  display: block;
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 22px;
}
.warehouse-type-landing__card-type {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 5px 15px;
  border-radius: 999px;
  background: #FEFEFF;
  color: var(--warehouse-type-accent);
  border: 1px solid var(--warehouse-type-accent);
  font-size: 12px;
  font-weight: 700;
}
.warehouse-type-landing__card-body {
  padding: 20px;
}
.warehouse-type-landing__card-title {
  margin: 0 0 10px;
  font-family: "Libre Baskerville", sans-serif;
  font-size: 24px;
  font-weight: 400;
}
.warehouse-type-landing__card-title a {
  color: #171717;
  text-decoration: none;
}
.warehouse-type-landing__card-location {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 300;
}
.warehouse-type-landing__card-location svg {
  margin-right: 2px;
}
.warehouse-type-landing__card-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid rgba(23, 23, 23, 0.12);
  border-bottom: 1px solid rgba(23, 23, 23, 0.12);
}
.warehouse-type-landing__card-stats span {
  display: block;
  margin-bottom: 6px;
  font-size: 0.75rem;
  font-weight: 300;
}
.warehouse-type-landing__card-stats strong {
  font-size: 1.125rem;
  font-weight: 700;
}
.warehouse-type-landing__card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px 0;
}
.warehouse-type-landing__card-tags span {
  padding: 6px 12px;
  border: 1px solid var(--warehouse-type-accent-soft);
  border-radius: 999px;
  font-size: 8px;
  text-transform: uppercase;
}
.warehouse-type-landing__card-button {
  width: 100%;
  background: var(--warehouse-type-accent);
  color: var(--warehouse-type-accent-contrast);
  text-decoration: none;
  font-size: 1rem;
  color: var(--warehouse-type-accent-contrast);
  background-color: var(--warehouse-type-accent);
  padding: 12px;
  border: 2px solid var(--warehouse-type-accent);
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.warehouse-type-landing__card-button:hover {
  background-color: var(--warehouse-type-accent-contrast);
  color: var(--warehouse-type-accent);
  cursor: pointer;
}
.warehouse-type-landing__card-button svg {
  width: 20px;
  height: 20px;
}
.warehouse-type-landing__card-button svg path {
  stroke: currentColor;
}
.warehouse-type-landing__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 48px;
  border-radius: 24px;
  background: #FDA909;
  width: 100%;
  position: relative;
  z-index: 3;
}
.warehouse-type-landing__cta-title {
  margin-bottom: 12px;
  color: var(--warehouse-type-accent-contrast);
  font-size: 2rem;
  line-height: 1.14;
}
.warehouse-type-landing__cta-text {
  color: #171717;
}
.warehouse-type-landing__decorations {
  height: 100%;
  left: 50%;
  pointer-events: none;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  width: 100%;
  z-index: 1;
}
.warehouse-type-landing__decoration-lines--verdigris {
  position: absolute;
  top: 40px;
  right: 30px;
  bottom: auto;
  left: auto;
  width: 435px;
  height: 400px;
  -webkit-mask-image: repeating-linear-gradient(to right, black, black 29px, transparent 29px, transparent 58px);
  mask-image: repeating-linear-gradient(to right, black, black 29px, transparent 29px, transparent 58px);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0, 0 0 0 0 0, 0 0 0 0 0, 0 0 0 0.25 0' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E"), linear-gradient(to bottom, var(--warehouse-type-accent), var(--warehouse-type-accent-dark));
}
.warehouse-type-landing__decoration-lines--blue {
  position: absolute;
  top: auto;
  right: 100px;
  bottom: 72px;
  left: auto;
  width: 203px;
  height: 100vh;
  -webkit-mask-image: repeating-linear-gradient(to right, black, black 29px, transparent 29px, transparent 58px);
  mask-image: repeating-linear-gradient(to right, black, black 29px, transparent 29px, transparent 58px);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0, 0 0 0 0 0, 0 0 0 0 0, 0 0 0 0.25 0' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E"), linear-gradient(to bottom, #5667BA, #27365F);
}

@media (max-width: 1200px) {
  .warehouse-type-landing__decoration-lines--verdigris {
    right: 60px;
  }
}
@media (max-width: 1100px) {
  .warehouse-type-landing__hero {
    flex-direction: column;
    padding: 44px 33px 44px 33px;
  }
  .warehouse-type-landing__hero-panel {
    margin-right: 150px;
    padding: 46px 35px 100px 78px;
  }
  .warehouse-type-landing__hero-media {
    margin-left: 150px;
    margin-top: -50px;
  }
  .warehouse-type-landing__grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767px) {
  .warehouse-type-landing__hero-panel {
    padding: 24px 20px;
    margin: 0;
    gap: 24px;
  }
  .warehouse-type-landing__hero-media {
    margin: 0;
  }
  .warehouse-type-landing__description, .warehouse-type-landing__features li {
    font-size: 18px;
  }
  .warehouse-type-landing__hero, .warehouse-type-landing__cta {
    padding: 20px;
  }
  .warehouse-type-landing__listing-header, .warehouse-type-landing__cta {
    flex-direction: column;
    align-items: stretch;
  }
  .warehouse-type-landing__title, .warehouse-type-landing__listing-title, .warehouse-type-landing__cta-title {
    font-size: 1.8rem;
  }
  .warehouse-type-landing__card-stats {
    grid-template-columns: 1fr;
  }
  .warehouse-type-landing__decoration-lines--blue {
    height: 50vh;
    right: 40px;
  }
  .warehouse-type-landing__features li svg {
    width: 20px;
    height: 20px;
  }
}
/*# sourceMappingURL=warehouse-type.css.map */
