/* Our Investment Philosophy - Figma node 2370:6993 */

.assetmgmt-philosophy {
  background: var(--grey-pure-white);
  padding: 64px 0;
}

.assetmgmt-philosophy__intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  margin-bottom: 32px;
}

.assetmgmt-philosophy__intro h2 {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--grey-pure-black);
}

.assetmgmt-philosophy__quote {
  font-size: 18px;
  font-weight: 600;
  font-style: italic;
  line-height: 1.5;
  color: var(--grey-dark-charcoal);
}

.assetmgmt-philosophy__subtitle {
  font-size: 16px;
  line-height: 1.35;
  color: var(--grey-dark-grey);
}

.assetmgmt-philosophy__grid {
  display: flex;
  gap: 24px;
}

.assetmgmt-philosophy__card {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #f5f8fb;
  border: 1px solid var(--grey-off-white);
  border-radius: 24px;
  padding: 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.assetmgmt-philosophy__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.assetmgmt-philosophy__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--grey-pure-white);
  border-radius: 12px;
  box-shadow: 0px 2px 8.1px 0px rgba(0, 0, 0, 0.08);
}

.assetmgmt-philosophy__icon img {
  width: 28px;
  height: 28px;
}

.assetmgmt-philosophy__card h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--grey-pure-black);
}

.assetmgmt-philosophy__card p {
  font-size: 16px;
  line-height: 1.45;
  color: var(--grey-dark-grey);
}

@media (max-width: 1023px) {
  .assetmgmt-philosophy__grid {
    flex-wrap: wrap;
  }

  .assetmgmt-philosophy__card {
    flex: 1 1 calc(50% - 12px);
  }
}

@media (max-width: 639px) {
  .assetmgmt-philosophy {
    padding: 48px 0;
  }

  .assetmgmt-philosophy__intro h2 {
    font-size: 30px;
  }

  .assetmgmt-philosophy__card {
    flex: 1 1 100%;
  }
}
