/* Mediavine adjustment */
@media only screen and (min-width: 1024px) {
  #content {
    max-width: calc(100% - 300px);
  }
  aside {
    min-width: 300px;
  }
}
@media only screen and (max-width: 1023px) and (min-width: 640px) {
  #content, aside {
    max-width: 100%;
    width: 100% !important;
    float: none;
    clear: both;
  }
}
@media only screen and (max-width: 374px) {
  .post-content {
    min-width: 300px !important;
  }
}