/* Контейнер коментарів */
.comments-area {
    background: #fff;
    margin-top: 30px;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.comments-title {
    font-size: 24px;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--green);
    display: inline-block;
    padding-bottom: 5px;
}

#reply-title {
	font-size: 20px;
}

/* Поле вводу (Textarea) */
.comment-form-comment textarea {
    width: 100%;
    border: 2px solid var(--green);
    border-radius: 4px;
    padding: 15px;
    font-family: inherit;
    font-size: 16px;
    outline: none;
}

/* Кнопка відправки */
.submit-comment-btn {
    background-color: var(--green) !important;
    color: #fff !important;
    border: none !important;
    padding: 12px 25px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    border-radius: 4px !important;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 10px;
}

.submit-comment-btn:hover {
    background-color: #3d8b40 !important;
}

/* Список вже написаних коментарів */
.comment-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.comment-body {
    background: #f9f9f9;
    padding: 20px;
    margin-bottom: 20px;
    border-left: 4px solid var(--green);
}

.comment-author cite {
    font-weight: 700;
    font-style: normal;
}

.comment-form-author,
.comment-form-email,
.comment-form-url {
	display: flex;
	flex-direction: column;
}

.comment-form-author input,
.comment-form-email input,
.comment-form-url input {
	width: 100%;
	max-width: 400px;
	font-size: 14px;
	font-family: inherit;
	padding: 5px;
	
	border: 2px solid var(--green);
    border-radius: 4px;
}

.form-submit {
	display: flex;
	justify-content: center;
}

.vcard {
	display: flex;
	align-items: center;
	margin-bottom: 10px;
}

.vcard cite {
	margin-left: 10px;
}

.commentmetadata {
	font-size: 12px;
}

.reply {
	color: var(--green)
}