/* Custom styles for single post page */

#single-post-page {
    max-width: 1160px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px;
    box-sizing: border-box;
}

#single-post-page .post-video.post-media,
#single-post-page .image-container-single {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

#single-post-page .image-container-single img {
    max-width: 100%;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

#single-post-page .post-content {
    max-width: 100%;
    box-sizing: border-box;
}


/* --- Custom Button Styles for Single Post Page (No Gradient) --- */
#single-post-page .button,
#single-post-page .et-button,
#single-post-page .submit,
#single-post-page button,
#single-post-page input[type="submit"] {
    background: #014e019d;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    padding: 0.7em 1.7em;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    margin-top: 1em;
    margin-bottom: 1em;
    display: inline-block;
    text-align: center;
    text-decoration: none;
}

#single-post-page .button:hover,
#single-post-page .et-button:hover,
#single-post-page .submit:hover,
#single-post-page button:hover,
#single-post-page input[type="submit"]:hover {
    background: #003049;
    color: #fff;
}

