.press-posts {
  padding: 80px 0;
  background-color: var(--light-fon, #f5faff);
}
@media (width <= 1023px) {
  .press-posts {
    padding: 60px 0;
  }
}
@media (width <= 767px) {
  .press-posts {
    padding: 40px 0;
  }
}
.press-posts .container {
  padding-top: 0;
  padding-bottom: 0;
  max-width: 1600px;
  margin: 0 auto;
}
.press-posts__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 48px;
}
@media (width <= 575px) {
  .press-posts__header {
    margin-bottom: 32px;
  }
}
.press-posts__title {
  margin: 0;
}
@media (width <= 500px) {
  .press-posts__title {
    text-align: left;
    margin: 0 auto 0 0;
  }
}
.press-posts__button {
  display: flex;
  justify-content: flex-end;
}
@media (width <= 500px) {
  .press-posts__button {
    width: 100%;
  }
}
.press-posts__button.mobile {
  display: none;
  margin-top: 32px;
}
@media (width <= 575px) {
  .press-posts__button.mobile {
    display: flex;
  }
}
.press-posts__button.mobile a {
  width: 100%;
}
@media (width <= 575px) {
  .press-posts__button.desktop {
    display: none;
  }
}
.press-posts__cards {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
@media (width <= 991px) {
  .press-posts__cards {
    gap: 20px;
  }
}
.press-posts .post-card {
  position: relative;
  display: flex;
  flex-direction: column;
  width: calc((100% - 64px) / 3);
  border: 1px solid var(--grey-stroke, #e8ebef);
  background: var(--default-primary-1, #fefefe);
  border-radius: 12px;
  overflow: hidden;
}
@media (width <= 991px) {
  .press-posts .post-card {
    width: calc((100% - 20px) / 2);
  }
}
@media (width <= 575px) {
  .press-posts .post-card {
    width: 100%;
  }
}
.press-posts .post-card__category {
  position: absolute;
  top: 16px;
  left: 16px;
  display: inline-block;
  padding: 4px 8px;
  color: var(--default-primary-1, #fefefe);
  background-color: var(--blue-accent, #3c5a78);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  z-index: 2;
}
.press-posts .post-card__image {
  display: block;
  width: 100%;
  height: 200px;
  overflow: hidden;
}
.press-posts .post-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1);
  transition: var(--animation-duration) ease-in-out;
}
.press-posts .post-card__image:hover img {
  transform: scale(1.1);
}
.press-posts .post-card__content {
  padding: 16px 24px 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.press-posts .post-card__title {
  margin: 0 0 12px;
  color: var(--default-primary-2, #030d16);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.4;
}
.press-posts .post-card__title a {
  color: var(--default-primary-2, #030d16);
  text-decoration: none;
  transition: var(--animation-duration) ease-in-out;
}
.press-posts .post-card__title a:hover {
  color: var(--blue-accent, #3c5a78);
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 6px;
}
.press-posts .post-card__excerpt {
  margin: 0 0 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--dark-grey-stroke-secondary-text, #303a43);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  flex-grow: 1;
}
.press-posts .post-card__meta {
  margin-bottom: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  color: var(--greyblue, #687284);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.43;
}
.press-posts .post-card__date, .press-posts .post-card__author {
  position: relative;
  padding-left: 22px;
}
.press-posts .post-card__date::before, .press-posts .post-card__author::before {
  content: "";
  position: absolute;
  top: 49%;
  left: 0;
  transform: translate(0, -50%);
  width: 14px;
  height: 16px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.press-posts .post-card__author::before {
  background-image: url("../../../src/img/author.svg");
}
.press-posts .post-card__date::before {
  background-image: url("../../../src/img/calendar.svg");
}
.press-posts .post-card .button-4 {
  max-width: 100%;
  width: 100%;
}

.press .container {
  padding-top: 0;
  padding-bottom: 0;
}