/*
Style overrides and additions. These should at some point be migrated to the CDN hosted CSS file.
*/

/* Don't eclipse breadcrumb trail */
.breadcrumb li:last-of-type {
    max-width: none;
}

/* Show current page in pagination */
.blog-pagination-page-numbers .current a {
    color: #000;
}

/* Basic text styles, lists, etc. */
.c03-text ul {
    list-style: inherit;
    margin-left: 30px;
    color: #888;
}

/* Style message that's shown when there's no results */
section.blog-empty {
    margin: 50px;
    text-align: center;
}

/* Centering recipe cards */
.c05-recipe-cards .container {
    width: auto;
    text-align: center;
    margin-top: 30px;
    margin-bottom: 30px;
}

/* Copyright */
.copyright {
    font-size: 16px;
    margin-top: 20px;
}

// adjust for mobile devices
@media all and (max-width: 768px) {
  .related-posts img {
    width: 100%;
    margin-bottom: 5px;
    }
}

/* Related Posts same width */
.related-post {
    flex-grow: 1;
    flex-basis: 0;
    max-width: 50%;
    margin: 0 auto;
}


/* Center tweets */
.c07-embedded-tweet {
    margin-top: 30px;
    margin-bottom: 30px;
}
.c07-embedded-tweet .twitter-tweet {
    margin-left: auto;
    margin-right: auto;
}

