/* === Comment Form Fields === */ .comment-form textarea, .comment-form input[type="text"], .comment-form input[type="email"], .comment-form input[type="url"] { width: 80%; max-width: 640px; padding: 10px 8px; border-radius: 10px; border: 1px solid rgba(0,0,0,0.15); background: rgba(255,255,255,0.92); font-size: 15px; margin-bottom: 1px; } .comment-form input::placeholder, .comment-form textarea::placeholder { color: rgba(0,0,0,0.45); } /* === Submit Button === */ .comment-form input[type="submit"] { background: var(--accent-color); color: #fff; padding: 10px 28px; border-radius: 8px; border: none; cursor: pointer; font-weight: 600; transition: 0.25s ease; } .comment-form input[type="submit"]:hover { opacity: 0.9; transform: translateY(-2px); } /* === Compact paragraphs inside the form === */ .comment-form p { margin: 0 0 10px !important; padding: 0; } /* === Comments Wrapper === */ #comments { margin-top: 45px; padding: 32px; background: rgba(255,255,255,0.55); border-radius: 14px; box-shadow: 0 4px 18px rgba(0,0,0,0.08); } #comments h3 { font-size: 22px; margin-bottom: 25px; font-weight: 700; color: var(--accent-color); } /* === Single Comment Block === */ .airtheme-comment-body { display: grid; grid-template-columns: 52px auto; gap: 16px; padding: 18px; background: rgba(255,255,255,0.75); border-radius: 12px; margin-bottom: 22px; box-shadow: 0 2px 10px rgba(0,0,0,0.06); } /* Avatar */ .comment-author-avatar img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; } /* Main Column */ .comment-main { display: flex; flex-direction: column; } /* Header: author + date */ .comment-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; } .comment-author-name { font-weight: 700; font-size: 15px; color: rgba(20,20,20,0.95); } .comment-date { font-size: 12px; opacity: 0.6; } /* Content text */ .comment-content p { margin: 0 0 10px; line-height: 1.5; } /* Reply link */ .comment-footer a { color: var(--accent-color); font-weight: 600; font-size: 14px; text-decoration: none; } .comment-footer a:hover { opacity: 0.75; } /* Remove UL markers */ .airtheme-comment-list { list-style: none; padding: 0; margin: 0; } /* === Nested comments === */ .airtheme-comment-list .children { margin-left: 40px; padding-left: 0; } .airtheme-comment-list .children .airtheme-comment-body { margin-top: 12px; } /* Depth 2 */ .airtheme-comment.depth-2 .airtheme-comment-body { border-left: 3px solid rgba(0,0,0,0.08); margin-left: 20px; } /* Depth 3 */ .airtheme-comment.depth-3 .airtheme-comment-body { border-left: 3px solid rgba(0,0,0,0.15); margin-left: 40px; }