.wallace-callout{
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 18px;
  box-sizing: border-box;
}

.wallace-callout__inner{
  border-top-left-radius: 1.875rem;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(0,0,0,.04);
}

.wallace-callout__inner img {
	border-bottom-right-radius: 0;
}

.wallace-callout__media{
  background: #fff;
}

.wallace-callout__img{
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 1 / 1;            /* ensures consistent tile */
  object-fit: cover;
}

.wallace-callout__placeholder{
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  font-size: 14px;
  color: rgba(0,0,0,.6);
  background: rgba(0,0,0,.03);
}

.wallace-callout__body{
  padding: 18px 18px 22px;
}

.wallace-callout__title{
  font-size: 25px;
  line-height: 1.05;
  font-weight: 800;
  color: #083a63;                 /* deep blue similar to screenshot */
  letter-spacing: .2px;
}

/* Hover polish */
.wallace-callout:hover .wallace-callout__inner{
  box-shadow: 0 10px 28px rgba(0,0,0,.10);
  transition: box-shadow .2s ease;
}