#comment-form {
    margin-top: var(--spacing-md);
    background-color: var(--color-bg-white);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

#comment-form input {
    width: 100%;
    padding: 0.8rem 1rem;
    margin-bottom: var(--spacing-sm);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(0,0,0,0.1);
    font-family: var(--font-primary);
    transition: all var(--transition-fast);
}

#comment-form input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
}

#comment-form input[type="submit"] {
    background-color: var(--color-primary);
    color: white;
    border: none;
    cursor: pointer;
    font-weight: 600;
}

#comment-form input[type="submit"]:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-1px);
}

#comment-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-sm);
}

@media (max-width: 480px) {
    #comment-form-grid {
        grid-template-columns: 1fr;
    }
}

#comment-item {
    background: rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-md);
    padding: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

#comment-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--spacing-xs);
}

#comment-author {
    font-weight: 700;
    color: var(--color-primary-dark);
}

#comment-date {
    color: var(--color-text-muted);
    font-size: 0.75rem;
}

#comment-text {
    font-size: 0.95rem;
    color: var(--color-text-dark);
}