h1, h2, h3 {
    margin-left: 0px;
    margin-bottom: 20px;
}

h1 {
    font-size: 3.5rem;
    margin-top: 50px;
}

h2 {
    font-size: 2.7rem;
    margin-top: 60px;
    white-space: initial;
}

h3 {
    font-size: 2rem;
    margin-top: 60px
}

h4 {
    font-size: 1.4rem;
    margin-top: 40px
}

@media screen and (max-width: 800px) {
    h1 { font-size: 3rem; }
    h1.small-header { font-size: 2rem; }
}

p {
    font-size: 1.2rem; --c: 1rem;
    color: var(--color-white);
    margin-top: 10px
}

.blog-item {
    cursor: pointer;

}

.blog-item p {
    border-left: solid 1px var(--color-white);
    padding: 0 10px;
    transition: border .25s ease-in-out;
    margin-top: 20px;
}

.blog-item:hover p {
    border-left: solid 1px var(--color-highlight);
}

.blog-item img {
    height: 180px;
    object-fit: cover;
    margin-top: 50px;

    clip-path: polygon(10% 0%, 100% 0, 100% 10%, 100% 90%, 90% 100%, 0 100%, 0% 90%, 0% 10%);
    transition: clip-path ease-in-out .2s;
}

.blog-item:hover img {
    clip-path: polygon(5% 0%, 100% 0, 100% 5%, 100% 95%, 95% 100%, 0 100%, 0% 95%, 0% 5%);
}

.blog-item .button {
    float: right;
}

.blog-item * {
    cursor: inherit;
}

.blog-item h2 {
    font-size: 1.5rem;
    z-index: 5;
    position: relative;
    padding: 0 10px;
    margin-top: -10%;
    background: var(--color-dark-1);
    background: -moz-linear-gradient(0deg, var(--color-dark-1) 0%, rgba(255,255,255,0) 100%);
    background: -webkit-linear-gradient(0deg, var(--color-dark-1) 0%, rgba(255,255,255,0) 100%);
    background: linear-gradient(0deg, var(--color-dark-1) 0%, rgba(255,255,255,0) 100%);

    transition: color ease-in-out .2s;
}

.blog-item h2 svg {
    transition: color ease-in-out .2s;
}

.blog-item:hover h2 svg {
    color: var(--color-highlight);
}

.blog-content img {
    margin-top: 10px;
}

.blog-content .col-sm-4 img {
    height: 200px;
    object-fit: cover;
}

.blog-content .col-sm-6 img {
    height: 300px;
    object-fit: cover;
}

.blog-content .indented {
    padding-left: 30px;
}

.blog-content h1, .blog-content h2, .blog-content h3 {
    hyphens: auto;
}

.blog-content .padded {
    padding: 20px;
}

.blog-content .info {
    border: whitesmoke 1px solid;
    border-radius: 5px;
    padding: 5px;
    margin: 15px 20px;
}

.blog-content .info .col-1 {
    display: flex;
    align-items: center;
}

.blog-content .info .col-1 p {
    font-size: 2rem;
    text-align: center;
}

.image-source-ref {
    font-size: .7rem;
}

.youtube-iframe {
    aspect-ratio: 16 / 9;
    height: 100%;
    width: 100%;
}

.print-image {
    height: 100%;
    object-fit: contain;
}

.print-carousel {
    height: 100%;
    cursor: zoom-in;
}

.highlight-colored {
    color: coral;
}

ul.margin-bottom li {
    margin-bottom: 20px;
}