main.press-release section.hero {
  --scroll-ajust: 4000;
  --scroll-offset: max(1,calc(1 + var(--scrollPosition,1)/var(--scroll-ajust,1)));
  --position-radial-gradient-left: calc(96.21% * var(--scroll-offset));
  --position-radial-gradient-top: calc(108.44% * var(--scroll-offset));
  transition: 0.3s ease-in-out;
  transition-property: background;
  background: radial-gradient(96.21% 108.44% at 94.34% 113.69%, #16EBF9 2%, #3378FF 32%, rgba(51, 59, 255, 0.54) 63%, rgba(51, 96, 255, 0) 100%);
  margin-top: 0px;
  padding: 0px;
}
main.press-release section.hero .container {
  padding: 0px;
  padding: var(--spacing-4-xl) 0px;
  position: relative;
  z-index: 2;
}
main.press-release section.hero .container h1 {
  font-size: 56px;
  text-align: center;
  max-width: var(--col-8);
  margin: auto;
}
@media screen and (max-width: 768px) {
  main.press-release section.hero .container h1 {
    max-width: 100%;
  }
}
@media screen and (max-width: 550px) {
  main.press-release section.hero .container h1 {
    font-size: 50px;
  }
}
@media screen and (max-width: 400px) {
  main.press-release section.hero .container h1 {
    font-size: 40px;
  }
}
main.press-release section.hero .container .logo {
  max-width: 460px;
  margin: auto;
  margin-bottom: var(--spacing-xl);
}
main.press-release section.content {
  padding-top: var(--spacing-3-xl);
  max-width: var(--col-6);
  margin: auto;
  position: relative;
}
@media screen and (max-width: 768px) {
  main.press-release section.content {
    max-width: 100%;
  }
}
main.press-release section.content:after {
  position: absolute;
  top: 10%;
  right: -500px;
  content: "";
  display: block;
  width: 400px;
  height: 400px;
  border-radius: 842px;
  z-index: -1;
  opacity: 0.3;
  background: var(--Color-Brand-Sky-Blue, #0FBCFF);
  filter: blur(200px);
}
main.press-release section.content:before {
  position: absolute;
  top: 30%;
  left: -500px;
  content: "";
  display: block;
  width: 400px;
  height: 400px;
  border-radius: 842px;
  z-index: -1;
  opacity: 0.3;
  background: var(--Color-Brand-Sky-Blue, #0FBCFF);
  filter: blur(200px);
}
main.press-release section.content p {
  margin-bottom: var(--spacing-m);
}
main.press-release section.content figure {
  width: 100%;
  margin: 0px;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  margin: var(--spacing-3-xl) 0px;
}
main.press-release section.content figure img {
  width: 100%;
  height: auto;
}
main.press-release section.content h2, main.press-release section.content h3 {
  margin-bottom: var(--spacing-xl);
}
main.press-release section.other-press-releases {
  padding: var(--spacing-4-xl) 0px;
  position: relative;
}
@media screen and (max-width: 768px) {
  main.press-release section.other-press-releases {
    padding: var(--spacing-2-xl) 0px;
  }
}
main.press-release section.other-press-releases:before {
  position: absolute;
  top: -200px;
  content: "";
  display: block;
  width: 400px;
  height: 400px;
  border-radius: 842px;
  z-index: -1;
  opacity: 0.3;
  background: var(--Color-Brand-Sky-Blue, #0FBCFF);
  filter: blur(200px);
}
main.press-release section.other-press-releases:after {
  position: absolute;
  top: -400px;
  right: 0px;
  content: "";
  display: block;
  width: 400px;
  height: 400px;
  border-radius: 842px;
  z-index: -1;
  opacity: 0.3;
  background: var(--Color-Brand-Sky-Blue, #0FBCFF);
  filter: blur(200px);
}
main.press-release section.other-press-releases .container h2 {
  text-align: center;
}
main.press-release section.other-press-releases .container .text {
  text-align: center;
  max-width: var(--col-8);
  margin: auto;
  margin-bottom: var(--spacing-3-xl);
}
@media screen and (max-width: 768px) {
  main.press-release section.other-press-releases .container .text {
    max-width: 100%;
    margin-bottom: var(--spacing-xl);
  }
}
main.press-release section.other-press-releases .container .cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-l);
}
@media screen and (max-width: 768px) {
  main.press-release section.other-press-releases .container .cards {
    grid-template-columns: repeat(1, 1fr);
  }
}
main.press-release section.other-press-releases .container .cards .card {
  padding: 0px;
  overflow: hidden;
  display: block;
}
main.press-release section.other-press-releases .container .cards .card .card-image {
  aspect-ratio: 16/9;
  background-color: white;
}
main.press-release section.other-press-releases .container .cards .card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
main.press-release section.other-press-releases .container .cards .card .card-content {
  margin: 0px;
  padding: 20px;
  min-height: 150px;
  padding-bottom: 60px;
}
main.press-release section.other-press-releases .container .cards .card .card-content h4 {
  margin: 0px;
  font-size: 20px;
  font-weight: 300;
}
main.press-release section.other-press-releases .container .cards .card .read-more {
  position: absolute;
  bottom: 20px;
  padding-left: 20px;
}