.container {
    flex-wrap: wrap;
    padding: 10px;
    margin: 0 auto;
    max-width: 1150px;
    display: flex;
}

.container-item{
    flex:3;
}

h1 {
    font-size: 2em;
    color: #333;
}

.subhead {
    font-size: 1.2em;
    color: #666;
    margin-bottom: 10px;
}

.date {
    font-size: 0.9em;
    color: #999;
    margin-bottom: 5px;
}

.news-image {
    width: 75%;
    height: auto;
    margin-bottom: 10px;
}

.credit {
    font-size: 0.8em;
    color: #999;
    text-align: center;
    margin-bottom: 20px;
}

p {
    margin: 10px 0;
    width: 75%;
    margin-left: 0;
}

strong {
    color: #333;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
    max-width: 1150px;
    font-weight: bold;
    margin-top: 5px !important;
}

.breadcrumb-item {
    flex: 3;
}

.breadcrumb a {
    text-decoration: none;
    color: #000;
}

.breadcrumb span {
    margin-left: 5px;
}

.comments-section {
    width: 75%;
    margin: 0 auto;
    margin-left:0;
}

    .comments-section h3 {
        text-align: left;
        font-size: 16px;
        margin-bottom: 20px;
        padding-bottom: 10px;
        border-bottom: 4px solid #000;
        margin-top: 75px;
    }

.comment-form {
    display: flex;
    flex-direction: column;
}

    .comment-form .input-group {
        display: flex;
        justify-content: space-between;
    }

    .comment-form input,
    .comment-form textarea {
        padding: 10px;
        margin-bottom: 10px;
        border: 1px solid #ccc;
        border-radius: 4px;
        font-size: 14px;
    }

        .comment-form input[name="Name"],
        .comment-form input[name="Email"] {
            width: 46%;
        }

    .comment-form textarea {
        margin-top: 15px;
        width: 97%;
        height: 150px;
    }

    .comment-form button {
        padding: 10px;
        background-color: #000;
        color: #fff;
        border: none;
        border-radius: 4px;
        cursor: pointer;
        font-size: 16px;
    }

        .comment-form button:hover {
            background-color: #333;
        }

.moderation-note {
    text-align: center;
    font-size: 14px;
    margin-top: 20px;
}

