.entry {
  display: flex;
  align-items: flex-start;
  margin-bottom: 32px;
}

.entry__body {
  padding-left: 24px;
}

.entry__image {
  display: block;
  max-width: 352px;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
  height: 198px;
}

.entry__title {
  font-style: normal;
  font-weight: 800;
  font-size: 18px;
  line-height: 1.2;
  text-decoration-line: underline;
  color: #ffffff;
  margin-bottom: 8px;
}

.entry__summary {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: #f7f7f7;
  margin-bottom: 15px;

  max-width: 604px;
}

.entry__cta {
  font-style: normal;
  font-weight: 800;
  font-size: 15px;
  line-height: 14px;
  text-align: center;
  text-decoration-line: underline;
  color: #ffffff;
}

@media (max-width: 1100px) {
  .container {
    padding: 0 30px;
  }

  .entry {
    flex-direction: column;
  }

  .entry a {
    width: 100%;
  }

  .entry__image {
    height: 300px;
    max-width: 100%;
    margin-bottom: 8px;
  }

  .entry__body {
    padding-left: 0;
  }

  .entry__summary {
    max-width: 100%;
  }
}

@media (max-width: 720px) {
  .entry {
    margin-bottom: 27px;
  }

  .entry__image {
    height: 32vw;
  }

  .entry__title {
    font-size: 15px;
  }

  .entry__summary {
    font-size: 12px;
    line-height: 14px;
  }
}
