:root {
  --black: #fff;
  --Black: #000;
  --bg-light-blue-50: rgba(226, 236, 247, 0.5);
  --Secondary-Purple-20: #e2ecf7;
  --Main-Purple: #4c57ff;
}
.section--press {
  background-color: var(--white);
  padding: 80px 0;
}
.section--press .main--title {
  font-size: 50px;
  line-height: 1.4;
  font-weight: 600;
  margin-bottom: 56px;
}
.section--press .grid {
  margin: -20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  justify-content: center;
}
.section--press .grid--item {
  width: 100%;
  min-width: 290px;
  padding: 20px;
  margin: 0;
  transition: background-color 0.3s ease;
}
.section--press .grid--item .inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  background-color: var(--bg-light-blue-50);
  height: 100%;
  min-height: 290px;
  padding: 0;
}
.section--press .grid--item .inner:hover {
  background-color: var(--Secondary-Purple-20);
}
.section--press .grid--item .inner .content {
  height: 100%;
  min-height: 202px;
  padding: 0 24px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.section--press .image--wrapper {
  width: 100%;
  height: 40px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 88px;
}
.section--press .image--wrapper img {
  filter: grayscale(100%);
  max-height: 40px;
  height: auto;
}
.section--press .grid--item .grid--item-text {
  color: var(--Black);
  font-size: 20px;
  font-size: clamp(1.125rem, 1.1rem + 0.125vw, 1.25rem);
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0;
}
.section--press .grid--item .grid--item-text .tight {
  letter-spacing: -0.2px;
}
.capSizedText .grid--item-text::before {
  content: "";
  margin-bottom: -0.35em;
  display: table;
}
.capSizedText::after {
  content: "";
  margin-top: -0.348em;
  display: table;
}
.section--press .grid--item .grid--item-link {
  color: var(--Main-Purple);
  font-size: 16px;
  font-weight: 400;
  line-height: 27px;
  text-decoration: none;
}
.section--press .grid--item .grid--item-link:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .section--press .main--title {
    font-size: 31px;
    margin-bottom: 24px;
  }
}
