/**
 * Custom Blog Styles
 * Styles specific to single blog post pages
 */

.section-container h1 {
    max-width: 50%;
}

.entry-content blockquote h2 {
    font-family: 'Shango-Bold';
    font-style: normal;
    font-weight: 400;
    font-size: 25px;
    line-height: 32px;
    color: #D4AF37;
    max-width: 60%;
}
@media only screen and (max-width: 600px) {
    .section-container h1 {
            max-width: 100%;
    }
    .entry-content blockquote h2 {
        max-width: 100%;
    }
}

.entry-content blockquote {
    margin: 2.5rem 0;
    font-style: italic;
    padding: 1rem 1.5rem;
    box-sizing: border-box;
    background: rgba(212, 175, 55, 0.02);
    border: 3px solid rgba(212, 175, 55, 0.09);
    box-shadow: 0px 4px 54px rgba(0, 0, 0, 0.05);
    border-radius: 26px;
}
