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

%%EPID%% .oxy-post {
  margin-bottom: 6em;
  display: flex;
  flex-direction: row;
  align-items: center;
}

%%EPID%% .oxy-post-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  text-align: left;
  align-items: flex-start;
}

%%EPID%% .oxy-post-image {
  position: relative;
  background-color: grey;
  background-image: repeating-linear-gradient(
    45deg,
    #eee,
    #eee 10px,
    #ddd 10px,
    #ddd 20px
  );
  width: 40%;
  flex-shrink: 0;
  flex-grow: 0;
  margin-right: 2em;
}

%%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-title {
  font-size: 2em;
  line-height: var(--oxy-small-line-height);
}

%%EPID%% .oxy-post-meta {
  margin-top: 0.5em;
  font-size: 0.8em;
  display: flex;
  flex-direction: row;
}

%%EPID%% .oxy-post-meta-item::after {
  content: "\00b7";
  margin-right: 0.5em;
  margin-left: 0.5em;
}

%%EPID%% .oxy-post-meta-item:last-child::after {
  content: "";
  display: none;
}

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

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

@media (max-width: 991px) {
  %%EPID%% .oxy-post {
    flex-direction: column;
  }
  %%EPID%% .oxy-post-image {
    width: 100%;
    margin-bottom: 1em;
    margin-right: 0;
  }
  %%EPID%% .oxy-post-image-fixed-ratio {
    padding-bottom: 56%;
  }
}
