/*****************************************************************************/
/* BLOG CARDS */
.blog h2 {
    font-size: 3.0rem;
    font-weight: bold;
}
.blog h3 {
    font-size: 1.2rem;
    font-weight: normal;
    color: #777;
}
.blog .btn-viewposts {
    margin-top: 15px;
    border: solid 1px #ffc81f;
    background: #fff;
    text-align: center;
    border-radius: 3px;
    padding: 8px 15px;
    color: #555;
    font-size: 15px;
    margin: 0 auto;
    text-align: center;
}
.blog .btn-viewposts:hover {
    border: solid 1px #ffc81f;
    background: #fff;
    transition: background 0.2s;
    color: #222;
}
.card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 0 solid rgba(0, 0, 0, 0.125);
    border-radius: 0.35rem;
    box-shadow: 0 0.15rem 1.75rem 0 rgba(33, 40, 50, 0.15);
    overflow: hidden;
    position: relative;
}
.card > hr {
    margin-right: 0;
    margin-left: 0;
}
.card-body {
    flex: 1 1 auto;
    min-height: 1px;
    padding: 1.0rem;
}
.card-title {
    margin-bottom: 0.8rem;
    font-weight: 700;
}
.card-subtitle {
    margin-top: -0.5rem;
    margin-bottom: 0;
}
.card-text {
    color: #777;
    font-size: 0.9em;
    margin-bottom: 0.4rem;
}
.card-text:last-child {
    margin-bottom: 0;
}
.card-link {
    color: #ffc81f;
}
.card-link:hover {
    text-decoration: underline;
}
.card-link + .card-link {
    margin-left: 1.35rem;
}
.card-header {
    padding: 1rem 1.35rem;
    margin-bottom: 0;
    background-color: rgba(0, 0, 0, 0.03);
    border-bottom: 0 solid rgba(0, 0, 0, 0.125);
}
.card-header:first-child {
    border-radius: 0.35rem 0.35rem 0 0;
}
.card-footer {
    padding: 1rem 1.35rem;
    background-color: rgba(0, 0, 0, 0.03);
    border-top: 0 solid rgba(0, 0, 0, 0.125);
}
.card-footer:last-child {
    border-radius: 0 0 0.35rem 0.35rem;
}
.post-preview h5.card-title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}
.post-preview .post-preview-meta {
    display: flex;
    align-items: center;
    margin-right: 0.5rem;
}
.post-preview .post-preview-meta .post-preview-meta-img {
    height: 2.25rem;
    width: 2.25rem;
    border-radius: 100%;
    margin-right: 0.5rem;
    flex-shrink: 0;
}
.post-preview .post-preview-meta .post-preview-meta-details .post-preview-meta-details-name {
    font-size: 0.9rem;
    line-height: 1;
    margin-bottom: 0.25rem;
}
.post-preview .post-preview-meta .post-preview-meta-details .post-preview-meta-details-date {
    font-size: 0.75rem;
    line-height: 1;
}
.post-preview-featured .post-preview-featured-img {
    height: 20rem;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.post-preview-featured h5.card-title {
    font-size: 1.75rem;
}
.post-preview-featured p.card-text {
    font-size: 1.2rem;
    font-weight: 300;
}
@media (min-width: 992px) {
    .post-preview-featured .post-preview-featured-img {
        height: 100%;
        width: 100%;
    }
}

/*****************************************************************************/
/* POST */
.single-post {
    margin-top: 50px;
}
.single-post h2 {
    font-size: 2.4rem;
    font-weight: bold;
}
.single-post h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #555;
}
.single-post h4 {
    font-size: 1.2rem;
    font-weight: 700;
    font-style: italic;
    color: #555;
}
.single-post h5 {
    font-size: 1.3rem;
    font-weight: 500;
    font-style: italic;
    color: #555;
}
.single-post .lead {
    font-size: 1.2rem;
    font-weight: light;
    color: #777;
    line-height: 1.4em;
}
.single-post .single-post-meta {
    display: flex;
    align-items: center;
    margin-right: 0.5rem;
}
.single-post .single-post-meta .single-post-meta-img {
    height: 2.25rem;
    width: 2.25rem;
    border-radius: 100%;
    margin-right: 0.5rem;
    flex-shrink: 0;
}
.single-post .single-post-meta .single-post-meta-details .single-post-meta-details-name {
    font-size: 0.9rem;
    line-height: 1;
    margin-bottom: 0.25rem;
}
.single-post .single-post-meta .single-post-meta-details .single-post-meta-details-date {
    font-size: 0.75rem;
    line-height: 1;
}
.single-post .single-post-meta-links {
    font-size: 1.25rem;
}
.single-post .single-post-meta-links a {
    color: #c5ccd6;
    margin-left: 0.5rem;
}
.single-post .single-post-meta-links a:hover {
    color: #ffc81f;
}
.single-post .single-post-text {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.5em;
}
@media (min-width: 992px) {
    .single-post .single-post-text {
        font-size: 1.2rem;
        line-height: 1.7em;
    }
}
.single-post .single-post-text p {
    margin-bottom: 1.5rem;
}
.single-post .single-post-text p a {
    text-decoration: underline;
}
.single-post .image {
    border-radius: 5px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.single-post .image-300 {
    border-radius: 3px;
    max-width: 300px;
}
.single-post .image-200 {
    border-radius: 3px;
    max-width: 200px;
}
.single-post .video {
    border-radius: 5px;
}
.single-post .video-label {
    font-size: 0.8em;
    color: #aaa;
    line-height: 1.4em;
    margin-top: 10px;
}
.single-post .image-label {
    font-size: 0.8em;
    color: #aaa;
    line-height: 1.4em;
}
.single-post .image-label a {
    text-decoration: underline;
}
.single-post .quote {
    font-style: italic;
}
.single-post .blockquote {
    line-height: 1.3em;
    font-style: italic;
    border-color: #ffc81f;
    border-style: solid;
    border-width: 0 0 0 2px;
    margin: 2rem 0;
    padding: .5rem 0 .5rem 1.5rem;
    display: block;
    margin-bottom: 0;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 20px;
    margin-inline-end: 20px;
}
.single-post .quotee {
    line-height: 1.3em;
    font-size: 0.9rem;
    color: #333;
}
.single-post pre code.hljs {
    padding: 1em;
    line-height: 1.3em;
    font-size: 0.8rem;
    border-radius: 3px;
    font-family: 'DOS', monospace;
    /* background: #f8f8f8; */
}
@media (min-width: 992px) {
    .single-post pre code.hljs {
        padding: 1.2em;
        line-height: 1.2em;
        font-size: 0.9rem;
    }
}

.math {
    font-size: 0.8rem;
}
@media (min-width: 992px) {
    .math {
        font-size: 1.2rem;
    }
}

.single-post .matrix-code {
    font-family: 'DotMatrix', monospace;
    line-height: 24px;
    font-size: 17px;
    margin-left: 15px;
    margin-top: 13px;
    margin-bottom: 0;
    color: #555;
}
.single-post ul {
    margin-bottom: 1em;
    margin-left: 1.5em;
    list-style-type: disc;
}
.single-post li {
    margin-left: .85em;
    margin-bottom: 0.3em;
}
.single-post li a {
    text-decoration: underline;
}
.single-post .single-post-text h2,
.single-post .single-post-text h3,
.single-post .single-post-text h4,
.single-post .single-post-text h5,
.single-post .single-post-text h6 {
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
}
.single-post .back-button a {
    text-decoration: underline;
}
.single-post .back-button a:hover {
    color: #ffc81f;
}

@media print {
    .container {
        max-width: 100% !important;
    }
}