#where-we-invest {
  display: inline-block;
  width: 100%;
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (width <= 768px) {
  #where-we-invest {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
#where-we-invest .container {
  display: flex;
  flex-direction: column;
  gap: 48px;
  max-width: 1600px;
  margin: 0 auto;
}
@media (width <= 768px) {
  #where-we-invest .container {
    gap: 32px;
    padding: 0 20px;
  }
}
#where-we-invest .container .title h2 {
  margin: 0;
}
@media (width <= 500px) {
  #where-we-invest .container .title h2 {
    text-align: left;
  }
}
#where-we-invest .container .posts {
  display: flex;
  align-items: stretch;
  gap: 32px;
}
@media (width <= 768px) {
  #where-we-invest .container .posts {
    gap: 16px;
  }
}
@media (width <= 699px) {
  #where-we-invest .container .posts {
    flex-direction: column;
    gap: 32px;
  }
}
#where-we-invest .container .posts .post {
  display: flex;
  flex-direction: column;
  width: 100%;
}
#where-we-invest .container .posts .image a {
  border-radius: 12px 12px 0 0;
  width: 100%;
  overflow: hidden;
  position: relative;
  height: auto;
  max-height: 180px;
  aspect-ratio: 32/15;
  display: block;
}
@media (width <= 500px) {
  #where-we-invest .container .posts .image a {
    aspect-ratio: 32/17;
  }
}
#where-we-invest .container .posts .image a img {
  width: 100%;
  height: 100%;
  transition: all var(--animation-duration) ease-in-out;
  border-radius: inherit;
  -o-object-fit: cover;
     object-fit: cover;
}
#where-we-invest .container .posts .image a img:hover {
  transform: scale(var(--image-scale));
}
#where-we-invest .container .wrapper {
  display: flex;
  padding: 28px 24px;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  flex: 1;
  gap: 12px;
  background: var(--default-primary-1, #FEFEFE);
  border-radius: 0 0 12px 12px;
  border-right: 1px solid var(--grey-stroke, #E8EBEF);
  border-bottom: 1px solid var(--grey-stroke, #E8EBEF);
  border-left: 1px solid var(--grey-stroke, #E8EBEF);
}
@media (width <= 768px) {
  #where-we-invest .container .wrapper {
    padding: 25px 20px;
  }
}
#where-we-invest .container .wrapper .content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  align-self: stretch;
  flex: 1;
  flex-grow: 1;
  padding-bottom: 52px;
  border-bottom: 1px solid var(--grey-stroke, #E8EBEF);
}
#where-we-invest .container .wrapper .content .description {
  color: var(--default-primary-2, #030D16);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
#where-we-invest .container .wrapper .title {
  margin: 0;
}
#where-we-invest .container .wrapper .title a {
  font-size: 20px;
  font-weight: 600;
  line-height: 28px; /* 140% */
}
#where-we-invest .container .wrapper a {
  color: inherit;
  text-decoration: none;
}
#where-we-invest .title .description {
  margin: 16px auto 0;
  max-width: 614px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.56;
  text-align: center;
  color: var(--dark-grey-stroke-secondary-text, #303A43);
}