@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&display=swap");
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  outline: 0;
  -webkit-tap-highlight-color: transparent;
}

body {
  display: -ms-grid;
  display: grid;
  place-items: center;
  min-height: 100vh;
  font-family: 'Montserrat', sans-serif;
  color: #222222;
  background-color: #f2f3f5;
}

img {
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
}

.post {
  padding: 5rem 0;
}

.post .container {
  display: -ms-grid;
  display: grid;
  gap: 30px;
}

@media screen and (min-width: 800px) {
  .post .container {
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
  }
}

.post-card {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 0.8rem rgba(0, 0, 0, 0.02);
          box-shadow: 0 0 0.8rem rgba(0, 0, 0, 0.02);
}

@media screen and (min-width: 800px) {
  .post-card--single {
    -ms-grid-column: 2;
    grid-column: 2 / 2;
  }
}

.post-card__head {
  overflow: hidden;
}

.post-card__head__image {
  width: 100%;
  height: 100%;
  -webkit-transition: -webkit-transform .3s ease-in-out;
  transition: -webkit-transform .3s ease-in-out;
  -o-transition: -o-transform .3s ease-in-out;
  -moz-transition: transform .3s ease-in-out, -moz-transform .3s ease-in-out;
  transition: transform .3s ease-in-out;
  transition: transform .3s ease-in-out, -webkit-transform .3s ease-in-out, -moz-transform .3s ease-in-out, -o-transform .3s ease-in-out;
}

.post-card__head:hover .post-card__head__image {
  -webkit-transform: scale(1.1);
     -moz-transform: scale(1.1);
      -ms-transform: scale(1.1);
       -o-transform: scale(1.1);
          transform: scale(1.1);
}

.post-card__body {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
     -moz-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding: 1rem;
}

.post-card__title {
  margin-bottom: 0.7rem;
}

.post-card__title__link {
  color: #5a67b2;
  font-size: 1.3rem;
  font-weight: 700;
  text-decoration: none;
}

.post-card__title__link:hover {
  -webkit-text-decoration: underline #e4e6ea;
     -moz-text-decoration: underline #e4e6ea;
          text-decoration: underline #e4e6ea;
}

.post-card__text {
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.5;
}

.post-card__social {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.6rem;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  list-style-type: none;
  padding: 1rem;
  border-top: 1px solid #f2f3f5;
}

.post-card__social__link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  color: #5a67b2;
  border: 1px solid #e4e6ea;
  border-radius: 50%;
  text-decoration: none;
  -webkit-transition: all .3s linear;
  -o-transition: all .3s linear;
  -moz-transition: all .3s linear;
  transition: all .3s linear;
}

.post-card__social__link:hover {
  color: #ffffff;
  background-color: #5a67b2;
  border-color: #5a67b2;
}
/*# sourceMappingURL=style.css.map */