.post14-flex {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.post14-margin-top {
  margin-top: 1rem;
}

.post14-a-flex {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.post14-a-flex a {
  color: blue;
  border-bottom: 1px solid blue;
}

.post14-a-flex a:hover {
  color: red;
  border-bottom: 1px solid red;
}

@media screen and (max-width: 768px) {

  .post14-img-size img {
    width: 100%;
    height: auto;
  }

  .post14-a-flex {
    display: inline-block;
    gap: 1rem;
  }

  .post14-a-flex a {
    margin-top: 10px;
    display: inline-block;
  }


}