.new_press {
  position: relative;
  padding-top: 80px;
  padding-bottom: 120px;
}

.new_press__title {
  text-align: center;
  margin-bottom: 16px;
  font-weight: 700;
  font-size: 36px;
  line-height: 44px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: -0.02em;
}

.new_press__text {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.new_press__text p {
  margin-bottom: 28px;
}

.new_press__text p:last-child {
  margin-bottom: 0;
}

.new_press__list {
  margin-top: 80px;
  display: grid;
  grid-template-columns: auto auto;
  justify-content: center;
  gap: 80px;
}

.new_press__item {
  max-width: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #1c1c20;
  transition: all 0.3s ease-in-out;
}

.new_press__item:hover {
  color: #3d209f;
}

.new_press__item:hover .new_press__item-img::after {
  background-color: #3d209f;
}

.new_press__item:hover .new_press__item-text-arrow {
  left: 5px;
}

.new_press__item-img {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  flex-shrink: 0;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: #ebf6ff;
  margin-bottom: 32px;
}

.new_press__item-img img {
  max-width: 80%;
  max-height: 80%;
}

.new_press__item-img::after {
  content: "";
  position: absolute;
  width: 56px;
  height: 56px;
  right: 0;
  bottom: 0;
  background-image: url("../../../new_icon/new_press__download.svg");
  background-repeat: no-repeat;
  background-size: 18px 18px;
  background-position: center;
  background-color: #1c1c20;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
}

.new_press__item-text {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  -webkit-text-decoration-line: underline;
  text-decoration-line: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

.new_press__item-text-arrow {
  position: relative;
  left: 0;
  transition: all 0.3s ease-in-out;
}

.new_press__item-text-arrow svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
}

@media (max-width: 1024px) {
  .new_press__list {
    margin-top: 48px;
  }
}

@media (max-width: 600px) {
  .new_press {
    padding-top: 64px;
  }

  .new_press__title {
    font-size: 32px;
    line-height: 40px;
  }

  .new_press__text {
    font-size: 14px;
    line-height: 20px;
  }

  .new_press__text p {
    margin-bottom: 20px;
  }

  .new_press__text p:last-child {
    margin-bottom: 0;
  }

  .new_press__list {
    margin-top: 48px;
    grid-template-columns: 1fr;
  }

  .new_press__item {
    max-width: 100%;
  }
}

/************************************************************************/
.new_press_contact .new_press__item {
  position: relative;
  z-index: 1;
  max-width: 100%;
  color: #1c1c20;
  transition: all 0.3s ease-in-out;
  padding: 60px;
  border-radius: 50%;
}

.new_press_contact .new_press__item:hover {
  transform: scale(0.95);
}

.new_press_contact .new_press__item-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(180deg, #3D2AA4 0%, #291A7A 100%);
  margin-bottom: 0;
}

.new_press_contact .new_press__item-img img {
  max-width: 50%;
  max-height: 50%;
}

.new_press_contact .new_press__item::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 50%;
  background: #ebf6ff;
}

.new_press_contact .new_press__item-img::after {
  display: none;
}

@media (max-width: 600px) {
  .new_press_contact .new_press__list {
    grid-template-columns: auto auto;
    gap: 24px;
  }

  .new_press_contact .new_press__item {
    padding: 30px;
  }

  .new_press_contact .new_press__item-img {
    width: 60px;
    height: 60px;
  }

}