.boten-assets {
  background: #ffffff;
  border-top: 1px solid rgba(0, 51, 102, 0.14);
  color: #102033;
  padding: clamp(64px, 8vw, 112px) 24px;
}

.boten-assets *,
.boten-assets *::before,
.boten-assets *::after {
  box-sizing: border-box;
}

.boten-assets__inner {
  margin: 0 auto;
  max-width: 1180px;
}

.boten-assets__heading {
  margin-bottom: clamp(28px, 4vw, 44px);
  max-width: 820px;
}

.boten-assets__heading p {
  color: #e94e1b;
  font-size: 0.94rem;
  font-weight: 850;
  margin: 0 0 14px;
}

.boten-assets__heading h2 {
  color: #003366;
  font-size: clamp(2rem, 4.2vw, 3.35rem);
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.14;
  margin: 0;
}

.boten-assets__grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.boten-asset-card {
  background: #f7faf8;
  border: 1px solid rgba(0, 51, 102, 0.14);
  border-radius: 8px;
  color: inherit;
  display: grid;
  grid-template-rows: 220px 1fr;
  min-height: 640px;
  overflow: hidden;
  text-decoration: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.boten-asset-card:hover,
.boten-asset-card:focus-visible {
  border-color: rgba(233, 78, 27, 0.42);
  box-shadow: 0 24px 48px rgba(16, 32, 51, 0.14);
  outline: none;
  transform: translateY(-6px);
}

.boten-asset-card__media {
  background: #eaf0ed;
  overflow: hidden;
}

.boten-asset-card__media img {
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
  width: 100%;
}

.boten-asset-card:hover .boten-asset-card__media img,
.boten-asset-card:focus-visible .boten-asset-card__media img {
  transform: scale(1.045);
}

.boten-asset-card__body {
  display: grid;
  gap: 16px;
  padding: 24px;
}

.boten-asset-card__type {
  color: #e94e1b;
  font-size: 0.9rem;
  font-weight: 850;
}

.boten-asset-card strong {
  color: #003366;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  font-weight: 900;
  line-height: 1.12;
}

.boten-asset-card__summary {
  color: #33495f;
  font-size: 1rem;
  font-weight: 750;
  line-height: 1.62;
}

.boten-asset-card__facts {
  display: grid;
  gap: 10px;
}

.boten-asset-card__facts > span {
  border-top: 1px solid rgba(0, 51, 102, 0.12);
  color: #526373;
  display: grid;
  gap: 3px;
  line-height: 1.45;
  padding-top: 10px;
}

.boten-asset-card__facts b {
  color: #003366;
  font-size: 0.84rem;
  font-weight: 850;
}

.boten-asset-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.boten-asset-card__tags span {
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 850;
  padding: 7px 10px;
}

.boten-asset-card--apartment .boten-asset-card__tags span {
  background: rgba(0, 51, 102, 0.08);
  color: #003366;
}

.boten-asset-card--retail .boten-asset-card__tags span {
  background: rgba(216, 162, 57, 0.14);
  color: #8a5d00;
}

.boten-asset-card--hotel .boten-asset-card__tags span {
  background: rgba(47, 125, 80, 0.1);
  color: #2f7d50;
}

.boten-asset-card--industrial .boten-asset-card__tags span {
  background: rgba(38, 48, 58, 0.1);
  color: #26303a;
}

.boten-asset-card__link {
  align-self: end;
  color: #003366;
  font-weight: 900;
}

@media (max-width: 1180px) {
  .boten-assets__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .boten-assets {
    padding-left: 18px;
    padding-right: 18px;
  }

  .boten-assets__grid {
    display: flex;
    margin-left: -18px;
    margin-right: -18px;
    overflow-x: auto;
    padding: 0 18px 12px;
    scroll-snap-type: x mandatory;
  }

  .boten-assets__grid::-webkit-scrollbar {
    display: none;
  }

  .boten-asset-card {
    flex: 0 0 min(86vw, 390px);
    grid-template-rows: 210px 1fr;
    min-height: 660px;
    scroll-snap-align: start;
  }
}

@media (max-width: 420px) {
  .boten-asset-card {
    flex-basis: 88vw;
  }

  .boten-asset-card__body {
    padding: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .boten-asset-card,
  .boten-asset-card__media img {
    transition-duration: 0.001ms;
  }
}
