.custom-comments-section {
    margin: 2em 0;
    padding: 1em;
    background: #f9f9f9;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
}

.custom-comments-section h3 {
    padding-left: 10px;
}

.custom-comments-section .comment-form-wrapper h3 {
    padding-left: 0px;
}

.comment-form-group {
    margin-bottom: 13px;
}

.comment-form-wrapper {
    padding: 10px;
}

.comment-content p {
    font-size: 15px;
}

.comment-form-group label {
    display: block;
    margin-bottom: 0.5em;
    font-weight: bold;
}

.comment-form-group input,
.comment-form-group textarea {
    width: 100%;
    padding: 9px;
    border: 1px solid #ddd;
    border-radius: 5px;
    outline: unset;
}

.comment-form-group textarea {
    height: 100px;
    font-family: var(--font-montserrat);
}

.submit-comment {
    background: #0073aa;
    color: white;
    padding: 0.5em 1em;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.submit-comment:hover {
    background: #005177;
}

.comment-item {
    margin-bottom: 17px;
    border-bottom: 1px solid #eee;
    border-radius: 5px;
    padding: 15px;
    background-color: #fdfeff;
}

.comment-meta {
    margin-bottom: 0.5em;
}

.author-name {
    font-weight: bold;
    margin-right: 1em;
}

.comment-date {
    color: #666;
    font-size: 0.9em;
}

.custom-comments-list {
    margin-bottom: 2em;
}


.custom-comments-section {
    box-shadow: 0 2px 9px 0 rgb(0 0 0 / 15%);
    border-radius: 5px;
    border: 1px solid #BCBCBC;
    margin-bottom: 10px;
    background-color: #fdfeff;
}

.submit-comment {
    height: 35px;
    border: none;
    background-color: #3FAEF4;
    color: white;
    padding: 0 20px;
    border-radius: 55px;
    cursor: pointer;
    font-family: var(--font-montserrat);
    font-size: 15px;
}

#custom-comment-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.comment-form-group:nth-child(2),
.comment-form-group:nth-child(3) {
    width: 48%;
}

.comment-form-group {
    width: 100%;
}

@media (max-width: 480px) {
    .comment-content p {
        font-size: 13px;
    }

    .comment-meta {
        display: flex;
        margin-bottom: 0.5em;
        justify-content: space-between;
        align-items: center;
    }


    .custom-comments-section {
        margin: 2em 0px;
        padding: 10px;
    }
}