/* Small additions for CMS-rendered content; the design itself is in mystyles.css */
.post-title-link { color: inherit; }
.post-title-link:hover { opacity: .8; }
.content img { max-width: 100%; height: auto; }
.content iframe { max-width: 100%; }
/* Latest News excerpt: native line clamp instead of the mixin's white
   cover square, which showed on the dark card when the text was short. */
.block-with-text {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 8;
    line-clamp: 8;
    overflow: hidden;
}
.block-with-text::before, .block-with-text::after { content: none; display: none; }
.about-image { max-width: 320px; margin: 1rem 0; }
.project-image img { max-width: 560px; width: 100%; }
