div.ew-hero-section {
    position: relative;
    overflow: hidden;
    height: 30rem;
    background: #0000005e;
    color: #fff;
}
.ew-hero-section img {
    position: absolute;
    height: 100%;
    width: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    z-index: -1;
}
.ew-cont--centered {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    height: 100%;
}
/* prev end */
.comments-area {
    padding-top: 0;
}
h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    margin-top: 3rem;
}
h2:first-child {
    margin-top: 0;
}
ul, ol {
    margin-bottom: 1rem;
}
.comment-form-comment {
    display: flex;
    flex-direction: column;
}
.form-submit input[type="submit"] {
    background-color: var(--button-color);
    color: var(--button-text-color);
    padding: 1rem 3rem;
    border: none;
    transition: .25s ease;
    cursor: pointer;
}
.form-submit input[type="submit"]:hover {
    background-color: var(--button-hover);
    color: var(--button-text-color-hover);
}
textarea[name="comment"] {
    padding: 1rem;
    resize: vertical;
}
/* comment */
.comment-list, .children {
    list-style: none;
}
.comment-list {
    padding-left: 0;
    margin-bottom: 5rem;
}
.comment-author .avatar {
    width: 5rem;
    object-fit: cover;
}
.comment-body {
    padding: 2rem 0;
    border-bottom: 0.1rem solid #cdcdcd;
    margin-bottom: 2rem;
}
.comment-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.comment-meta {
    font-size: 1.4rem;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}
.comment-body p {
    background-color: #f7f7f7;
    padding: 1rem;
}
.comment-reply-link {
    text-decoration: underline;
}