.info-fourth {
  grid-area: fourth;
  max-width: 550px;
  width: 100%;
  max-height: 524px;
  transition: all linear .3s;
  padding: 20px 16px 33px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 470px;
}

.info-fourth:hover {
  transition: all linear .3s;
  background: linear-gradient(169.5deg, rgba(115, 16, 139, 0.1) 0%, rgba(60, 0, 74, 0.1) 100%);
  box-shadow: 8px 0px 50px 10px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(24px);
}

.info-fourth__title {
  font-family: Inter;
  font-style: normal;
  font-weight: 900;
  font-size: 24px;
  line-height: 29px;
  color: #262626;
  margin: 0 0 11px;
}

.info-fourth__title a{
	text-decoration:none;
	color: #262626;
}
.info-fourth__title a:hover{
	text-decoration:underline;
}

.info-fourth__text {
  font-family: Inter;
  font-style: normal;
  font-weight: 400;
  text-align: justify;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.02em;
  color: #262626;
  max-height: 360px;
  overflow: hidden;
  margin: 0 0 10px;
}

.info-fourth__date {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.info-fourth__date:before {
  position: absolute;
  content: '';
  bottom: 0;
  right: 0;
  left: 0;
  border: 1px solid #262626;
}

.info-fourth__date p {
  font-family: Inter;
  font-style: normal;
  font-weight: 200;
  font-size: 14px;
  line-height: 17px;
  color: #FFFFFF;
  position: relative;
  z-index: 1;
}

.info-fourth__date > div {
  width: 157px;
  background: #262626;
  display: flex;
  padding: 3px 11px;
  justify-content: space-around;
  align-items: center;
}

@media screen and (max-width: 1600px) {
  .info-fourth {
    max-width: 100%;
    min-width: 265px;
  }
}


@media screen and (max-width: 700px) {
  .info-fourth__title {
    font-size: 20px;
    line-height: 24px;
  }
}


.post-main {
  width: 100%;
  max-width: 1400px;
  padding: 0 0 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-height: none;
}

.post-wrapper {
  width: 100%;
  margin: 0 0 50px 0;
}

.post-head {
  width: 100%;
  max-width: 666px;
  padding: 84px 20px 25px;
  margin: 0 auto;
}

.post-head__title {
  font-weight: 900;
  font-size: 36px;
  line-height: 44px;
  margin: 0 0 40px 0;
}

.post-body {
  max-width: 666px;
  width: 100%;
  padding: 0 20px;
}

.post-body__text {
  max-height: none;
  overflow: inherit;
  margin: 0 0 30px;
}

.post-body__links {
  display: flex;
  justify-content: space-between;
}

.post-body__link {
  font-weight: 900;
  font-size: 14px;
  line-height: 17px;
  letter-spacing: 0.13px;
  text-decoration-line: underline;
  color: #262626;
}
.post-body__link:hover {
  cursor: pointer;
  text-decoration-line: none;
}

.post-body__text > p {
  margin: 0 0 30px;
  text-align: left;
}

.post-body__text > img {
  float: left;
  margin: 0 20px 0 0;
  width: 340px;
}

@media screen and (max-width: 700px) {
  .post {
    margin: 40px 0 0;
  }

  .post-main {
    padding-bottom: 30px;
  }

  .post-wrapper {
    margin-bottom: 30px;
  }

  .post-head {
    padding-top: 20px;
  }

  .post-head__title {
    font-size: 20px;
    line-height: 24px;
  }

  .post-body__text > p {
    font-size: 10px;
    line-height: 14px;
    letter-spacing: -0.02em;
    margin-bottom: 15px;
  }

  .post-body__text > img {
    width: 100%;
    float: none;
    margin: 0 0 15px;
  }
}
