.pyramid-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  align-self: stretch;
  padding-top: 60px;
  padding-bottom: 120px;
}

.pyramid-card-section {
  display: flex;
  padding-bottom: 16px;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  border-radius: 8px;
  background: var(--gray-surface-invert, #fff);

  /* Shadow/S */
  box-shadow: 0px 8px 16px 0px rgba(16, 24, 40, 0.1);

  width: 267px;
  height: auto;
  padding-right: 0;
}

.pyramid-card-image {
  display: flex;
  width: 267px;
  height: 396px;
  align-items: center;
  gap: 10px;
  aspect-ratio: 89/132;
  background: var(--Default-Blue-10, #edf5ff);
  border-radius: 8px 8px 0px 0px;
}

.pyramid-card-img-align {
  width: 267px;
  height: 396px;
  flex-shrink: 0;
  border-radius: 8px 8px 0px 0px;
}

.pyramid-card-content {
  display: flex;
  padding: 0px 16px;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  align-self: stretch;
}

.pyramid-card-content-name, .pyramid-card-content strong {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  align-self: stretch;
  overflow: hidden;
  color: var(--gray-text-strong, #2c3059);
  text-overflow: ellipsis;

  /* Desktop/H4 — Bold */
  font-family: "Inter-Bold";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 30px */
}

.pyramid-card-content-sub-name {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  /*-webkit-line-clamp: 2;*/
  align-self: stretch;
  overflow: hidden;
  color: var(--gray-text-strong, #2c3059);
  text-overflow: ellipsis;

  /* Body/Body — Regular */
  font-family: Inter;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 25.6px */
}

.hierarchy-row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
  align-self: stretch;
}

@media (max-width: 768px) {
	.pyramid-card {
    	padding-top: 24px;
		padding-bottom: 72px;
    }

    .hierarchy-row {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 24px;
      align-self: center;
    }
}
