.pce-card {
  display: flex;
  align-items: stretch;
  width: 100%;
  overflow: hidden;
  cursor: default;
}

.pce-card.pce-with-image {
  cursor: pointer;
}

.pce-card.pce-no-image {
  display: block;
}

.pce-media {
  flex: 0 0 45%;
  min-height: 240px;
}

.pce-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pce-content {
  flex: 1;
  min-width: 0;
}

.pce-label {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 14px;
}

.pce-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 18px;
}

.pce-excerpt {
  font-size: 18px;
  line-height: 1.8;
}

.pce-btn {
  display: inline-flex;
  margin-top: 18px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
}

/* Image right layout */
.pce-card.pce-with-image.pce-image-right {
  flex-direction: row-reverse;
}

/* small screens */
@media (max-width: 992px) {
  .pce-card.pce-with-image {
    flex-direction: column;
  }

  .pce-media {
    flex-basis: auto;
    min-height: 220px;
  }

  .pce-title {
    font-size: 30px;
  }
}

/* notice */
.pce-notice {
  padding: 12px 14px;
  background: #fff3cd;
  border: 1px solid #ffe69c;
  border-radius: 6px;
}