%%EPID%% .oxy-posts {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

%%EPID%% .oxy-post {
  width: 50%;
}

%%EPID%% .oxy-post-padding {
  position: relative;
  margin: 1em;
  display: flex;
  position: relative;
  flex-direction: column;
  overflow: hidden;
}

%%EPID%% .oxy-post-image {
  position: relative;
  background-color: grey;
  background-image: repeating-linear-gradient(
    45deg,
    #eee,
    #eee 10px,
    #ddd 10px,
    #ddd 20px
  );
  width: 100%;
}

%%EPID%% .oxy-post-image-fixed-ratio {
  padding-bottom: 100%;
  background-size: cover;
  background-position: center center;
}

%%EPID%% .oxy-post-image-date-overlay {
  position: absolute;
  top: 1em;
  right: 1em;
  font-size: 0.7em;
  color: white;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 0.7em 1em;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
}

%%EPID%% .oxy-post-wrap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 2em;
  pointer-events: none;
  padding-top: 200px;
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 1) 300px);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: left;
  text-align: left;
}

%%EPID%% .oxy-post-content-and-link-wrap {
  opacity: 0;
  max-height: 0px;
  overflow: hidden;
  transition: 1s ease-in-out opacity, 1s ease-in-out max-height;
}

%%EPID%% .oxy-post-padding:hover .oxy-post-content-and-link-wrap {
  opacity: 1;
  max-height: 400px;
}

%%EPID%% .oxy-post-title {
  font-size: 1.5em;
  line-height: var(--oxy-small-line-height);
  margin-bottom: 0.5em;
}

%%EPID%% .oxy-post-content {
  margin-top: 1em;
  margin-bottom: 1em;
}

%%EPID%% .oxy-post-content p {
  margin: 0;
}
