.three-collumn-section__content {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .three-collumn-section__content {
    gap: 1.5rem;
  }
}
@media (min-width: 768px) {
  .three-collumn-section__content {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 992px) {
  .three-collumn-section__content {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.three-collumn-section__collumn {
  flex: 1;
}
@media (min-width: 768px) and (max-width: 991px) {
  .three-collumn-section__collumn:first-child {
    grid-column: span 2;
  }
}
.three-collumn-section__collumn:last-child {
  padding-left: 5rem;
}
.three-collumn-section__title {
  line-height: 0.9;
}
@media (min-width: 992px) {
  .three-collumn-section__title {
    margin-top: 100px;
    margin-bottom: 4rem;
  }
}
.three-collumn-section__title span {
  display: block;
}
.three-collumn-section__image {
  width: 100%;
  height: auto;
  display: block;
}
.three-collumn-section__description {
  font-size: 1.125rem;
  line-height: 1.5rem;
  letter-spacing: 0.05em;
  color: #121212;
  font-weight: 300;
}
@media (min-width: 768px) {
  .three-collumn-section__description {
    font-size: 1.25rem;
    line-height: 1.875rem;
  }
}
@media (min-width: 992px) {
  .three-collumn-section__description {
    margin-top: 150px;
  }
}

.investment-cards-section__left-column .three-collumn-section__title {
  margin-top: 1rem;
}
@media (min-width: 992px) {
  .investment-cards-section__left-column .three-collumn-section__title {
    margin-top: 1rem;
  }
}
.investment-cards-section__description p {
  margin-bottom: 1em;
}
.investment-cards-section__description p:last-child {
  margin-bottom: 0;
}
.investment-cards-section__description ul, .investment-cards-section__description ol {
  margin: 1em 0;
  padding-left: 1.5em;
}
.investment-cards-section__description strong {
  font-weight: 600;
}
.investment-cards-section__description em {
  font-style: italic;
}

.investment-card__status {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  border-radius: 1rem;
  width: fit-content;
}
.investment-card__info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.investment-card__info-item {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.investment-card__info-value {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
  color: #000000;
  font-family: "Playfair Display", serif;
}
.investment-card__info-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #000000;
}
.investment-card__info-label svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.investment-card__info-label img.investment-card__info-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex-shrink: 0;
}
