/* Reset for this component -
Need to talk to Michael and/or Homero about best practices on this */
.entry__content {
  padding-left: 0;
  padding-right: 0;
}
.entry__content p,
.entry__content ul,
.entry__content h2,
.entry__content h3,
.entry__content h4,
.entry__content h5,
.entry__content h6,
.entry__content div {
  grid-column: 1/-1;
}

.post-card-grid {
  display: flex;
  flex-wrap: wrap;
  padding: 0 2px;
  gap: 16px;
}

.post-card-grid__content {
  display: flex;
  background-color: rgba(255, 255, 255, 0.8);
  font-size: 30px;
  padding: 40px;
  width: 100%;
  word-wrap: break-word;
  box-sizing: border-box;
  box-shadow: 0 2px 6px 2px rgba(225, 225, 225, 0.15),
    0 1px 2px rgba(186, 186, 186, 0.3);
}
.post-card-grid__body {
  display: flex;
  flex-direction: column;
  margin-top: 0;
  margin-left: 20px;
  margin-right: 0;
}

.post-card-grid__body .icon-chevron-right {
  margin-top: auto;
}
.post-card-grid__icon {
  display: flex;
  flex: 1;
  align-items: start;
  max-width: 48px;
  margin-right: 24px;
}

.post-card-grid__text {
  display: flex;
  flex-direction: column;
  flex: 2;
  margin-bottom: 80px;
}
.post-card-grid__text h3 {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.063rem;
  font-weight: 700;
}

.post-card-grid__text p {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.125rem;
}

.post-card-grid__text a {
  margin-top: 20px;
}

.post-card-grid__left .post-card-grid__body {
  margin-left: 40px;
}
/* Right Post Card */

.post-card-grid__right .post-card-grid__image {
  order: 1;
}
.post-card-grid__right .post-card-grid__body {
  margin-left: 0;
}

@media (min-width: 768px) {
  .post-card-grid__body {
    margin-left: 40px;
  }

  .post-card-grid__right .post-card-grid__body {
    margin-left: 40px;
  }

  .post-card-grid__text h3 {
    font-size: 1.125rem;
    line-height: 1.375rem;
  }
  .post-card-grid__text p {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.313rem;
  }
  .post-card-grid__icon {
    max-width: 100px;
  }

  .post-card-grid__content {
    width: calc(50% - 16px);
  }
}

@media (min-width: 992px) {
  .post-card-grid__body {
    flex-direction: column;
  }

  .post-card-grid__header {
    display: flex;
    align-content: center;
    margin-bottom: 16px;
  }

  .post-card-grid__body h3 {
    flex: 1;
    font-size: 1.25rem;
    line-height: 1.6rem;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
  .post-card-grid__body p {
    font-size: 1rem;
  }

  .post-card-grid__icon {
    max-width: 40px;
  }
  .post-card-grid__image {
    margin-left: 0;
    margin-right: 0;
  }

  .post-card-grid__content {
    width: calc(33.333% - 16px);
  }
}
