/* Comments Styling */

/* Comments Area */
.comments-area {
    margin: 40px 0;
}

.comment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comment-list li {
    margin-bottom: 30px;
}

.comment-wrap {
    display: flex;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.comment-thumb {
    margin-right: 20px;
    flex-shrink: 0;
}

.comment-thumb img {
    border-radius: 50%;
    width: 60px;
    height: 60px;
}

.comment-info {
    flex: 1;
}

.cs-comment-author {
    margin-bottom: 10px;
}

.cs-comment-author h6 {
    margin: 0 0 5px 0;
    color: #333;
    font-size: 16px;
    font-weight: 600;
}

.cs-comment-author time {
    color: #888;
    font-size: 13px;
}

.cs-comment-author time i {
    margin-right: 5px;
}

.comment-text {
    margin: 15px 0;
    color: #666;
    line-height: 1.6;
}

.reply {
    text-align: right;
}

.reply a {
    display: inline-block;
    padding: 5px 15px;
    background: #21d1a5;
    color: #fff;
    border-radius: 3px;
    text-decoration: none;
    font-size: 13px;
    transition: background 0.3s ease;
}

.reply a:hover {
    background: #1eb894;
}

.reply i {
    margin-right: 5px;
}

/* Nested Comments */
.children {
    list-style: none;
    margin-left: 80px;
    margin-top: 30px;
}

/* Newsletter & Comment Form Sections */
.newsletter-section {
    margin: 60px 0 40px;
    padding: 20px 30px 30px;
    background: #f9f9f9;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.comment-respond {
    padding: 30px;
    background: #f9f9f9;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.newsletter-section form,
.comment-form {
    margin-top: 20px;
}

.newsletter-section input[type="text"],
.newsletter-section input[type="email"],
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.comment-form textarea {
    height: 150px;
}

.form-submit input[type="submit"],
.newsletter-section input[type="submit"] {
    background: #21d1a5;
    color: #fff;
    border: none;
    padding: 10px 25px;
    border-radius: 3px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.form-submit input[type="submit"]:hover,
.newsletter-section input[type="submit"]:hover {
    background: #1eb894;
}
