.hero {
  background-image: url("../img/media/media.jpg");
  display: flex;
}

.hero-wrapper {
  display: flex;
  align-items: center;
  text-align: center;
  margin-right: auto;
  margin-left: auto;
}

@media (width < 768px) {
  .media {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
  }
}

@media (width < 768px) {
  .blog-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
}

@media (width >= 768px) {
  .blog-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 320px);
    grid-template-rows: repeat(3, 130px);
    column-gap: 12px;
    justify-content: space-evenly;
    row-gap: 130px;
  }
}

@media (width >= 1280px) {
  .blog-wrapper {
    grid-template-columns: repeat(3, 320px);
    grid-template-rows: repeat(2, 200px);
  }

  @media (width >= 1440px) {
    .blog-wrapper {
      grid-template-columns: repeat(4, 320px);
    }
  }
}

.link {
  text-decoration: none;
}

.text-image {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  text-decoration: none;
  color: black;
}

@media (width >= 768px) {
  .text-image {
    font-size: 18px;
    line-height: 24px;
    margin: 0;
  }
}

@media (width >= 1280px) {
  .text-image {
    font-size: 26px;
    line-height: 34px;
  }
}

.padding-block {
  padding: 30px 20px;
}

@media (width >= 768px) {
  .padding-block {
    padding: 70px 20px;
  }
}

@media (width >= 1280px) {
  .padding-block {
    padding: 100px 60px 180px;
  }
}

@media (width < 768px) {
  .blog-image {
    width: 280px;
    height: 182px;
  }
}

@media (width < 768px) {
  .blog-image-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

.description {
  padding: 60px 20px 0;
  margin: 0;
}

.video {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (width < 1280px) {
  .video-wrp {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
  }
}

.video-frame {
  border-radius: 0px;
  width: 280px;
  height: 158px;
}

@media (width >= 460px) {
  .video-frame {
    width: 400px;
    height: 225px;
  }
}

@media (width >= 700px) {
  .video-frame {
    width: 560px;
    height: 315px;
  }
}