.invest-philosophy {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: #1a243d; /* Dark blue background from design */
  color: #ffffff;
}

.invest-philosophy__container {
  width: min(1280px, calc(100% - 3rem));
  margin: 0 auto;
}

.invest-philosophy__title {
  margin: 0 0 clamp(3rem, 6vw, 5rem);
  font-family:
    "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.invest-philosophy__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 4rem);
  position: relative;
}

.invest-philosophy__item {
  position: relative;
}

/* Vertical separators */
.invest-philosophy__item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0;
  right: calc(clamp(2rem, 4vw, 4rem) / -2);
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.15);
}

.invest-philosophy__item-title {
  margin: 0 0 1rem;
  font-family:
    "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.invest-philosophy__item-desc {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  max-width: 20rem;
}

@media (max-width: 900px) {
  .invest-philosophy__items {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .invest-philosophy__item:not(:last-child)::after {
    bottom: -1.5rem;
    top: auto;
    left: 0;
    right: 0;
    width: 60px;
    height: 1px;
  }

  .invest-philosophy__item-desc {
    max-width: none;
  }
}
