.media-about-section {
  padding-top: 80px;
  padding-bottom: 80px;
}
.media-about-section__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.media-about-section__title {
  margin: 0 0 54px;
  color: var(--black-100, #000);
  text-align: center;
  font-family: "e-Ukraine", sans-serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.96px;
  text-transform: uppercase;
}
.media-about-section__grid {
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(0, 1fr))[4];
  grid-template-columns: repeat(4, minmax(0, 1fr));
  -webkit-column-gap: 36px;
     -moz-column-gap: 36px;
          column-gap: 36px;
  row-gap: 40px;
  margin-bottom: 48px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.media-about-section__button-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.media-about-section__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 250px;
  height: 54px;
  padding: 14px 18px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  border-radius: 2px;
  background: var(--black-100, #000);
  color: var(--white-100, #FFF);
  font-family: "e-Ukraine", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.32px;
  text-transform: uppercase;
  text-decoration: none;
  -webkit-transition: background-color 0.2s ease, color 0.2s ease;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.media-about-section__button:hover {
  color: #A8CFC0;
}
@media (max-width: 1200px) {
  .media-about-section__grid {
    -ms-grid-columns: (minmax(0, 1fr))[2];
    grid-template-columns: repeat(2, minmax(0, 1fr));
    -webkit-column-gap: 24px;
       -moz-column-gap: 24px;
            column-gap: 24px;
  }
}
@media (max-width: 768px) {
  .media-about-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .media-about-section__title {
    font-size: 32px;
    letter-spacing: -0.64px;
    margin-bottom: 40px;
  }
  .media-about-section__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    row-gap: 32px;
    margin-bottom: 40px;
  }
  .media-about-section__button {
    width: 100%;
    max-width: 320px;
  }
}

.media-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.media-card__image-link,
.media-card__image-wrap {
  display: block;
  width: 100%;
  margin-bottom: 20px;
}

.media-card__image {
  width: 100%;
  height: 198px;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}

.media-card__date {
  overflow: hidden;
  color: var(--black-34, rgba(0, 0, 0, 0.34));
  text-overflow: ellipsis;
  font-family: "e-Ukraine", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.28px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.media-card__title {
  margin: 0 0 34px;
  color: var(--black-100, #000);
  font-family: "e-Ukraine", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.48px;
  text-transform: uppercase;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.media-card__title a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.media-card__title a:hover {
  color: #A8CFC0;
}

.media-card__readmore {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  text-decoration: none;
  color: var(--black-100, #000);
  font-family: "e-Ukraine", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.28px;
  text-transform: uppercase;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
  margin-top: auto;
}
.media-card__readmore:hover {
  color: #A8CFC0;
}

.media-card__readmore-icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.media-card__readmore-icon svg {
  display: block;
}